pulumi-harness 0.5.0a1736833425__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 (311) hide show
  1. pulumi_harness/__init__.py +1257 -0
  2. pulumi_harness/_inputs.py +4025 -0
  3. pulumi_harness/_utilities.py +327 -0
  4. pulumi_harness/add_user_to_group.py +241 -0
  5. pulumi_harness/application.py +393 -0
  6. pulumi_harness/application_git_sync.py +411 -0
  7. pulumi_harness/autostopping/__init__.py +27 -0
  8. pulumi_harness/autostopping/_inputs.py +2688 -0
  9. pulumi_harness/autostopping/aws_alb.py +640 -0
  10. pulumi_harness/autostopping/aws_proxy.py +760 -0
  11. pulumi_harness/autostopping/azure_gateway.py +798 -0
  12. pulumi_harness/autostopping/azure_proxy.py +855 -0
  13. pulumi_harness/autostopping/gcp_proxy.py +779 -0
  14. pulumi_harness/autostopping/get_aws_alb.py +278 -0
  15. pulumi_harness/autostopping/get_aws_proxy.py +335 -0
  16. pulumi_harness/autostopping/get_azure_gateway.py +343 -0
  17. pulumi_harness/autostopping/get_azure_proxy.py +375 -0
  18. pulumi_harness/autostopping/get_gcp_proxy.py +340 -0
  19. pulumi_harness/autostopping/get_rule_ecs.py +225 -0
  20. pulumi_harness/autostopping/get_rule_rds.py +205 -0
  21. pulumi_harness/autostopping/get_rule_vm.py +265 -0
  22. pulumi_harness/autostopping/get_schedule.py +193 -0
  23. pulumi_harness/autostopping/outputs.py +1971 -0
  24. pulumi_harness/autostopping/rule_ecs.py +450 -0
  25. pulumi_harness/autostopping/rule_rds.py +448 -0
  26. pulumi_harness/autostopping/rule_vm.py +663 -0
  27. pulumi_harness/autostopping/schedule.py +465 -0
  28. pulumi_harness/cloudprovider/__init__.py +17 -0
  29. pulumi_harness/cloudprovider/_inputs.py +777 -0
  30. pulumi_harness/cloudprovider/aws.py +586 -0
  31. pulumi_harness/cloudprovider/azure.py +393 -0
  32. pulumi_harness/cloudprovider/datacenter.py +233 -0
  33. pulumi_harness/cloudprovider/gcp.py +340 -0
  34. pulumi_harness/cloudprovider/get_delegate_ids.py +148 -0
  35. pulumi_harness/cloudprovider/kubernetes.py +310 -0
  36. pulumi_harness/cloudprovider/outputs.py +657 -0
  37. pulumi_harness/cloudprovider/spot.py +296 -0
  38. pulumi_harness/cloudprovider/tanzu.py +441 -0
  39. pulumi_harness/cluster/__init__.py +9 -0
  40. pulumi_harness/cluster/get_orchestrator.py +134 -0
  41. pulumi_harness/cluster/orchestrator.py +286 -0
  42. pulumi_harness/config/__init__.py +8 -0
  43. pulumi_harness/config/__init__.pyi +40 -0
  44. pulumi_harness/config/vars.py +54 -0
  45. pulumi_harness/delegate_approval.py +267 -0
  46. pulumi_harness/encrypted_text.py +499 -0
  47. pulumi_harness/environment.py +446 -0
  48. pulumi_harness/get_application.py +180 -0
  49. pulumi_harness/get_current_account.py +108 -0
  50. pulumi_harness/get_delegate.py +280 -0
  51. pulumi_harness/get_encrypted_text.py +136 -0
  52. pulumi_harness/get_environment.py +184 -0
  53. pulumi_harness/get_git_connector.py +255 -0
  54. pulumi_harness/get_secret_manager.py +142 -0
  55. pulumi_harness/get_service.py +198 -0
  56. pulumi_harness/get_ssh_credential.py +122 -0
  57. pulumi_harness/get_sso_provider.py +114 -0
  58. pulumi_harness/get_trigger.py +177 -0
  59. pulumi_harness/get_user.py +184 -0
  60. pulumi_harness/get_user_group.py +100 -0
  61. pulumi_harness/get_yaml_config.py +142 -0
  62. pulumi_harness/git_connector.py +738 -0
  63. pulumi_harness/governance/__init__.py +13 -0
  64. pulumi_harness/governance/get_rule.py +168 -0
  65. pulumi_harness/governance/get_rule_enforcement.py +266 -0
  66. pulumi_harness/governance/get_rule_set.py +150 -0
  67. pulumi_harness/governance/rule.py +337 -0
  68. pulumi_harness/governance/rule_enforcement.py +668 -0
  69. pulumi_harness/governance/rule_set.py +321 -0
  70. pulumi_harness/infrastructure_definition.py +1246 -0
  71. pulumi_harness/outputs.py +3306 -0
  72. pulumi_harness/platform/__init__.py +220 -0
  73. pulumi_harness/platform/_inputs.py +22314 -0
  74. pulumi_harness/platform/app_dynamics_connector.py +733 -0
  75. pulumi_harness/platform/artifactory_connector.py +748 -0
  76. pulumi_harness/platform/aws_cc_connector.py +716 -0
  77. pulumi_harness/platform/aws_connector.py +851 -0
  78. pulumi_harness/platform/aws_kms_connector.py +619 -0
  79. pulumi_harness/platform/aws_secret_manager_connector.py +712 -0
  80. pulumi_harness/platform/azure_cloud_cost_connector.py +675 -0
  81. pulumi_harness/platform/azure_cloud_provider_connector.py +826 -0
  82. pulumi_harness/platform/azure_key_vault_connector.py +843 -0
  83. pulumi_harness/platform/bitbucket_connector.py +713 -0
  84. pulumi_harness/platform/connector_azure_artifacts.py +529 -0
  85. pulumi_harness/platform/connector_custom_secret_manager.py +887 -0
  86. pulumi_harness/platform/connector_customhealthsource.py +807 -0
  87. pulumi_harness/platform/connector_jdbc.py +609 -0
  88. pulumi_harness/platform/connector_pdc.py +527 -0
  89. pulumi_harness/platform/connector_rancher.py +617 -0
  90. pulumi_harness/platform/datadog_connector.py +651 -0
  91. pulumi_harness/platform/db_instance.py +636 -0
  92. pulumi_harness/platform/db_schema.py +547 -0
  93. pulumi_harness/platform/delegatetoken.py +520 -0
  94. pulumi_harness/platform/docker_connector.py +669 -0
  95. pulumi_harness/platform/dynatrace_connector.py +601 -0
  96. pulumi_harness/platform/elasticsearch_connector.py +744 -0
  97. pulumi_harness/platform/environment.py +1173 -0
  98. pulumi_harness/platform/environment_clusters_mapping.py +454 -0
  99. pulumi_harness/platform/environment_group.py +560 -0
  100. pulumi_harness/platform/environment_service_overrides.py +688 -0
  101. pulumi_harness/platform/feature_flag.py +724 -0
  102. pulumi_harness/platform/feature_flag_api_key.py +550 -0
  103. pulumi_harness/platform/feature_flag_target.py +473 -0
  104. pulumi_harness/platform/feature_flag_target_group.py +577 -0
  105. pulumi_harness/platform/file_store_file.py +822 -0
  106. pulumi_harness/platform/file_store_folder.py +628 -0
  107. pulumi_harness/platform/filters.py +511 -0
  108. pulumi_harness/platform/gcp_cloud_cost_connector.py +669 -0
  109. pulumi_harness/platform/gcp_connector.py +663 -0
  110. pulumi_harness/platform/gcp_secret_manager_connector.py +594 -0
  111. pulumi_harness/platform/get_api_key.py +292 -0
  112. pulumi_harness/platform/get_app_dynamics_connector.py +271 -0
  113. pulumi_harness/platform/get_artifactory_connector.py +243 -0
  114. pulumi_harness/platform/get_aws_cc_connector.py +271 -0
  115. pulumi_harness/platform/get_aws_connector.py +313 -0
  116. pulumi_harness/platform/get_aws_kms_connector.py +253 -0
  117. pulumi_harness/platform/get_aws_secret_manager_connector.py +267 -0
  118. pulumi_harness/platform/get_azure_cloud_cost_connector.py +257 -0
  119. pulumi_harness/platform/get_azure_cloud_provider_connector.py +257 -0
  120. pulumi_harness/platform/get_azure_key_vault_connector.py +308 -0
  121. pulumi_harness/platform/get_bitbucket_connector.py +285 -0
  122. pulumi_harness/platform/get_ccm_filters.py +221 -0
  123. pulumi_harness/platform/get_connector_custom_secret_manager.py +330 -0
  124. pulumi_harness/platform/get_connector_customhealthsource.py +281 -0
  125. pulumi_harness/platform/get_connector_jdbc.py +243 -0
  126. pulumi_harness/platform/get_connector_pdc.py +229 -0
  127. pulumi_harness/platform/get_connector_rancher.py +236 -0
  128. pulumi_harness/platform/get_current_account.py +126 -0
  129. pulumi_harness/platform/get_current_user.py +252 -0
  130. pulumi_harness/platform/get_datadog_connector.py +262 -0
  131. pulumi_harness/platform/get_db_instance.py +268 -0
  132. pulumi_harness/platform/get_db_schema.py +233 -0
  133. pulumi_harness/platform/get_delegatetoken.py +214 -0
  134. pulumi_harness/platform/get_docker_connector.py +257 -0
  135. pulumi_harness/platform/get_dynatrace_connector.py +242 -0
  136. pulumi_harness/platform/get_elasticsearch_connector.py +257 -0
  137. pulumi_harness/platform/get_environment.py +263 -0
  138. pulumi_harness/platform/get_environment_clusters_mapping.py +262 -0
  139. pulumi_harness/platform/get_environment_group.py +190 -0
  140. pulumi_harness/platform/get_environment_list.py +172 -0
  141. pulumi_harness/platform/get_environment_service_overrides.py +212 -0
  142. pulumi_harness/platform/get_file_store_file.py +327 -0
  143. pulumi_harness/platform/get_file_store_folder.py +271 -0
  144. pulumi_harness/platform/get_filters.py +217 -0
  145. pulumi_harness/platform/get_gcp_cloud_cost_connector.py +257 -0
  146. pulumi_harness/platform/get_gcp_connector.py +243 -0
  147. pulumi_harness/platform/get_gcp_secret_manager_connector.py +238 -0
  148. pulumi_harness/platform/get_git_connector.py +271 -0
  149. pulumi_harness/platform/get_github_connector.py +296 -0
  150. pulumi_harness/platform/get_gitlab_connector.py +285 -0
  151. pulumi_harness/platform/get_gitops_agent.py +303 -0
  152. pulumi_harness/platform/get_gitops_agent_deploy_yaml.py +257 -0
  153. pulumi_harness/platform/get_gitops_app_project.py +191 -0
  154. pulumi_harness/platform/get_gitops_app_project_mapping.py +189 -0
  155. pulumi_harness/platform/get_gitops_applications.py +351 -0
  156. pulumi_harness/platform/get_gitops_cluster.py +216 -0
  157. pulumi_harness/platform/get_gitops_gnupg.py +219 -0
  158. pulumi_harness/platform/get_gitops_repo_cert.py +155 -0
  159. pulumi_harness/platform/get_gitops_repo_cred.py +223 -0
  160. pulumi_harness/platform/get_gitops_repository.py +230 -0
  161. pulumi_harness/platform/get_gitx_webhook.py +194 -0
  162. pulumi_harness/platform/get_helm_connector.py +243 -0
  163. pulumi_harness/platform/get_iacm_default_pipeline.py +168 -0
  164. pulumi_harness/platform/get_infra_module.py +320 -0
  165. pulumi_harness/platform/get_infrastructure.py +287 -0
  166. pulumi_harness/platform/get_input_set.py +238 -0
  167. pulumi_harness/platform/get_jenkins_connector.py +243 -0
  168. pulumi_harness/platform/get_jira_connector.py +285 -0
  169. pulumi_harness/platform/get_kubernetes_cloud_cost_connector.py +228 -0
  170. pulumi_harness/platform/get_kubernetes_connector.py +285 -0
  171. pulumi_harness/platform/get_manual_freeze.py +305 -0
  172. pulumi_harness/platform/get_monitored_service.py +134 -0
  173. pulumi_harness/platform/get_nexus_connector.py +257 -0
  174. pulumi_harness/platform/get_notification_rule.py +156 -0
  175. pulumi_harness/platform/get_oci_helm_connector.py +243 -0
  176. pulumi_harness/platform/get_organization.py +156 -0
  177. pulumi_harness/platform/get_overrides.py +198 -0
  178. pulumi_harness/platform/get_pagerduty_connector.py +224 -0
  179. pulumi_harness/platform/get_permissions.py +149 -0
  180. pulumi_harness/platform/get_pipeline.py +268 -0
  181. pulumi_harness/platform/get_pipeline_filters.py +197 -0
  182. pulumi_harness/platform/get_pipeline_list.py +269 -0
  183. pulumi_harness/platform/get_policy.py +220 -0
  184. pulumi_harness/platform/get_policy_set.py +298 -0
  185. pulumi_harness/platform/get_project.py +210 -0
  186. pulumi_harness/platform/get_project_list.py +249 -0
  187. pulumi_harness/platform/get_prometheus_connector.py +271 -0
  188. pulumi_harness/platform/get_provider.py +85 -0
  189. pulumi_harness/platform/get_repo.py +362 -0
  190. pulumi_harness/platform/get_repo_rule_branch.py +312 -0
  191. pulumi_harness/platform/get_repo_webhook.py +316 -0
  192. pulumi_harness/platform/get_resource_group.py +267 -0
  193. pulumi_harness/platform/get_role_assignments.py +223 -0
  194. pulumi_harness/platform/get_roles.py +240 -0
  195. pulumi_harness/platform/get_secret_file.py +224 -0
  196. pulumi_harness/platform/get_secret_sshkey.py +239 -0
  197. pulumi_harness/platform/get_secret_text.py +264 -0
  198. pulumi_harness/platform/get_service.py +235 -0
  199. pulumi_harness/platform/get_service_account.py +224 -0
  200. pulumi_harness/platform/get_service_list.py +172 -0
  201. pulumi_harness/platform/get_service_now_connector.py +285 -0
  202. pulumi_harness/platform/get_service_overrides_v2.py +220 -0
  203. pulumi_harness/platform/get_slo.py +134 -0
  204. pulumi_harness/platform/get_splunk_connector.py +270 -0
  205. pulumi_harness/platform/get_spot_connector.py +215 -0
  206. pulumi_harness/platform/get_sumologic_connector.py +256 -0
  207. pulumi_harness/platform/get_tas_connector.py +243 -0
  208. pulumi_harness/platform/get_template.py +386 -0
  209. pulumi_harness/platform/get_template_filters.py +221 -0
  210. pulumi_harness/platform/get_terraform_cloud_connector.py +233 -0
  211. pulumi_harness/platform/get_token.py +430 -0
  212. pulumi_harness/platform/get_triggers.py +260 -0
  213. pulumi_harness/platform/get_user.py +222 -0
  214. pulumi_harness/platform/get_usergroup.py +340 -0
  215. pulumi_harness/platform/get_variables.py +209 -0
  216. pulumi_harness/platform/get_vault_connector.py +574 -0
  217. pulumi_harness/platform/get_workspace.py +411 -0
  218. pulumi_harness/platform/get_workspace_output_value.py +168 -0
  219. pulumi_harness/platform/git_connector.py +713 -0
  220. pulumi_harness/platform/git_ops_agent.py +727 -0
  221. pulumi_harness/platform/git_ops_applications.py +1090 -0
  222. pulumi_harness/platform/git_ops_cluster.py +438 -0
  223. pulumi_harness/platform/git_ops_gnupg.py +453 -0
  224. pulumi_harness/platform/git_ops_repo_cert.py +437 -0
  225. pulumi_harness/platform/git_ops_repo_cred.py +533 -0
  226. pulumi_harness/platform/git_ops_repository.py +831 -0
  227. pulumi_harness/platform/github_connector.py +807 -0
  228. pulumi_harness/platform/gitlab_connector.py +713 -0
  229. pulumi_harness/platform/gitops_app_project.py +485 -0
  230. pulumi_harness/platform/gitops_app_project_mapping.py +423 -0
  231. pulumi_harness/platform/gitx_webhook.py +616 -0
  232. pulumi_harness/platform/helm_connector.py +617 -0
  233. pulumi_harness/platform/iacm_default_pipeline.py +343 -0
  234. pulumi_harness/platform/infra_module.py +755 -0
  235. pulumi_harness/platform/infrastructure.py +937 -0
  236. pulumi_harness/platform/input_set.py +689 -0
  237. pulumi_harness/platform/jenkins_connector.py +566 -0
  238. pulumi_harness/platform/jira_connector.py +714 -0
  239. pulumi_harness/platform/kubernetes_cloud_cost_connector.py +558 -0
  240. pulumi_harness/platform/kubernetes_connector.py +895 -0
  241. pulumi_harness/platform/manual_freeze.py +835 -0
  242. pulumi_harness/platform/monitored_service.py +1984 -0
  243. pulumi_harness/platform/newrelic_connector.py +651 -0
  244. pulumi_harness/platform/nexus_connector.py +622 -0
  245. pulumi_harness/platform/notification_rule.py +526 -0
  246. pulumi_harness/platform/oci_helm_connector.py +617 -0
  247. pulumi_harness/platform/organization.py +336 -0
  248. pulumi_harness/platform/outputs.py +23361 -0
  249. pulumi_harness/platform/overrides.py +669 -0
  250. pulumi_harness/platform/pagerduty_connector.py +547 -0
  251. pulumi_harness/platform/pipeline.py +991 -0
  252. pulumi_harness/platform/pipeline_filters.py +711 -0
  253. pulumi_harness/platform/policy.py +944 -0
  254. pulumi_harness/platform/policy_set.py +594 -0
  255. pulumi_harness/platform/project.py +453 -0
  256. pulumi_harness/platform/prometheus_connector.py +710 -0
  257. pulumi_harness/platform/provider.py +349 -0
  258. pulumi_harness/platform/repo.py +737 -0
  259. pulumi_harness/platform/repo_rule_branch.py +645 -0
  260. pulumi_harness/platform/repo_webhook.py +664 -0
  261. pulumi_harness/platform/resource_group.py +718 -0
  262. pulumi_harness/platform/role_assignments.py +524 -0
  263. pulumi_harness/platform/roles.py +546 -0
  264. pulumi_harness/platform/secret_file.py +548 -0
  265. pulumi_harness/platform/secret_sshkey.py +569 -0
  266. pulumi_harness/platform/secret_text.py +620 -0
  267. pulumi_harness/platform/service.py +1195 -0
  268. pulumi_harness/platform/service_account.py +548 -0
  269. pulumi_harness/platform/service_now_connector.py +714 -0
  270. pulumi_harness/platform/service_overrides_v2.py +915 -0
  271. pulumi_harness/platform/slo.py +462 -0
  272. pulumi_harness/platform/splunk_connector.py +701 -0
  273. pulumi_harness/platform/spot_connector.py +452 -0
  274. pulumi_harness/platform/sumologic_connector.py +651 -0
  275. pulumi_harness/platform/tas_connector.py +570 -0
  276. pulumi_harness/platform/template.py +861 -0
  277. pulumi_harness/platform/template_filters.py +515 -0
  278. pulumi_harness/platform/terraform_cloud_connector.py +545 -0
  279. pulumi_harness/platform/token.py +977 -0
  280. pulumi_harness/platform/triggers.py +680 -0
  281. pulumi_harness/platform/user.py +522 -0
  282. pulumi_harness/platform/usergroup.py +1104 -0
  283. pulumi_harness/platform/variables.py +509 -0
  284. pulumi_harness/platform/vault_connector.py +1919 -0
  285. pulumi_harness/platform/workspace.py +1145 -0
  286. pulumi_harness/platform_api_key.py +617 -0
  287. pulumi_harness/platform_ccm_filters.py +515 -0
  288. pulumi_harness/provider.py +227 -0
  289. pulumi_harness/pulumi-plugin.json +6 -0
  290. pulumi_harness/py.typed +0 -0
  291. pulumi_harness/service/__init__.py +18 -0
  292. pulumi_harness/service/_inputs.py +660 -0
  293. pulumi_harness/service/ami.py +336 -0
  294. pulumi_harness/service/codedeploy.py +336 -0
  295. pulumi_harness/service/ecs.py +336 -0
  296. pulumi_harness/service/helm.py +336 -0
  297. pulumi_harness/service/kubernetes.py +409 -0
  298. pulumi_harness/service/lambda_.py +336 -0
  299. pulumi_harness/service/outputs.py +388 -0
  300. pulumi_harness/service/ssh.py +386 -0
  301. pulumi_harness/service/tanzu.py +336 -0
  302. pulumi_harness/service/winrm.py +386 -0
  303. pulumi_harness/ssh_credential.py +361 -0
  304. pulumi_harness/user.py +423 -0
  305. pulumi_harness/user_group.py +713 -0
  306. pulumi_harness/user_group_permissions.py +247 -0
  307. pulumi_harness/yaml_config.py +336 -0
  308. pulumi_harness-0.5.0a1736833425.dist-info/METADATA +69 -0
  309. pulumi_harness-0.5.0a1736833425.dist-info/RECORD +311 -0
  310. pulumi_harness-0.5.0a1736833425.dist-info/WHEEL +5 -0
  311. pulumi_harness-0.5.0a1736833425.dist-info/top_level.txt +1 -0
@@ -0,0 +1,777 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'AwsAssumeCrossAccountRoleArgs',
19
+ 'AwsAssumeCrossAccountRoleArgsDict',
20
+ 'AwsUsageScopeArgs',
21
+ 'AwsUsageScopeArgsDict',
22
+ 'DatacenterUsageScopeArgs',
23
+ 'DatacenterUsageScopeArgsDict',
24
+ 'GcpUsageScopeArgs',
25
+ 'GcpUsageScopeArgsDict',
26
+ 'KubernetesAuthenticationArgs',
27
+ 'KubernetesAuthenticationArgsDict',
28
+ 'KubernetesAuthenticationOidcArgs',
29
+ 'KubernetesAuthenticationOidcArgsDict',
30
+ 'KubernetesAuthenticationServiceAccountArgs',
31
+ 'KubernetesAuthenticationServiceAccountArgsDict',
32
+ 'KubernetesAuthenticationUsernamePasswordArgs',
33
+ 'KubernetesAuthenticationUsernamePasswordArgsDict',
34
+ 'KubernetesUsageScopeArgs',
35
+ 'KubernetesUsageScopeArgsDict',
36
+ ]
37
+
38
+ MYPY = False
39
+
40
+ if not MYPY:
41
+ class AwsAssumeCrossAccountRoleArgsDict(TypedDict):
42
+ role_arn: pulumi.Input[str]
43
+ """
44
+ This is an IAM role in the target deployment AWS account.
45
+ """
46
+ external_id: NotRequired[pulumi.Input[str]]
47
+ """
48
+ If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
49
+ """
50
+ elif False:
51
+ AwsAssumeCrossAccountRoleArgsDict: TypeAlias = Mapping[str, Any]
52
+
53
+ @pulumi.input_type
54
+ class AwsAssumeCrossAccountRoleArgs:
55
+ def __init__(__self__, *,
56
+ role_arn: pulumi.Input[str],
57
+ external_id: Optional[pulumi.Input[str]] = None):
58
+ """
59
+ :param pulumi.Input[str] role_arn: This is an IAM role in the target deployment AWS account.
60
+ :param pulumi.Input[str] external_id: If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
61
+ """
62
+ pulumi.set(__self__, "role_arn", role_arn)
63
+ if external_id is not None:
64
+ pulumi.set(__self__, "external_id", external_id)
65
+
66
+ @property
67
+ @pulumi.getter(name="roleArn")
68
+ def role_arn(self) -> pulumi.Input[str]:
69
+ """
70
+ This is an IAM role in the target deployment AWS account.
71
+ """
72
+ return pulumi.get(self, "role_arn")
73
+
74
+ @role_arn.setter
75
+ def role_arn(self, value: pulumi.Input[str]):
76
+ pulumi.set(self, "role_arn", value)
77
+
78
+ @property
79
+ @pulumi.getter(name="externalId")
80
+ def external_id(self) -> Optional[pulumi.Input[str]]:
81
+ """
82
+ If the administrator of the account to which the role belongs provided you with an external ID, then enter that value.
83
+ """
84
+ return pulumi.get(self, "external_id")
85
+
86
+ @external_id.setter
87
+ def external_id(self, value: Optional[pulumi.Input[str]]):
88
+ pulumi.set(self, "external_id", value)
89
+
90
+
91
+ if not MYPY:
92
+ class AwsUsageScopeArgsDict(TypedDict):
93
+ application_id: NotRequired[pulumi.Input[str]]
94
+ """
95
+ Id of the application to scope to. If empty then this scope applies to all applications.
96
+ """
97
+ environment_filter_type: NotRequired[pulumi.Input[str]]
98
+ """
99
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
100
+ """
101
+ environment_id: NotRequired[pulumi.Input[str]]
102
+ """
103
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
104
+ """
105
+ elif False:
106
+ AwsUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
107
+
108
+ @pulumi.input_type
109
+ class AwsUsageScopeArgs:
110
+ def __init__(__self__, *,
111
+ application_id: Optional[pulumi.Input[str]] = None,
112
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
113
+ environment_id: Optional[pulumi.Input[str]] = None):
114
+ """
115
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
116
+ :param pulumi.Input[str] environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
117
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
118
+ """
119
+ if application_id is not None:
120
+ pulumi.set(__self__, "application_id", application_id)
121
+ if environment_filter_type is not None:
122
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
123
+ if environment_id is not None:
124
+ pulumi.set(__self__, "environment_id", environment_id)
125
+
126
+ @property
127
+ @pulumi.getter(name="applicationId")
128
+ def application_id(self) -> Optional[pulumi.Input[str]]:
129
+ """
130
+ Id of the application to scope to. If empty then this scope applies to all applications.
131
+ """
132
+ return pulumi.get(self, "application_id")
133
+
134
+ @application_id.setter
135
+ def application_id(self, value: Optional[pulumi.Input[str]]):
136
+ pulumi.set(self, "application_id", value)
137
+
138
+ @property
139
+ @pulumi.getter(name="environmentFilterType")
140
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
141
+ """
142
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
143
+ """
144
+ return pulumi.get(self, "environment_filter_type")
145
+
146
+ @environment_filter_type.setter
147
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
148
+ pulumi.set(self, "environment_filter_type", value)
149
+
150
+ @property
151
+ @pulumi.getter(name="environmentId")
152
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
153
+ """
154
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
155
+ """
156
+ return pulumi.get(self, "environment_id")
157
+
158
+ @environment_id.setter
159
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
160
+ pulumi.set(self, "environment_id", value)
161
+
162
+
163
+ if not MYPY:
164
+ class DatacenterUsageScopeArgsDict(TypedDict):
165
+ application_id: NotRequired[pulumi.Input[str]]
166
+ """
167
+ Id of the application to scope to. If empty then this scope applies to all applications.
168
+ """
169
+ environment_filter_type: NotRequired[pulumi.Input[str]]
170
+ """
171
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
172
+ """
173
+ environment_id: NotRequired[pulumi.Input[str]]
174
+ """
175
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
176
+ """
177
+ elif False:
178
+ DatacenterUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
179
+
180
+ @pulumi.input_type
181
+ class DatacenterUsageScopeArgs:
182
+ def __init__(__self__, *,
183
+ application_id: Optional[pulumi.Input[str]] = None,
184
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
185
+ environment_id: Optional[pulumi.Input[str]] = None):
186
+ """
187
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
188
+ :param pulumi.Input[str] environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
189
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
190
+ """
191
+ if application_id is not None:
192
+ pulumi.set(__self__, "application_id", application_id)
193
+ if environment_filter_type is not None:
194
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
195
+ if environment_id is not None:
196
+ pulumi.set(__self__, "environment_id", environment_id)
197
+
198
+ @property
199
+ @pulumi.getter(name="applicationId")
200
+ def application_id(self) -> Optional[pulumi.Input[str]]:
201
+ """
202
+ Id of the application to scope to. If empty then this scope applies to all applications.
203
+ """
204
+ return pulumi.get(self, "application_id")
205
+
206
+ @application_id.setter
207
+ def application_id(self, value: Optional[pulumi.Input[str]]):
208
+ pulumi.set(self, "application_id", value)
209
+
210
+ @property
211
+ @pulumi.getter(name="environmentFilterType")
212
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
213
+ """
214
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
215
+ """
216
+ return pulumi.get(self, "environment_filter_type")
217
+
218
+ @environment_filter_type.setter
219
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
220
+ pulumi.set(self, "environment_filter_type", value)
221
+
222
+ @property
223
+ @pulumi.getter(name="environmentId")
224
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
225
+ """
226
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
227
+ """
228
+ return pulumi.get(self, "environment_id")
229
+
230
+ @environment_id.setter
231
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
232
+ pulumi.set(self, "environment_id", value)
233
+
234
+
235
+ if not MYPY:
236
+ class GcpUsageScopeArgsDict(TypedDict):
237
+ application_id: NotRequired[pulumi.Input[str]]
238
+ """
239
+ Id of the application to scope to. If empty then this scope applies to all applications.
240
+ """
241
+ environment_filter_type: NotRequired[pulumi.Input[str]]
242
+ """
243
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
244
+ """
245
+ environment_id: NotRequired[pulumi.Input[str]]
246
+ """
247
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
248
+ """
249
+ elif False:
250
+ GcpUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
251
+
252
+ @pulumi.input_type
253
+ class GcpUsageScopeArgs:
254
+ def __init__(__self__, *,
255
+ application_id: Optional[pulumi.Input[str]] = None,
256
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
257
+ environment_id: Optional[pulumi.Input[str]] = None):
258
+ """
259
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
260
+ :param pulumi.Input[str] environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
261
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
262
+ """
263
+ if application_id is not None:
264
+ pulumi.set(__self__, "application_id", application_id)
265
+ if environment_filter_type is not None:
266
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
267
+ if environment_id is not None:
268
+ pulumi.set(__self__, "environment_id", environment_id)
269
+
270
+ @property
271
+ @pulumi.getter(name="applicationId")
272
+ def application_id(self) -> Optional[pulumi.Input[str]]:
273
+ """
274
+ Id of the application to scope to. If empty then this scope applies to all applications.
275
+ """
276
+ return pulumi.get(self, "application_id")
277
+
278
+ @application_id.setter
279
+ def application_id(self, value: Optional[pulumi.Input[str]]):
280
+ pulumi.set(self, "application_id", value)
281
+
282
+ @property
283
+ @pulumi.getter(name="environmentFilterType")
284
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
285
+ """
286
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
287
+ """
288
+ return pulumi.get(self, "environment_filter_type")
289
+
290
+ @environment_filter_type.setter
291
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
292
+ pulumi.set(self, "environment_filter_type", value)
293
+
294
+ @property
295
+ @pulumi.getter(name="environmentId")
296
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
297
+ """
298
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
299
+ """
300
+ return pulumi.get(self, "environment_id")
301
+
302
+ @environment_id.setter
303
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
304
+ pulumi.set(self, "environment_id", value)
305
+
306
+
307
+ if not MYPY:
308
+ class KubernetesAuthenticationArgsDict(TypedDict):
309
+ delegate_selectors: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
310
+ """
311
+ Delegate selectors to inherit the GCP credentials from.
312
+ """
313
+ oidc: NotRequired[pulumi.Input['KubernetesAuthenticationOidcArgsDict']]
314
+ """
315
+ Service account configuration for connecting to the Kubernetes cluster
316
+ """
317
+ service_account: NotRequired[pulumi.Input['KubernetesAuthenticationServiceAccountArgsDict']]
318
+ """
319
+ Username and password for authentication to the cluster
320
+ """
321
+ username_password: NotRequired[pulumi.Input['KubernetesAuthenticationUsernamePasswordArgsDict']]
322
+ """
323
+ Username and password for authentication to the cluster
324
+ """
325
+ elif False:
326
+ KubernetesAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
327
+
328
+ @pulumi.input_type
329
+ class KubernetesAuthenticationArgs:
330
+ def __init__(__self__, *,
331
+ delegate_selectors: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
332
+ oidc: Optional[pulumi.Input['KubernetesAuthenticationOidcArgs']] = None,
333
+ service_account: Optional[pulumi.Input['KubernetesAuthenticationServiceAccountArgs']] = None,
334
+ username_password: Optional[pulumi.Input['KubernetesAuthenticationUsernamePasswordArgs']] = None):
335
+ """
336
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] delegate_selectors: Delegate selectors to inherit the GCP credentials from.
337
+ :param pulumi.Input['KubernetesAuthenticationOidcArgs'] oidc: Service account configuration for connecting to the Kubernetes cluster
338
+ :param pulumi.Input['KubernetesAuthenticationServiceAccountArgs'] service_account: Username and password for authentication to the cluster
339
+ :param pulumi.Input['KubernetesAuthenticationUsernamePasswordArgs'] username_password: Username and password for authentication to the cluster
340
+ """
341
+ if delegate_selectors is not None:
342
+ pulumi.set(__self__, "delegate_selectors", delegate_selectors)
343
+ if oidc is not None:
344
+ pulumi.set(__self__, "oidc", oidc)
345
+ if service_account is not None:
346
+ pulumi.set(__self__, "service_account", service_account)
347
+ if username_password is not None:
348
+ pulumi.set(__self__, "username_password", username_password)
349
+
350
+ @property
351
+ @pulumi.getter(name="delegateSelectors")
352
+ def delegate_selectors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
353
+ """
354
+ Delegate selectors to inherit the GCP credentials from.
355
+ """
356
+ return pulumi.get(self, "delegate_selectors")
357
+
358
+ @delegate_selectors.setter
359
+ def delegate_selectors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
360
+ pulumi.set(self, "delegate_selectors", value)
361
+
362
+ @property
363
+ @pulumi.getter
364
+ def oidc(self) -> Optional[pulumi.Input['KubernetesAuthenticationOidcArgs']]:
365
+ """
366
+ Service account configuration for connecting to the Kubernetes cluster
367
+ """
368
+ return pulumi.get(self, "oidc")
369
+
370
+ @oidc.setter
371
+ def oidc(self, value: Optional[pulumi.Input['KubernetesAuthenticationOidcArgs']]):
372
+ pulumi.set(self, "oidc", value)
373
+
374
+ @property
375
+ @pulumi.getter(name="serviceAccount")
376
+ def service_account(self) -> Optional[pulumi.Input['KubernetesAuthenticationServiceAccountArgs']]:
377
+ """
378
+ Username and password for authentication to the cluster
379
+ """
380
+ return pulumi.get(self, "service_account")
381
+
382
+ @service_account.setter
383
+ def service_account(self, value: Optional[pulumi.Input['KubernetesAuthenticationServiceAccountArgs']]):
384
+ pulumi.set(self, "service_account", value)
385
+
386
+ @property
387
+ @pulumi.getter(name="usernamePassword")
388
+ def username_password(self) -> Optional[pulumi.Input['KubernetesAuthenticationUsernamePasswordArgs']]:
389
+ """
390
+ Username and password for authentication to the cluster
391
+ """
392
+ return pulumi.get(self, "username_password")
393
+
394
+ @username_password.setter
395
+ def username_password(self, value: Optional[pulumi.Input['KubernetesAuthenticationUsernamePasswordArgs']]):
396
+ pulumi.set(self, "username_password", value)
397
+
398
+
399
+ if not MYPY:
400
+ class KubernetesAuthenticationOidcArgsDict(TypedDict):
401
+ client_id_secret_name: pulumi.Input[str]
402
+ """
403
+ Name of the Harness secret containing the client ID for the cluster.
404
+ """
405
+ identity_provider_url: pulumi.Input[str]
406
+ """
407
+ URL of the identity provider to use.
408
+ """
409
+ master_url: pulumi.Input[str]
410
+ """
411
+ URL of the Kubernetes master to connect to.
412
+ """
413
+ password_secret_name: pulumi.Input[str]
414
+ """
415
+ Name of the Harness secret containing the password for the cluster.
416
+ """
417
+ username: pulumi.Input[str]
418
+ """
419
+ Username for authentication to the cluster. This can be the username itself or the ID of a harness secret.
420
+ """
421
+ client_secret_secret_name: NotRequired[pulumi.Input[str]]
422
+ """
423
+ Name of the Harness secret containing the client secret for the cluster.
424
+ """
425
+ scopes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
426
+ """
427
+ Scopes to request from the identity provider.
428
+ """
429
+ elif False:
430
+ KubernetesAuthenticationOidcArgsDict: TypeAlias = Mapping[str, Any]
431
+
432
+ @pulumi.input_type
433
+ class KubernetesAuthenticationOidcArgs:
434
+ def __init__(__self__, *,
435
+ client_id_secret_name: pulumi.Input[str],
436
+ identity_provider_url: pulumi.Input[str],
437
+ master_url: pulumi.Input[str],
438
+ password_secret_name: pulumi.Input[str],
439
+ username: pulumi.Input[str],
440
+ client_secret_secret_name: Optional[pulumi.Input[str]] = None,
441
+ scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
442
+ """
443
+ :param pulumi.Input[str] client_id_secret_name: Name of the Harness secret containing the client ID for the cluster.
444
+ :param pulumi.Input[str] identity_provider_url: URL of the identity provider to use.
445
+ :param pulumi.Input[str] master_url: URL of the Kubernetes master to connect to.
446
+ :param pulumi.Input[str] password_secret_name: Name of the Harness secret containing the password for the cluster.
447
+ :param pulumi.Input[str] username: Username for authentication to the cluster. This can be the username itself or the ID of a harness secret.
448
+ :param pulumi.Input[str] client_secret_secret_name: Name of the Harness secret containing the client secret for the cluster.
449
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: Scopes to request from the identity provider.
450
+ """
451
+ pulumi.set(__self__, "client_id_secret_name", client_id_secret_name)
452
+ pulumi.set(__self__, "identity_provider_url", identity_provider_url)
453
+ pulumi.set(__self__, "master_url", master_url)
454
+ pulumi.set(__self__, "password_secret_name", password_secret_name)
455
+ pulumi.set(__self__, "username", username)
456
+ if client_secret_secret_name is not None:
457
+ pulumi.set(__self__, "client_secret_secret_name", client_secret_secret_name)
458
+ if scopes is not None:
459
+ pulumi.set(__self__, "scopes", scopes)
460
+
461
+ @property
462
+ @pulumi.getter(name="clientIdSecretName")
463
+ def client_id_secret_name(self) -> pulumi.Input[str]:
464
+ """
465
+ Name of the Harness secret containing the client ID for the cluster.
466
+ """
467
+ return pulumi.get(self, "client_id_secret_name")
468
+
469
+ @client_id_secret_name.setter
470
+ def client_id_secret_name(self, value: pulumi.Input[str]):
471
+ pulumi.set(self, "client_id_secret_name", value)
472
+
473
+ @property
474
+ @pulumi.getter(name="identityProviderUrl")
475
+ def identity_provider_url(self) -> pulumi.Input[str]:
476
+ """
477
+ URL of the identity provider to use.
478
+ """
479
+ return pulumi.get(self, "identity_provider_url")
480
+
481
+ @identity_provider_url.setter
482
+ def identity_provider_url(self, value: pulumi.Input[str]):
483
+ pulumi.set(self, "identity_provider_url", value)
484
+
485
+ @property
486
+ @pulumi.getter(name="masterUrl")
487
+ def master_url(self) -> pulumi.Input[str]:
488
+ """
489
+ URL of the Kubernetes master to connect to.
490
+ """
491
+ return pulumi.get(self, "master_url")
492
+
493
+ @master_url.setter
494
+ def master_url(self, value: pulumi.Input[str]):
495
+ pulumi.set(self, "master_url", value)
496
+
497
+ @property
498
+ @pulumi.getter(name="passwordSecretName")
499
+ def password_secret_name(self) -> pulumi.Input[str]:
500
+ """
501
+ Name of the Harness secret containing the password for the cluster.
502
+ """
503
+ return pulumi.get(self, "password_secret_name")
504
+
505
+ @password_secret_name.setter
506
+ def password_secret_name(self, value: pulumi.Input[str]):
507
+ pulumi.set(self, "password_secret_name", value)
508
+
509
+ @property
510
+ @pulumi.getter
511
+ def username(self) -> pulumi.Input[str]:
512
+ """
513
+ Username for authentication to the cluster. This can be the username itself or the ID of a harness secret.
514
+ """
515
+ return pulumi.get(self, "username")
516
+
517
+ @username.setter
518
+ def username(self, value: pulumi.Input[str]):
519
+ pulumi.set(self, "username", value)
520
+
521
+ @property
522
+ @pulumi.getter(name="clientSecretSecretName")
523
+ def client_secret_secret_name(self) -> Optional[pulumi.Input[str]]:
524
+ """
525
+ Name of the Harness secret containing the client secret for the cluster.
526
+ """
527
+ return pulumi.get(self, "client_secret_secret_name")
528
+
529
+ @client_secret_secret_name.setter
530
+ def client_secret_secret_name(self, value: Optional[pulumi.Input[str]]):
531
+ pulumi.set(self, "client_secret_secret_name", value)
532
+
533
+ @property
534
+ @pulumi.getter
535
+ def scopes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
536
+ """
537
+ Scopes to request from the identity provider.
538
+ """
539
+ return pulumi.get(self, "scopes")
540
+
541
+ @scopes.setter
542
+ def scopes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
543
+ pulumi.set(self, "scopes", value)
544
+
545
+
546
+ if not MYPY:
547
+ class KubernetesAuthenticationServiceAccountArgsDict(TypedDict):
548
+ master_url: pulumi.Input[str]
549
+ """
550
+ URL of the Kubernetes master to connect to.
551
+ """
552
+ service_account_token_secret_name: pulumi.Input[str]
553
+ """
554
+ Name of the Harness secret containing the service account token for the cluster.
555
+ """
556
+ ca_certificate_secret_name: NotRequired[pulumi.Input[str]]
557
+ """
558
+ Name of the Harness secret containing the CA certificate for the cluster.
559
+ """
560
+ elif False:
561
+ KubernetesAuthenticationServiceAccountArgsDict: TypeAlias = Mapping[str, Any]
562
+
563
+ @pulumi.input_type
564
+ class KubernetesAuthenticationServiceAccountArgs:
565
+ def __init__(__self__, *,
566
+ master_url: pulumi.Input[str],
567
+ service_account_token_secret_name: pulumi.Input[str],
568
+ ca_certificate_secret_name: Optional[pulumi.Input[str]] = None):
569
+ """
570
+ :param pulumi.Input[str] master_url: URL of the Kubernetes master to connect to.
571
+ :param pulumi.Input[str] service_account_token_secret_name: Name of the Harness secret containing the service account token for the cluster.
572
+ :param pulumi.Input[str] ca_certificate_secret_name: Name of the Harness secret containing the CA certificate for the cluster.
573
+ """
574
+ pulumi.set(__self__, "master_url", master_url)
575
+ pulumi.set(__self__, "service_account_token_secret_name", service_account_token_secret_name)
576
+ if ca_certificate_secret_name is not None:
577
+ pulumi.set(__self__, "ca_certificate_secret_name", ca_certificate_secret_name)
578
+
579
+ @property
580
+ @pulumi.getter(name="masterUrl")
581
+ def master_url(self) -> pulumi.Input[str]:
582
+ """
583
+ URL of the Kubernetes master to connect to.
584
+ """
585
+ return pulumi.get(self, "master_url")
586
+
587
+ @master_url.setter
588
+ def master_url(self, value: pulumi.Input[str]):
589
+ pulumi.set(self, "master_url", value)
590
+
591
+ @property
592
+ @pulumi.getter(name="serviceAccountTokenSecretName")
593
+ def service_account_token_secret_name(self) -> pulumi.Input[str]:
594
+ """
595
+ Name of the Harness secret containing the service account token for the cluster.
596
+ """
597
+ return pulumi.get(self, "service_account_token_secret_name")
598
+
599
+ @service_account_token_secret_name.setter
600
+ def service_account_token_secret_name(self, value: pulumi.Input[str]):
601
+ pulumi.set(self, "service_account_token_secret_name", value)
602
+
603
+ @property
604
+ @pulumi.getter(name="caCertificateSecretName")
605
+ def ca_certificate_secret_name(self) -> Optional[pulumi.Input[str]]:
606
+ """
607
+ Name of the Harness secret containing the CA certificate for the cluster.
608
+ """
609
+ return pulumi.get(self, "ca_certificate_secret_name")
610
+
611
+ @ca_certificate_secret_name.setter
612
+ def ca_certificate_secret_name(self, value: Optional[pulumi.Input[str]]):
613
+ pulumi.set(self, "ca_certificate_secret_name", value)
614
+
615
+
616
+ if not MYPY:
617
+ class KubernetesAuthenticationUsernamePasswordArgsDict(TypedDict):
618
+ master_url: pulumi.Input[str]
619
+ """
620
+ URL of the Kubernetes master to connect to.
621
+ """
622
+ password_secret_name: pulumi.Input[str]
623
+ """
624
+ Name of the Harness secret containing the password for the cluster.
625
+ """
626
+ username: NotRequired[pulumi.Input[str]]
627
+ """
628
+ Username for authentication to the cluster
629
+ """
630
+ username_secret_name: NotRequired[pulumi.Input[str]]
631
+ """
632
+ Name of the Harness secret containing the username for authentication to the cluster
633
+ """
634
+ elif False:
635
+ KubernetesAuthenticationUsernamePasswordArgsDict: TypeAlias = Mapping[str, Any]
636
+
637
+ @pulumi.input_type
638
+ class KubernetesAuthenticationUsernamePasswordArgs:
639
+ def __init__(__self__, *,
640
+ master_url: pulumi.Input[str],
641
+ password_secret_name: pulumi.Input[str],
642
+ username: Optional[pulumi.Input[str]] = None,
643
+ username_secret_name: Optional[pulumi.Input[str]] = None):
644
+ """
645
+ :param pulumi.Input[str] master_url: URL of the Kubernetes master to connect to.
646
+ :param pulumi.Input[str] password_secret_name: Name of the Harness secret containing the password for the cluster.
647
+ :param pulumi.Input[str] username: Username for authentication to the cluster
648
+ :param pulumi.Input[str] username_secret_name: Name of the Harness secret containing the username for authentication to the cluster
649
+ """
650
+ pulumi.set(__self__, "master_url", master_url)
651
+ pulumi.set(__self__, "password_secret_name", password_secret_name)
652
+ if username is not None:
653
+ pulumi.set(__self__, "username", username)
654
+ if username_secret_name is not None:
655
+ pulumi.set(__self__, "username_secret_name", username_secret_name)
656
+
657
+ @property
658
+ @pulumi.getter(name="masterUrl")
659
+ def master_url(self) -> pulumi.Input[str]:
660
+ """
661
+ URL of the Kubernetes master to connect to.
662
+ """
663
+ return pulumi.get(self, "master_url")
664
+
665
+ @master_url.setter
666
+ def master_url(self, value: pulumi.Input[str]):
667
+ pulumi.set(self, "master_url", value)
668
+
669
+ @property
670
+ @pulumi.getter(name="passwordSecretName")
671
+ def password_secret_name(self) -> pulumi.Input[str]:
672
+ """
673
+ Name of the Harness secret containing the password for the cluster.
674
+ """
675
+ return pulumi.get(self, "password_secret_name")
676
+
677
+ @password_secret_name.setter
678
+ def password_secret_name(self, value: pulumi.Input[str]):
679
+ pulumi.set(self, "password_secret_name", value)
680
+
681
+ @property
682
+ @pulumi.getter
683
+ def username(self) -> Optional[pulumi.Input[str]]:
684
+ """
685
+ Username for authentication to the cluster
686
+ """
687
+ return pulumi.get(self, "username")
688
+
689
+ @username.setter
690
+ def username(self, value: Optional[pulumi.Input[str]]):
691
+ pulumi.set(self, "username", value)
692
+
693
+ @property
694
+ @pulumi.getter(name="usernameSecretName")
695
+ def username_secret_name(self) -> Optional[pulumi.Input[str]]:
696
+ """
697
+ Name of the Harness secret containing the username for authentication to the cluster
698
+ """
699
+ return pulumi.get(self, "username_secret_name")
700
+
701
+ @username_secret_name.setter
702
+ def username_secret_name(self, value: Optional[pulumi.Input[str]]):
703
+ pulumi.set(self, "username_secret_name", value)
704
+
705
+
706
+ if not MYPY:
707
+ class KubernetesUsageScopeArgsDict(TypedDict):
708
+ application_id: NotRequired[pulumi.Input[str]]
709
+ """
710
+ Id of the application to scope to. If empty then this scope applies to all applications.
711
+ """
712
+ environment_filter_type: NotRequired[pulumi.Input[str]]
713
+ """
714
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
715
+ """
716
+ environment_id: NotRequired[pulumi.Input[str]]
717
+ """
718
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
719
+ """
720
+ elif False:
721
+ KubernetesUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
722
+
723
+ @pulumi.input_type
724
+ class KubernetesUsageScopeArgs:
725
+ def __init__(__self__, *,
726
+ application_id: Optional[pulumi.Input[str]] = None,
727
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
728
+ environment_id: Optional[pulumi.Input[str]] = None):
729
+ """
730
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
731
+ :param pulumi.Input[str] environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
732
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
733
+ """
734
+ if application_id is not None:
735
+ pulumi.set(__self__, "application_id", application_id)
736
+ if environment_filter_type is not None:
737
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
738
+ if environment_id is not None:
739
+ pulumi.set(__self__, "environment_id", environment_id)
740
+
741
+ @property
742
+ @pulumi.getter(name="applicationId")
743
+ def application_id(self) -> Optional[pulumi.Input[str]]:
744
+ """
745
+ Id of the application to scope to. If empty then this scope applies to all applications.
746
+ """
747
+ return pulumi.get(self, "application_id")
748
+
749
+ @application_id.setter
750
+ def application_id(self, value: Optional[pulumi.Input[str]]):
751
+ pulumi.set(self, "application_id", value)
752
+
753
+ @property
754
+ @pulumi.getter(name="environmentFilterType")
755
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
756
+ """
757
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
758
+ """
759
+ return pulumi.get(self, "environment_filter_type")
760
+
761
+ @environment_filter_type.setter
762
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
763
+ pulumi.set(self, "environment_filter_type", value)
764
+
765
+ @property
766
+ @pulumi.getter(name="environmentId")
767
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
768
+ """
769
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
770
+ """
771
+ return pulumi.get(self, "environment_id")
772
+
773
+ @environment_id.setter
774
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
775
+ pulumi.set(self, "environment_id", value)
776
+
777
+