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,4025 @@
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
+ 'EncryptedTextUsageScopeArgs',
19
+ 'EncryptedTextUsageScopeArgsDict',
20
+ 'EnvironmentVariableOverrideArgs',
21
+ 'EnvironmentVariableOverrideArgsDict',
22
+ 'GitConnectorCommitDetailsArgs',
23
+ 'GitConnectorCommitDetailsArgsDict',
24
+ 'GitConnectorUsageScopeArgs',
25
+ 'GitConnectorUsageScopeArgsDict',
26
+ 'InfrastructureDefinitionAwsAmiArgs',
27
+ 'InfrastructureDefinitionAwsAmiArgsDict',
28
+ 'InfrastructureDefinitionAwsEcsArgs',
29
+ 'InfrastructureDefinitionAwsEcsArgsDict',
30
+ 'InfrastructureDefinitionAwsLambdaArgs',
31
+ 'InfrastructureDefinitionAwsLambdaArgsDict',
32
+ 'InfrastructureDefinitionAwsSshArgs',
33
+ 'InfrastructureDefinitionAwsSshArgsDict',
34
+ 'InfrastructureDefinitionAwsSshTagArgs',
35
+ 'InfrastructureDefinitionAwsSshTagArgsDict',
36
+ 'InfrastructureDefinitionAwsWinrmArgs',
37
+ 'InfrastructureDefinitionAwsWinrmArgsDict',
38
+ 'InfrastructureDefinitionAzureVmssArgs',
39
+ 'InfrastructureDefinitionAzureVmssArgsDict',
40
+ 'InfrastructureDefinitionAzureWebappArgs',
41
+ 'InfrastructureDefinitionAzureWebappArgsDict',
42
+ 'InfrastructureDefinitionCustomArgs',
43
+ 'InfrastructureDefinitionCustomArgsDict',
44
+ 'InfrastructureDefinitionCustomVariableArgs',
45
+ 'InfrastructureDefinitionCustomVariableArgsDict',
46
+ 'InfrastructureDefinitionDatacenterSshArgs',
47
+ 'InfrastructureDefinitionDatacenterSshArgsDict',
48
+ 'InfrastructureDefinitionDatacenterWinrmArgs',
49
+ 'InfrastructureDefinitionDatacenterWinrmArgsDict',
50
+ 'InfrastructureDefinitionKubernetesArgs',
51
+ 'InfrastructureDefinitionKubernetesArgsDict',
52
+ 'InfrastructureDefinitionKubernetesGcpArgs',
53
+ 'InfrastructureDefinitionKubernetesGcpArgsDict',
54
+ 'InfrastructureDefinitionTanzuArgs',
55
+ 'InfrastructureDefinitionTanzuArgsDict',
56
+ 'PlatformCcmFiltersFilterPropertiesArgs',
57
+ 'PlatformCcmFiltersFilterPropertiesArgsDict',
58
+ 'SshCredentialKerberosAuthenticationArgs',
59
+ 'SshCredentialKerberosAuthenticationArgsDict',
60
+ 'SshCredentialKerberosAuthenticationTgtGenerationMethodArgs',
61
+ 'SshCredentialKerberosAuthenticationTgtGenerationMethodArgsDict',
62
+ 'SshCredentialSshAuthenticationArgs',
63
+ 'SshCredentialSshAuthenticationArgsDict',
64
+ 'SshCredentialSshAuthenticationInlineSshArgs',
65
+ 'SshCredentialSshAuthenticationInlineSshArgsDict',
66
+ 'SshCredentialSshAuthenticationServerPasswordArgs',
67
+ 'SshCredentialSshAuthenticationServerPasswordArgsDict',
68
+ 'SshCredentialSshAuthenticationSshKeyFileArgs',
69
+ 'SshCredentialSshAuthenticationSshKeyFileArgsDict',
70
+ 'SshCredentialUsageScopeArgs',
71
+ 'SshCredentialUsageScopeArgsDict',
72
+ 'UserGroupLdapSettingsArgs',
73
+ 'UserGroupLdapSettingsArgsDict',
74
+ 'UserGroupNotificationSettingsArgs',
75
+ 'UserGroupNotificationSettingsArgsDict',
76
+ 'UserGroupPermissionsArgs',
77
+ 'UserGroupPermissionsArgsDict',
78
+ 'UserGroupPermissionsAppPermissionsArgs',
79
+ 'UserGroupPermissionsAppPermissionsArgsDict',
80
+ 'UserGroupPermissionsAppPermissionsAllArgs',
81
+ 'UserGroupPermissionsAppPermissionsAllArgsDict',
82
+ 'UserGroupPermissionsAppPermissionsDeploymentArgs',
83
+ 'UserGroupPermissionsAppPermissionsDeploymentArgsDict',
84
+ 'UserGroupPermissionsAppPermissionsEnvironmentArgs',
85
+ 'UserGroupPermissionsAppPermissionsEnvironmentArgsDict',
86
+ 'UserGroupPermissionsAppPermissionsPipelineArgs',
87
+ 'UserGroupPermissionsAppPermissionsPipelineArgsDict',
88
+ 'UserGroupPermissionsAppPermissionsProvisionerArgs',
89
+ 'UserGroupPermissionsAppPermissionsProvisionerArgsDict',
90
+ 'UserGroupPermissionsAppPermissionsServiceArgs',
91
+ 'UserGroupPermissionsAppPermissionsServiceArgsDict',
92
+ 'UserGroupPermissionsAppPermissionsTemplateArgs',
93
+ 'UserGroupPermissionsAppPermissionsTemplateArgsDict',
94
+ 'UserGroupPermissionsAppPermissionsWorkflowArgs',
95
+ 'UserGroupPermissionsAppPermissionsWorkflowArgsDict',
96
+ 'UserGroupSamlSettingsArgs',
97
+ 'UserGroupSamlSettingsArgsDict',
98
+ 'GetEncryptedTextUsageScopeArgs',
99
+ 'GetEncryptedTextUsageScopeArgsDict',
100
+ 'GetEnvironmentVariableOverrideArgs',
101
+ 'GetEnvironmentVariableOverrideArgsDict',
102
+ 'GetSecretManagerUsageScopeArgs',
103
+ 'GetSecretManagerUsageScopeArgsDict',
104
+ 'GetSshCredentialUsageScopeArgs',
105
+ 'GetSshCredentialUsageScopeArgsDict',
106
+ ]
107
+
108
+ MYPY = False
109
+
110
+ if not MYPY:
111
+ class EncryptedTextUsageScopeArgsDict(TypedDict):
112
+ application_id: NotRequired[pulumi.Input[str]]
113
+ """
114
+ Id of the application to scope to. If empty then this scope applies to all applications.
115
+ """
116
+ environment_filter_type: NotRequired[pulumi.Input[str]]
117
+ """
118
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
119
+ """
120
+ environment_id: NotRequired[pulumi.Input[str]]
121
+ """
122
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
123
+ """
124
+ elif False:
125
+ EncryptedTextUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
126
+
127
+ @pulumi.input_type
128
+ class EncryptedTextUsageScopeArgs:
129
+ def __init__(__self__, *,
130
+ application_id: Optional[pulumi.Input[str]] = None,
131
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
132
+ environment_id: Optional[pulumi.Input[str]] = None):
133
+ """
134
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
135
+ :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.
136
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
137
+ """
138
+ if application_id is not None:
139
+ pulumi.set(__self__, "application_id", application_id)
140
+ if environment_filter_type is not None:
141
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
142
+ if environment_id is not None:
143
+ pulumi.set(__self__, "environment_id", environment_id)
144
+
145
+ @property
146
+ @pulumi.getter(name="applicationId")
147
+ def application_id(self) -> Optional[pulumi.Input[str]]:
148
+ """
149
+ Id of the application to scope to. If empty then this scope applies to all applications.
150
+ """
151
+ return pulumi.get(self, "application_id")
152
+
153
+ @application_id.setter
154
+ def application_id(self, value: Optional[pulumi.Input[str]]):
155
+ pulumi.set(self, "application_id", value)
156
+
157
+ @property
158
+ @pulumi.getter(name="environmentFilterType")
159
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
160
+ """
161
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
162
+ """
163
+ return pulumi.get(self, "environment_filter_type")
164
+
165
+ @environment_filter_type.setter
166
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
167
+ pulumi.set(self, "environment_filter_type", value)
168
+
169
+ @property
170
+ @pulumi.getter(name="environmentId")
171
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
172
+ """
173
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
174
+ """
175
+ return pulumi.get(self, "environment_id")
176
+
177
+ @environment_id.setter
178
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
179
+ pulumi.set(self, "environment_id", value)
180
+
181
+
182
+ if not MYPY:
183
+ class EnvironmentVariableOverrideArgsDict(TypedDict):
184
+ name: pulumi.Input[str]
185
+ """
186
+ The name of the variable
187
+ """
188
+ type: pulumi.Input[str]
189
+ """
190
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
191
+ """
192
+ value: pulumi.Input[str]
193
+ """
194
+ The value of the service variable
195
+ """
196
+ service_name: NotRequired[pulumi.Input[str]]
197
+ """
198
+ The name of the service
199
+ """
200
+ elif False:
201
+ EnvironmentVariableOverrideArgsDict: TypeAlias = Mapping[str, Any]
202
+
203
+ @pulumi.input_type
204
+ class EnvironmentVariableOverrideArgs:
205
+ def __init__(__self__, *,
206
+ name: pulumi.Input[str],
207
+ type: pulumi.Input[str],
208
+ value: pulumi.Input[str],
209
+ service_name: Optional[pulumi.Input[str]] = None):
210
+ """
211
+ :param pulumi.Input[str] name: The name of the variable
212
+ :param pulumi.Input[str] type: The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
213
+ :param pulumi.Input[str] value: The value of the service variable
214
+ :param pulumi.Input[str] service_name: The name of the service
215
+ """
216
+ pulumi.set(__self__, "name", name)
217
+ pulumi.set(__self__, "type", type)
218
+ pulumi.set(__self__, "value", value)
219
+ if service_name is not None:
220
+ pulumi.set(__self__, "service_name", service_name)
221
+
222
+ @property
223
+ @pulumi.getter
224
+ def name(self) -> pulumi.Input[str]:
225
+ """
226
+ The name of the variable
227
+ """
228
+ return pulumi.get(self, "name")
229
+
230
+ @name.setter
231
+ def name(self, value: pulumi.Input[str]):
232
+ pulumi.set(self, "name", value)
233
+
234
+ @property
235
+ @pulumi.getter
236
+ def type(self) -> pulumi.Input[str]:
237
+ """
238
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
239
+ """
240
+ return pulumi.get(self, "type")
241
+
242
+ @type.setter
243
+ def type(self, value: pulumi.Input[str]):
244
+ pulumi.set(self, "type", value)
245
+
246
+ @property
247
+ @pulumi.getter
248
+ def value(self) -> pulumi.Input[str]:
249
+ """
250
+ The value of the service variable
251
+ """
252
+ return pulumi.get(self, "value")
253
+
254
+ @value.setter
255
+ def value(self, value: pulumi.Input[str]):
256
+ pulumi.set(self, "value", value)
257
+
258
+ @property
259
+ @pulumi.getter(name="serviceName")
260
+ def service_name(self) -> Optional[pulumi.Input[str]]:
261
+ """
262
+ The name of the service
263
+ """
264
+ return pulumi.get(self, "service_name")
265
+
266
+ @service_name.setter
267
+ def service_name(self, value: Optional[pulumi.Input[str]]):
268
+ pulumi.set(self, "service_name", value)
269
+
270
+
271
+ if not MYPY:
272
+ class GitConnectorCommitDetailsArgsDict(TypedDict):
273
+ author_email_id: NotRequired[pulumi.Input[str]]
274
+ """
275
+ The email id of the author
276
+ """
277
+ author_name: NotRequired[pulumi.Input[str]]
278
+ """
279
+ The name of the author
280
+ """
281
+ message: NotRequired[pulumi.Input[str]]
282
+ """
283
+ Commit message
284
+ """
285
+ elif False:
286
+ GitConnectorCommitDetailsArgsDict: TypeAlias = Mapping[str, Any]
287
+
288
+ @pulumi.input_type
289
+ class GitConnectorCommitDetailsArgs:
290
+ def __init__(__self__, *,
291
+ author_email_id: Optional[pulumi.Input[str]] = None,
292
+ author_name: Optional[pulumi.Input[str]] = None,
293
+ message: Optional[pulumi.Input[str]] = None):
294
+ """
295
+ :param pulumi.Input[str] author_email_id: The email id of the author
296
+ :param pulumi.Input[str] author_name: The name of the author
297
+ :param pulumi.Input[str] message: Commit message
298
+ """
299
+ if author_email_id is not None:
300
+ pulumi.set(__self__, "author_email_id", author_email_id)
301
+ if author_name is not None:
302
+ pulumi.set(__self__, "author_name", author_name)
303
+ if message is not None:
304
+ pulumi.set(__self__, "message", message)
305
+
306
+ @property
307
+ @pulumi.getter(name="authorEmailId")
308
+ def author_email_id(self) -> Optional[pulumi.Input[str]]:
309
+ """
310
+ The email id of the author
311
+ """
312
+ return pulumi.get(self, "author_email_id")
313
+
314
+ @author_email_id.setter
315
+ def author_email_id(self, value: Optional[pulumi.Input[str]]):
316
+ pulumi.set(self, "author_email_id", value)
317
+
318
+ @property
319
+ @pulumi.getter(name="authorName")
320
+ def author_name(self) -> Optional[pulumi.Input[str]]:
321
+ """
322
+ The name of the author
323
+ """
324
+ return pulumi.get(self, "author_name")
325
+
326
+ @author_name.setter
327
+ def author_name(self, value: Optional[pulumi.Input[str]]):
328
+ pulumi.set(self, "author_name", value)
329
+
330
+ @property
331
+ @pulumi.getter
332
+ def message(self) -> Optional[pulumi.Input[str]]:
333
+ """
334
+ Commit message
335
+ """
336
+ return pulumi.get(self, "message")
337
+
338
+ @message.setter
339
+ def message(self, value: Optional[pulumi.Input[str]]):
340
+ pulumi.set(self, "message", value)
341
+
342
+
343
+ if not MYPY:
344
+ class GitConnectorUsageScopeArgsDict(TypedDict):
345
+ application_id: NotRequired[pulumi.Input[str]]
346
+ """
347
+ Id of the application to scope to. If empty then this scope applies to all applications.
348
+ """
349
+ environment_filter_type: NotRequired[pulumi.Input[str]]
350
+ """
351
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
352
+ """
353
+ environment_id: NotRequired[pulumi.Input[str]]
354
+ """
355
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
356
+ """
357
+ elif False:
358
+ GitConnectorUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
359
+
360
+ @pulumi.input_type
361
+ class GitConnectorUsageScopeArgs:
362
+ def __init__(__self__, *,
363
+ application_id: Optional[pulumi.Input[str]] = None,
364
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
365
+ environment_id: Optional[pulumi.Input[str]] = None):
366
+ """
367
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
368
+ :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.
369
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
370
+ """
371
+ if application_id is not None:
372
+ pulumi.set(__self__, "application_id", application_id)
373
+ if environment_filter_type is not None:
374
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
375
+ if environment_id is not None:
376
+ pulumi.set(__self__, "environment_id", environment_id)
377
+
378
+ @property
379
+ @pulumi.getter(name="applicationId")
380
+ def application_id(self) -> Optional[pulumi.Input[str]]:
381
+ """
382
+ Id of the application to scope to. If empty then this scope applies to all applications.
383
+ """
384
+ return pulumi.get(self, "application_id")
385
+
386
+ @application_id.setter
387
+ def application_id(self, value: Optional[pulumi.Input[str]]):
388
+ pulumi.set(self, "application_id", value)
389
+
390
+ @property
391
+ @pulumi.getter(name="environmentFilterType")
392
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
393
+ """
394
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
395
+ """
396
+ return pulumi.get(self, "environment_filter_type")
397
+
398
+ @environment_filter_type.setter
399
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
400
+ pulumi.set(self, "environment_filter_type", value)
401
+
402
+ @property
403
+ @pulumi.getter(name="environmentId")
404
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
405
+ """
406
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
407
+ """
408
+ return pulumi.get(self, "environment_id")
409
+
410
+ @environment_id.setter
411
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
412
+ pulumi.set(self, "environment_id", value)
413
+
414
+
415
+ if not MYPY:
416
+ class InfrastructureDefinitionAwsAmiArgsDict(TypedDict):
417
+ ami_deployment_type: pulumi.Input[str]
418
+ """
419
+ The ami deployment type to use. Valid options are AWS_ASG, SPOTINST
420
+ """
421
+ cloud_provider_name: pulumi.Input[str]
422
+ """
423
+ The name of the cloud provider to connect with.
424
+ """
425
+ region: pulumi.Input[str]
426
+ """
427
+ The region to deploy to.
428
+ """
429
+ asg_identifies_workload: NotRequired[pulumi.Input[bool]]
430
+ """
431
+ Flag to indicate whether the autoscaling group identifies the workload.
432
+ """
433
+ autoscaling_group_name: NotRequired[pulumi.Input[str]]
434
+ """
435
+ The name of the autoscaling group.
436
+ """
437
+ classic_loadbalancers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
438
+ """
439
+ The classic load balancers to use.
440
+ """
441
+ hostname_convention: NotRequired[pulumi.Input[str]]
442
+ """
443
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
444
+ """
445
+ spotinst_cloud_provider_name: NotRequired[pulumi.Input[str]]
446
+ """
447
+ The name of the SpotInst cloud provider to connect with.
448
+ """
449
+ spotinst_config_json: NotRequired[pulumi.Input[str]]
450
+ """
451
+ The SpotInst configuration to use.
452
+ """
453
+ stage_classic_loadbalancers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
454
+ """
455
+ The staging classic load balancers to use.
456
+ """
457
+ stage_target_group_arns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
458
+ """
459
+ The staging classic load balancers to use.
460
+ """
461
+ target_group_arns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
462
+ """
463
+ The ARN's of the target groups.
464
+ """
465
+ use_traffic_shift: NotRequired[pulumi.Input[bool]]
466
+ """
467
+ Flag to enable traffic shifting.
468
+ """
469
+ elif False:
470
+ InfrastructureDefinitionAwsAmiArgsDict: TypeAlias = Mapping[str, Any]
471
+
472
+ @pulumi.input_type
473
+ class InfrastructureDefinitionAwsAmiArgs:
474
+ def __init__(__self__, *,
475
+ ami_deployment_type: pulumi.Input[str],
476
+ cloud_provider_name: pulumi.Input[str],
477
+ region: pulumi.Input[str],
478
+ asg_identifies_workload: Optional[pulumi.Input[bool]] = None,
479
+ autoscaling_group_name: Optional[pulumi.Input[str]] = None,
480
+ classic_loadbalancers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
481
+ hostname_convention: Optional[pulumi.Input[str]] = None,
482
+ spotinst_cloud_provider_name: Optional[pulumi.Input[str]] = None,
483
+ spotinst_config_json: Optional[pulumi.Input[str]] = None,
484
+ stage_classic_loadbalancers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
485
+ stage_target_group_arns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
486
+ target_group_arns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
487
+ use_traffic_shift: Optional[pulumi.Input[bool]] = None):
488
+ """
489
+ :param pulumi.Input[str] ami_deployment_type: The ami deployment type to use. Valid options are AWS_ASG, SPOTINST
490
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
491
+ :param pulumi.Input[str] region: The region to deploy to.
492
+ :param pulumi.Input[bool] asg_identifies_workload: Flag to indicate whether the autoscaling group identifies the workload.
493
+ :param pulumi.Input[str] autoscaling_group_name: The name of the autoscaling group.
494
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] classic_loadbalancers: The classic load balancers to use.
495
+ :param pulumi.Input[str] hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
496
+ :param pulumi.Input[str] spotinst_cloud_provider_name: The name of the SpotInst cloud provider to connect with.
497
+ :param pulumi.Input[str] spotinst_config_json: The SpotInst configuration to use.
498
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] stage_classic_loadbalancers: The staging classic load balancers to use.
499
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] stage_target_group_arns: The staging classic load balancers to use.
500
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] target_group_arns: The ARN's of the target groups.
501
+ :param pulumi.Input[bool] use_traffic_shift: Flag to enable traffic shifting.
502
+ """
503
+ pulumi.set(__self__, "ami_deployment_type", ami_deployment_type)
504
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
505
+ pulumi.set(__self__, "region", region)
506
+ if asg_identifies_workload is not None:
507
+ pulumi.set(__self__, "asg_identifies_workload", asg_identifies_workload)
508
+ if autoscaling_group_name is not None:
509
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
510
+ if classic_loadbalancers is not None:
511
+ pulumi.set(__self__, "classic_loadbalancers", classic_loadbalancers)
512
+ if hostname_convention is not None:
513
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
514
+ if spotinst_cloud_provider_name is not None:
515
+ pulumi.set(__self__, "spotinst_cloud_provider_name", spotinst_cloud_provider_name)
516
+ if spotinst_config_json is not None:
517
+ pulumi.set(__self__, "spotinst_config_json", spotinst_config_json)
518
+ if stage_classic_loadbalancers is not None:
519
+ pulumi.set(__self__, "stage_classic_loadbalancers", stage_classic_loadbalancers)
520
+ if stage_target_group_arns is not None:
521
+ pulumi.set(__self__, "stage_target_group_arns", stage_target_group_arns)
522
+ if target_group_arns is not None:
523
+ pulumi.set(__self__, "target_group_arns", target_group_arns)
524
+ if use_traffic_shift is not None:
525
+ pulumi.set(__self__, "use_traffic_shift", use_traffic_shift)
526
+
527
+ @property
528
+ @pulumi.getter(name="amiDeploymentType")
529
+ def ami_deployment_type(self) -> pulumi.Input[str]:
530
+ """
531
+ The ami deployment type to use. Valid options are AWS_ASG, SPOTINST
532
+ """
533
+ return pulumi.get(self, "ami_deployment_type")
534
+
535
+ @ami_deployment_type.setter
536
+ def ami_deployment_type(self, value: pulumi.Input[str]):
537
+ pulumi.set(self, "ami_deployment_type", value)
538
+
539
+ @property
540
+ @pulumi.getter(name="cloudProviderName")
541
+ def cloud_provider_name(self) -> pulumi.Input[str]:
542
+ """
543
+ The name of the cloud provider to connect with.
544
+ """
545
+ return pulumi.get(self, "cloud_provider_name")
546
+
547
+ @cloud_provider_name.setter
548
+ def cloud_provider_name(self, value: pulumi.Input[str]):
549
+ pulumi.set(self, "cloud_provider_name", value)
550
+
551
+ @property
552
+ @pulumi.getter
553
+ def region(self) -> pulumi.Input[str]:
554
+ """
555
+ The region to deploy to.
556
+ """
557
+ return pulumi.get(self, "region")
558
+
559
+ @region.setter
560
+ def region(self, value: pulumi.Input[str]):
561
+ pulumi.set(self, "region", value)
562
+
563
+ @property
564
+ @pulumi.getter(name="asgIdentifiesWorkload")
565
+ def asg_identifies_workload(self) -> Optional[pulumi.Input[bool]]:
566
+ """
567
+ Flag to indicate whether the autoscaling group identifies the workload.
568
+ """
569
+ return pulumi.get(self, "asg_identifies_workload")
570
+
571
+ @asg_identifies_workload.setter
572
+ def asg_identifies_workload(self, value: Optional[pulumi.Input[bool]]):
573
+ pulumi.set(self, "asg_identifies_workload", value)
574
+
575
+ @property
576
+ @pulumi.getter(name="autoscalingGroupName")
577
+ def autoscaling_group_name(self) -> Optional[pulumi.Input[str]]:
578
+ """
579
+ The name of the autoscaling group.
580
+ """
581
+ return pulumi.get(self, "autoscaling_group_name")
582
+
583
+ @autoscaling_group_name.setter
584
+ def autoscaling_group_name(self, value: Optional[pulumi.Input[str]]):
585
+ pulumi.set(self, "autoscaling_group_name", value)
586
+
587
+ @property
588
+ @pulumi.getter(name="classicLoadbalancers")
589
+ def classic_loadbalancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
590
+ """
591
+ The classic load balancers to use.
592
+ """
593
+ return pulumi.get(self, "classic_loadbalancers")
594
+
595
+ @classic_loadbalancers.setter
596
+ def classic_loadbalancers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
597
+ pulumi.set(self, "classic_loadbalancers", value)
598
+
599
+ @property
600
+ @pulumi.getter(name="hostnameConvention")
601
+ def hostname_convention(self) -> Optional[pulumi.Input[str]]:
602
+ """
603
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
604
+ """
605
+ return pulumi.get(self, "hostname_convention")
606
+
607
+ @hostname_convention.setter
608
+ def hostname_convention(self, value: Optional[pulumi.Input[str]]):
609
+ pulumi.set(self, "hostname_convention", value)
610
+
611
+ @property
612
+ @pulumi.getter(name="spotinstCloudProviderName")
613
+ def spotinst_cloud_provider_name(self) -> Optional[pulumi.Input[str]]:
614
+ """
615
+ The name of the SpotInst cloud provider to connect with.
616
+ """
617
+ return pulumi.get(self, "spotinst_cloud_provider_name")
618
+
619
+ @spotinst_cloud_provider_name.setter
620
+ def spotinst_cloud_provider_name(self, value: Optional[pulumi.Input[str]]):
621
+ pulumi.set(self, "spotinst_cloud_provider_name", value)
622
+
623
+ @property
624
+ @pulumi.getter(name="spotinstConfigJson")
625
+ def spotinst_config_json(self) -> Optional[pulumi.Input[str]]:
626
+ """
627
+ The SpotInst configuration to use.
628
+ """
629
+ return pulumi.get(self, "spotinst_config_json")
630
+
631
+ @spotinst_config_json.setter
632
+ def spotinst_config_json(self, value: Optional[pulumi.Input[str]]):
633
+ pulumi.set(self, "spotinst_config_json", value)
634
+
635
+ @property
636
+ @pulumi.getter(name="stageClassicLoadbalancers")
637
+ def stage_classic_loadbalancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
638
+ """
639
+ The staging classic load balancers to use.
640
+ """
641
+ return pulumi.get(self, "stage_classic_loadbalancers")
642
+
643
+ @stage_classic_loadbalancers.setter
644
+ def stage_classic_loadbalancers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
645
+ pulumi.set(self, "stage_classic_loadbalancers", value)
646
+
647
+ @property
648
+ @pulumi.getter(name="stageTargetGroupArns")
649
+ def stage_target_group_arns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
650
+ """
651
+ The staging classic load balancers to use.
652
+ """
653
+ return pulumi.get(self, "stage_target_group_arns")
654
+
655
+ @stage_target_group_arns.setter
656
+ def stage_target_group_arns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
657
+ pulumi.set(self, "stage_target_group_arns", value)
658
+
659
+ @property
660
+ @pulumi.getter(name="targetGroupArns")
661
+ def target_group_arns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
662
+ """
663
+ The ARN's of the target groups.
664
+ """
665
+ return pulumi.get(self, "target_group_arns")
666
+
667
+ @target_group_arns.setter
668
+ def target_group_arns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
669
+ pulumi.set(self, "target_group_arns", value)
670
+
671
+ @property
672
+ @pulumi.getter(name="useTrafficShift")
673
+ def use_traffic_shift(self) -> Optional[pulumi.Input[bool]]:
674
+ """
675
+ Flag to enable traffic shifting.
676
+ """
677
+ return pulumi.get(self, "use_traffic_shift")
678
+
679
+ @use_traffic_shift.setter
680
+ def use_traffic_shift(self, value: Optional[pulumi.Input[bool]]):
681
+ pulumi.set(self, "use_traffic_shift", value)
682
+
683
+
684
+ if not MYPY:
685
+ class InfrastructureDefinitionAwsEcsArgsDict(TypedDict):
686
+ cloud_provider_name: pulumi.Input[str]
687
+ """
688
+ The name of the cloud provider to connect with.
689
+ """
690
+ cluster_name: pulumi.Input[str]
691
+ """
692
+ The name of the ECS cluster to use.
693
+ """
694
+ launch_type: pulumi.Input[str]
695
+ """
696
+ The type of launch configuration to use. Valid options are FARGATE
697
+ """
698
+ region: pulumi.Input[str]
699
+ """
700
+ The region to deploy to.
701
+ """
702
+ assign_public_ip: NotRequired[pulumi.Input[bool]]
703
+ """
704
+ Flag to assign a public IP address.
705
+ """
706
+ execution_role: NotRequired[pulumi.Input[str]]
707
+ """
708
+ The ARN of the role to use for execution.
709
+ """
710
+ security_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
711
+ """
712
+ The security group ids to apply to the ecs service.
713
+ """
714
+ subnet_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
715
+ """
716
+ The subnet ids to apply to the ecs service.
717
+ """
718
+ vpc_id: NotRequired[pulumi.Input[str]]
719
+ """
720
+ The VPC ids to use when selecting the instances.
721
+ """
722
+ elif False:
723
+ InfrastructureDefinitionAwsEcsArgsDict: TypeAlias = Mapping[str, Any]
724
+
725
+ @pulumi.input_type
726
+ class InfrastructureDefinitionAwsEcsArgs:
727
+ def __init__(__self__, *,
728
+ cloud_provider_name: pulumi.Input[str],
729
+ cluster_name: pulumi.Input[str],
730
+ launch_type: pulumi.Input[str],
731
+ region: pulumi.Input[str],
732
+ assign_public_ip: Optional[pulumi.Input[bool]] = None,
733
+ execution_role: Optional[pulumi.Input[str]] = None,
734
+ security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
735
+ subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
736
+ vpc_id: Optional[pulumi.Input[str]] = None):
737
+ """
738
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
739
+ :param pulumi.Input[str] cluster_name: The name of the ECS cluster to use.
740
+ :param pulumi.Input[str] launch_type: The type of launch configuration to use. Valid options are FARGATE
741
+ :param pulumi.Input[str] region: The region to deploy to.
742
+ :param pulumi.Input[bool] assign_public_ip: Flag to assign a public IP address.
743
+ :param pulumi.Input[str] execution_role: The ARN of the role to use for execution.
744
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: The security group ids to apply to the ecs service.
745
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] subnet_ids: The subnet ids to apply to the ecs service.
746
+ :param pulumi.Input[str] vpc_id: The VPC ids to use when selecting the instances.
747
+ """
748
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
749
+ pulumi.set(__self__, "cluster_name", cluster_name)
750
+ pulumi.set(__self__, "launch_type", launch_type)
751
+ pulumi.set(__self__, "region", region)
752
+ if assign_public_ip is not None:
753
+ pulumi.set(__self__, "assign_public_ip", assign_public_ip)
754
+ if execution_role is not None:
755
+ pulumi.set(__self__, "execution_role", execution_role)
756
+ if security_group_ids is not None:
757
+ pulumi.set(__self__, "security_group_ids", security_group_ids)
758
+ if subnet_ids is not None:
759
+ pulumi.set(__self__, "subnet_ids", subnet_ids)
760
+ if vpc_id is not None:
761
+ pulumi.set(__self__, "vpc_id", vpc_id)
762
+
763
+ @property
764
+ @pulumi.getter(name="cloudProviderName")
765
+ def cloud_provider_name(self) -> pulumi.Input[str]:
766
+ """
767
+ The name of the cloud provider to connect with.
768
+ """
769
+ return pulumi.get(self, "cloud_provider_name")
770
+
771
+ @cloud_provider_name.setter
772
+ def cloud_provider_name(self, value: pulumi.Input[str]):
773
+ pulumi.set(self, "cloud_provider_name", value)
774
+
775
+ @property
776
+ @pulumi.getter(name="clusterName")
777
+ def cluster_name(self) -> pulumi.Input[str]:
778
+ """
779
+ The name of the ECS cluster to use.
780
+ """
781
+ return pulumi.get(self, "cluster_name")
782
+
783
+ @cluster_name.setter
784
+ def cluster_name(self, value: pulumi.Input[str]):
785
+ pulumi.set(self, "cluster_name", value)
786
+
787
+ @property
788
+ @pulumi.getter(name="launchType")
789
+ def launch_type(self) -> pulumi.Input[str]:
790
+ """
791
+ The type of launch configuration to use. Valid options are FARGATE
792
+ """
793
+ return pulumi.get(self, "launch_type")
794
+
795
+ @launch_type.setter
796
+ def launch_type(self, value: pulumi.Input[str]):
797
+ pulumi.set(self, "launch_type", value)
798
+
799
+ @property
800
+ @pulumi.getter
801
+ def region(self) -> pulumi.Input[str]:
802
+ """
803
+ The region to deploy to.
804
+ """
805
+ return pulumi.get(self, "region")
806
+
807
+ @region.setter
808
+ def region(self, value: pulumi.Input[str]):
809
+ pulumi.set(self, "region", value)
810
+
811
+ @property
812
+ @pulumi.getter(name="assignPublicIp")
813
+ def assign_public_ip(self) -> Optional[pulumi.Input[bool]]:
814
+ """
815
+ Flag to assign a public IP address.
816
+ """
817
+ return pulumi.get(self, "assign_public_ip")
818
+
819
+ @assign_public_ip.setter
820
+ def assign_public_ip(self, value: Optional[pulumi.Input[bool]]):
821
+ pulumi.set(self, "assign_public_ip", value)
822
+
823
+ @property
824
+ @pulumi.getter(name="executionRole")
825
+ def execution_role(self) -> Optional[pulumi.Input[str]]:
826
+ """
827
+ The ARN of the role to use for execution.
828
+ """
829
+ return pulumi.get(self, "execution_role")
830
+
831
+ @execution_role.setter
832
+ def execution_role(self, value: Optional[pulumi.Input[str]]):
833
+ pulumi.set(self, "execution_role", value)
834
+
835
+ @property
836
+ @pulumi.getter(name="securityGroupIds")
837
+ def security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
838
+ """
839
+ The security group ids to apply to the ecs service.
840
+ """
841
+ return pulumi.get(self, "security_group_ids")
842
+
843
+ @security_group_ids.setter
844
+ def security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
845
+ pulumi.set(self, "security_group_ids", value)
846
+
847
+ @property
848
+ @pulumi.getter(name="subnetIds")
849
+ def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
850
+ """
851
+ The subnet ids to apply to the ecs service.
852
+ """
853
+ return pulumi.get(self, "subnet_ids")
854
+
855
+ @subnet_ids.setter
856
+ def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
857
+ pulumi.set(self, "subnet_ids", value)
858
+
859
+ @property
860
+ @pulumi.getter(name="vpcId")
861
+ def vpc_id(self) -> Optional[pulumi.Input[str]]:
862
+ """
863
+ The VPC ids to use when selecting the instances.
864
+ """
865
+ return pulumi.get(self, "vpc_id")
866
+
867
+ @vpc_id.setter
868
+ def vpc_id(self, value: Optional[pulumi.Input[str]]):
869
+ pulumi.set(self, "vpc_id", value)
870
+
871
+
872
+ if not MYPY:
873
+ class InfrastructureDefinitionAwsLambdaArgsDict(TypedDict):
874
+ cloud_provider_name: pulumi.Input[str]
875
+ """
876
+ The name of the cloud provider to connect with.
877
+ """
878
+ region: pulumi.Input[str]
879
+ """
880
+ The region to deploy to.
881
+ """
882
+ iam_role: NotRequired[pulumi.Input[str]]
883
+ """
884
+ The IAM role to use.
885
+ """
886
+ security_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
887
+ """
888
+ The security group ids to apply to the ecs service.
889
+ """
890
+ subnet_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
891
+ """
892
+ The subnet ids to apply to the ecs service.
893
+ """
894
+ vpc_id: NotRequired[pulumi.Input[str]]
895
+ """
896
+ The VPC ids to use when selecting the instances.
897
+ """
898
+ elif False:
899
+ InfrastructureDefinitionAwsLambdaArgsDict: TypeAlias = Mapping[str, Any]
900
+
901
+ @pulumi.input_type
902
+ class InfrastructureDefinitionAwsLambdaArgs:
903
+ def __init__(__self__, *,
904
+ cloud_provider_name: pulumi.Input[str],
905
+ region: pulumi.Input[str],
906
+ iam_role: Optional[pulumi.Input[str]] = None,
907
+ security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
908
+ subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
909
+ vpc_id: Optional[pulumi.Input[str]] = None):
910
+ """
911
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
912
+ :param pulumi.Input[str] region: The region to deploy to.
913
+ :param pulumi.Input[str] iam_role: The IAM role to use.
914
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] security_group_ids: The security group ids to apply to the ecs service.
915
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] subnet_ids: The subnet ids to apply to the ecs service.
916
+ :param pulumi.Input[str] vpc_id: The VPC ids to use when selecting the instances.
917
+ """
918
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
919
+ pulumi.set(__self__, "region", region)
920
+ if iam_role is not None:
921
+ pulumi.set(__self__, "iam_role", iam_role)
922
+ if security_group_ids is not None:
923
+ pulumi.set(__self__, "security_group_ids", security_group_ids)
924
+ if subnet_ids is not None:
925
+ pulumi.set(__self__, "subnet_ids", subnet_ids)
926
+ if vpc_id is not None:
927
+ pulumi.set(__self__, "vpc_id", vpc_id)
928
+
929
+ @property
930
+ @pulumi.getter(name="cloudProviderName")
931
+ def cloud_provider_name(self) -> pulumi.Input[str]:
932
+ """
933
+ The name of the cloud provider to connect with.
934
+ """
935
+ return pulumi.get(self, "cloud_provider_name")
936
+
937
+ @cloud_provider_name.setter
938
+ def cloud_provider_name(self, value: pulumi.Input[str]):
939
+ pulumi.set(self, "cloud_provider_name", value)
940
+
941
+ @property
942
+ @pulumi.getter
943
+ def region(self) -> pulumi.Input[str]:
944
+ """
945
+ The region to deploy to.
946
+ """
947
+ return pulumi.get(self, "region")
948
+
949
+ @region.setter
950
+ def region(self, value: pulumi.Input[str]):
951
+ pulumi.set(self, "region", value)
952
+
953
+ @property
954
+ @pulumi.getter(name="iamRole")
955
+ def iam_role(self) -> Optional[pulumi.Input[str]]:
956
+ """
957
+ The IAM role to use.
958
+ """
959
+ return pulumi.get(self, "iam_role")
960
+
961
+ @iam_role.setter
962
+ def iam_role(self, value: Optional[pulumi.Input[str]]):
963
+ pulumi.set(self, "iam_role", value)
964
+
965
+ @property
966
+ @pulumi.getter(name="securityGroupIds")
967
+ def security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
968
+ """
969
+ The security group ids to apply to the ecs service.
970
+ """
971
+ return pulumi.get(self, "security_group_ids")
972
+
973
+ @security_group_ids.setter
974
+ def security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
975
+ pulumi.set(self, "security_group_ids", value)
976
+
977
+ @property
978
+ @pulumi.getter(name="subnetIds")
979
+ def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
980
+ """
981
+ The subnet ids to apply to the ecs service.
982
+ """
983
+ return pulumi.get(self, "subnet_ids")
984
+
985
+ @subnet_ids.setter
986
+ def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
987
+ pulumi.set(self, "subnet_ids", value)
988
+
989
+ @property
990
+ @pulumi.getter(name="vpcId")
991
+ def vpc_id(self) -> Optional[pulumi.Input[str]]:
992
+ """
993
+ The VPC ids to use when selecting the instances.
994
+ """
995
+ return pulumi.get(self, "vpc_id")
996
+
997
+ @vpc_id.setter
998
+ def vpc_id(self, value: Optional[pulumi.Input[str]]):
999
+ pulumi.set(self, "vpc_id", value)
1000
+
1001
+
1002
+ if not MYPY:
1003
+ class InfrastructureDefinitionAwsSshArgsDict(TypedDict):
1004
+ cloud_provider_name: pulumi.Input[str]
1005
+ """
1006
+ The name of the cloud provider to connect with.
1007
+ """
1008
+ host_connection_type: pulumi.Input[str]
1009
+ """
1010
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1011
+ """
1012
+ region: pulumi.Input[str]
1013
+ """
1014
+ The region to deploy to.
1015
+ """
1016
+ autoscaling_group_name: NotRequired[pulumi.Input[str]]
1017
+ """
1018
+ The name of the autoscaling group.
1019
+ """
1020
+ desired_capacity: NotRequired[pulumi.Input[int]]
1021
+ """
1022
+ The desired capacity of the auto scaling group.
1023
+ """
1024
+ host_connection_attrs_name: NotRequired[pulumi.Input[str]]
1025
+ """
1026
+ The name of the host connection attributes to use.
1027
+ """
1028
+ hostname_convention: NotRequired[pulumi.Input[str]]
1029
+ """
1030
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1031
+ """
1032
+ loadbalancer_name: NotRequired[pulumi.Input[str]]
1033
+ """
1034
+ The name of the load balancer to use.
1035
+ """
1036
+ tags: NotRequired[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionAwsSshTagArgsDict']]]]
1037
+ """
1038
+ The tags to use when selecting the instances.
1039
+ """
1040
+ vpc_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1041
+ """
1042
+ The VPC ids to use when selecting the instances.
1043
+ """
1044
+ elif False:
1045
+ InfrastructureDefinitionAwsSshArgsDict: TypeAlias = Mapping[str, Any]
1046
+
1047
+ @pulumi.input_type
1048
+ class InfrastructureDefinitionAwsSshArgs:
1049
+ def __init__(__self__, *,
1050
+ cloud_provider_name: pulumi.Input[str],
1051
+ host_connection_type: pulumi.Input[str],
1052
+ region: pulumi.Input[str],
1053
+ autoscaling_group_name: Optional[pulumi.Input[str]] = None,
1054
+ desired_capacity: Optional[pulumi.Input[int]] = None,
1055
+ host_connection_attrs_name: Optional[pulumi.Input[str]] = None,
1056
+ hostname_convention: Optional[pulumi.Input[str]] = None,
1057
+ loadbalancer_name: Optional[pulumi.Input[str]] = None,
1058
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionAwsSshTagArgs']]]] = None,
1059
+ vpc_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1060
+ """
1061
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1062
+ :param pulumi.Input[str] host_connection_type: The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1063
+ :param pulumi.Input[str] region: The region to deploy to.
1064
+ :param pulumi.Input[str] autoscaling_group_name: The name of the autoscaling group.
1065
+ :param pulumi.Input[int] desired_capacity: The desired capacity of the auto scaling group.
1066
+ :param pulumi.Input[str] host_connection_attrs_name: The name of the host connection attributes to use.
1067
+ :param pulumi.Input[str] hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1068
+ :param pulumi.Input[str] loadbalancer_name: The name of the load balancer to use.
1069
+ :param pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionAwsSshTagArgs']]] tags: The tags to use when selecting the instances.
1070
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_ids: The VPC ids to use when selecting the instances.
1071
+ """
1072
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1073
+ pulumi.set(__self__, "host_connection_type", host_connection_type)
1074
+ pulumi.set(__self__, "region", region)
1075
+ if autoscaling_group_name is not None:
1076
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
1077
+ if desired_capacity is not None:
1078
+ pulumi.set(__self__, "desired_capacity", desired_capacity)
1079
+ if host_connection_attrs_name is not None:
1080
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
1081
+ if hostname_convention is not None:
1082
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
1083
+ if loadbalancer_name is not None:
1084
+ pulumi.set(__self__, "loadbalancer_name", loadbalancer_name)
1085
+ if tags is not None:
1086
+ pulumi.set(__self__, "tags", tags)
1087
+ if vpc_ids is not None:
1088
+ pulumi.set(__self__, "vpc_ids", vpc_ids)
1089
+
1090
+ @property
1091
+ @pulumi.getter(name="cloudProviderName")
1092
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1093
+ """
1094
+ The name of the cloud provider to connect with.
1095
+ """
1096
+ return pulumi.get(self, "cloud_provider_name")
1097
+
1098
+ @cloud_provider_name.setter
1099
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1100
+ pulumi.set(self, "cloud_provider_name", value)
1101
+
1102
+ @property
1103
+ @pulumi.getter(name="hostConnectionType")
1104
+ def host_connection_type(self) -> pulumi.Input[str]:
1105
+ """
1106
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1107
+ """
1108
+ return pulumi.get(self, "host_connection_type")
1109
+
1110
+ @host_connection_type.setter
1111
+ def host_connection_type(self, value: pulumi.Input[str]):
1112
+ pulumi.set(self, "host_connection_type", value)
1113
+
1114
+ @property
1115
+ @pulumi.getter
1116
+ def region(self) -> pulumi.Input[str]:
1117
+ """
1118
+ The region to deploy to.
1119
+ """
1120
+ return pulumi.get(self, "region")
1121
+
1122
+ @region.setter
1123
+ def region(self, value: pulumi.Input[str]):
1124
+ pulumi.set(self, "region", value)
1125
+
1126
+ @property
1127
+ @pulumi.getter(name="autoscalingGroupName")
1128
+ def autoscaling_group_name(self) -> Optional[pulumi.Input[str]]:
1129
+ """
1130
+ The name of the autoscaling group.
1131
+ """
1132
+ return pulumi.get(self, "autoscaling_group_name")
1133
+
1134
+ @autoscaling_group_name.setter
1135
+ def autoscaling_group_name(self, value: Optional[pulumi.Input[str]]):
1136
+ pulumi.set(self, "autoscaling_group_name", value)
1137
+
1138
+ @property
1139
+ @pulumi.getter(name="desiredCapacity")
1140
+ def desired_capacity(self) -> Optional[pulumi.Input[int]]:
1141
+ """
1142
+ The desired capacity of the auto scaling group.
1143
+ """
1144
+ return pulumi.get(self, "desired_capacity")
1145
+
1146
+ @desired_capacity.setter
1147
+ def desired_capacity(self, value: Optional[pulumi.Input[int]]):
1148
+ pulumi.set(self, "desired_capacity", value)
1149
+
1150
+ @property
1151
+ @pulumi.getter(name="hostConnectionAttrsName")
1152
+ def host_connection_attrs_name(self) -> Optional[pulumi.Input[str]]:
1153
+ """
1154
+ The name of the host connection attributes to use.
1155
+ """
1156
+ return pulumi.get(self, "host_connection_attrs_name")
1157
+
1158
+ @host_connection_attrs_name.setter
1159
+ def host_connection_attrs_name(self, value: Optional[pulumi.Input[str]]):
1160
+ pulumi.set(self, "host_connection_attrs_name", value)
1161
+
1162
+ @property
1163
+ @pulumi.getter(name="hostnameConvention")
1164
+ def hostname_convention(self) -> Optional[pulumi.Input[str]]:
1165
+ """
1166
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1167
+ """
1168
+ return pulumi.get(self, "hostname_convention")
1169
+
1170
+ @hostname_convention.setter
1171
+ def hostname_convention(self, value: Optional[pulumi.Input[str]]):
1172
+ pulumi.set(self, "hostname_convention", value)
1173
+
1174
+ @property
1175
+ @pulumi.getter(name="loadbalancerName")
1176
+ def loadbalancer_name(self) -> Optional[pulumi.Input[str]]:
1177
+ """
1178
+ The name of the load balancer to use.
1179
+ """
1180
+ return pulumi.get(self, "loadbalancer_name")
1181
+
1182
+ @loadbalancer_name.setter
1183
+ def loadbalancer_name(self, value: Optional[pulumi.Input[str]]):
1184
+ pulumi.set(self, "loadbalancer_name", value)
1185
+
1186
+ @property
1187
+ @pulumi.getter
1188
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionAwsSshTagArgs']]]]:
1189
+ """
1190
+ The tags to use when selecting the instances.
1191
+ """
1192
+ return pulumi.get(self, "tags")
1193
+
1194
+ @tags.setter
1195
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionAwsSshTagArgs']]]]):
1196
+ pulumi.set(self, "tags", value)
1197
+
1198
+ @property
1199
+ @pulumi.getter(name="vpcIds")
1200
+ def vpc_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1201
+ """
1202
+ The VPC ids to use when selecting the instances.
1203
+ """
1204
+ return pulumi.get(self, "vpc_ids")
1205
+
1206
+ @vpc_ids.setter
1207
+ def vpc_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1208
+ pulumi.set(self, "vpc_ids", value)
1209
+
1210
+
1211
+ if not MYPY:
1212
+ class InfrastructureDefinitionAwsSshTagArgsDict(TypedDict):
1213
+ key: pulumi.Input[str]
1214
+ """
1215
+ The key of the tag.
1216
+ """
1217
+ value: pulumi.Input[str]
1218
+ """
1219
+ The value of the tag.
1220
+ """
1221
+ elif False:
1222
+ InfrastructureDefinitionAwsSshTagArgsDict: TypeAlias = Mapping[str, Any]
1223
+
1224
+ @pulumi.input_type
1225
+ class InfrastructureDefinitionAwsSshTagArgs:
1226
+ def __init__(__self__, *,
1227
+ key: pulumi.Input[str],
1228
+ value: pulumi.Input[str]):
1229
+ """
1230
+ :param pulumi.Input[str] key: The key of the tag.
1231
+ :param pulumi.Input[str] value: The value of the tag.
1232
+ """
1233
+ pulumi.set(__self__, "key", key)
1234
+ pulumi.set(__self__, "value", value)
1235
+
1236
+ @property
1237
+ @pulumi.getter
1238
+ def key(self) -> pulumi.Input[str]:
1239
+ """
1240
+ The key of the tag.
1241
+ """
1242
+ return pulumi.get(self, "key")
1243
+
1244
+ @key.setter
1245
+ def key(self, value: pulumi.Input[str]):
1246
+ pulumi.set(self, "key", value)
1247
+
1248
+ @property
1249
+ @pulumi.getter
1250
+ def value(self) -> pulumi.Input[str]:
1251
+ """
1252
+ The value of the tag.
1253
+ """
1254
+ return pulumi.get(self, "value")
1255
+
1256
+ @value.setter
1257
+ def value(self, value: pulumi.Input[str]):
1258
+ pulumi.set(self, "value", value)
1259
+
1260
+
1261
+ if not MYPY:
1262
+ class InfrastructureDefinitionAwsWinrmArgsDict(TypedDict):
1263
+ autoscaling_group_name: pulumi.Input[str]
1264
+ """
1265
+ The name of the autoscaling group.
1266
+ """
1267
+ cloud_provider_name: pulumi.Input[str]
1268
+ """
1269
+ The name of the cloud provider to connect with.
1270
+ """
1271
+ host_connection_attrs_name: pulumi.Input[str]
1272
+ """
1273
+ The name of the host connection attributes to use.
1274
+ """
1275
+ host_connection_type: pulumi.Input[str]
1276
+ """
1277
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1278
+ """
1279
+ region: pulumi.Input[str]
1280
+ """
1281
+ The region to deploy to.
1282
+ """
1283
+ desired_capacity: NotRequired[pulumi.Input[int]]
1284
+ """
1285
+ The desired capacity of the autoscaling group.
1286
+ """
1287
+ hostname_convention: NotRequired[pulumi.Input[str]]
1288
+ """
1289
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1290
+ """
1291
+ loadbalancer_name: NotRequired[pulumi.Input[str]]
1292
+ """
1293
+ The name of the load balancer to use.
1294
+ """
1295
+ elif False:
1296
+ InfrastructureDefinitionAwsWinrmArgsDict: TypeAlias = Mapping[str, Any]
1297
+
1298
+ @pulumi.input_type
1299
+ class InfrastructureDefinitionAwsWinrmArgs:
1300
+ def __init__(__self__, *,
1301
+ autoscaling_group_name: pulumi.Input[str],
1302
+ cloud_provider_name: pulumi.Input[str],
1303
+ host_connection_attrs_name: pulumi.Input[str],
1304
+ host_connection_type: pulumi.Input[str],
1305
+ region: pulumi.Input[str],
1306
+ desired_capacity: Optional[pulumi.Input[int]] = None,
1307
+ hostname_convention: Optional[pulumi.Input[str]] = None,
1308
+ loadbalancer_name: Optional[pulumi.Input[str]] = None):
1309
+ """
1310
+ :param pulumi.Input[str] autoscaling_group_name: The name of the autoscaling group.
1311
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1312
+ :param pulumi.Input[str] host_connection_attrs_name: The name of the host connection attributes to use.
1313
+ :param pulumi.Input[str] host_connection_type: The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1314
+ :param pulumi.Input[str] region: The region to deploy to.
1315
+ :param pulumi.Input[int] desired_capacity: The desired capacity of the autoscaling group.
1316
+ :param pulumi.Input[str] hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1317
+ :param pulumi.Input[str] loadbalancer_name: The name of the load balancer to use.
1318
+ """
1319
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
1320
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1321
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
1322
+ pulumi.set(__self__, "host_connection_type", host_connection_type)
1323
+ pulumi.set(__self__, "region", region)
1324
+ if desired_capacity is not None:
1325
+ pulumi.set(__self__, "desired_capacity", desired_capacity)
1326
+ if hostname_convention is not None:
1327
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
1328
+ if loadbalancer_name is not None:
1329
+ pulumi.set(__self__, "loadbalancer_name", loadbalancer_name)
1330
+
1331
+ @property
1332
+ @pulumi.getter(name="autoscalingGroupName")
1333
+ def autoscaling_group_name(self) -> pulumi.Input[str]:
1334
+ """
1335
+ The name of the autoscaling group.
1336
+ """
1337
+ return pulumi.get(self, "autoscaling_group_name")
1338
+
1339
+ @autoscaling_group_name.setter
1340
+ def autoscaling_group_name(self, value: pulumi.Input[str]):
1341
+ pulumi.set(self, "autoscaling_group_name", value)
1342
+
1343
+ @property
1344
+ @pulumi.getter(name="cloudProviderName")
1345
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1346
+ """
1347
+ The name of the cloud provider to connect with.
1348
+ """
1349
+ return pulumi.get(self, "cloud_provider_name")
1350
+
1351
+ @cloud_provider_name.setter
1352
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1353
+ pulumi.set(self, "cloud_provider_name", value)
1354
+
1355
+ @property
1356
+ @pulumi.getter(name="hostConnectionAttrsName")
1357
+ def host_connection_attrs_name(self) -> pulumi.Input[str]:
1358
+ """
1359
+ The name of the host connection attributes to use.
1360
+ """
1361
+ return pulumi.get(self, "host_connection_attrs_name")
1362
+
1363
+ @host_connection_attrs_name.setter
1364
+ def host_connection_attrs_name(self, value: pulumi.Input[str]):
1365
+ pulumi.set(self, "host_connection_attrs_name", value)
1366
+
1367
+ @property
1368
+ @pulumi.getter(name="hostConnectionType")
1369
+ def host_connection_type(self) -> pulumi.Input[str]:
1370
+ """
1371
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1372
+ """
1373
+ return pulumi.get(self, "host_connection_type")
1374
+
1375
+ @host_connection_type.setter
1376
+ def host_connection_type(self, value: pulumi.Input[str]):
1377
+ pulumi.set(self, "host_connection_type", value)
1378
+
1379
+ @property
1380
+ @pulumi.getter
1381
+ def region(self) -> pulumi.Input[str]:
1382
+ """
1383
+ The region to deploy to.
1384
+ """
1385
+ return pulumi.get(self, "region")
1386
+
1387
+ @region.setter
1388
+ def region(self, value: pulumi.Input[str]):
1389
+ pulumi.set(self, "region", value)
1390
+
1391
+ @property
1392
+ @pulumi.getter(name="desiredCapacity")
1393
+ def desired_capacity(self) -> Optional[pulumi.Input[int]]:
1394
+ """
1395
+ The desired capacity of the autoscaling group.
1396
+ """
1397
+ return pulumi.get(self, "desired_capacity")
1398
+
1399
+ @desired_capacity.setter
1400
+ def desired_capacity(self, value: Optional[pulumi.Input[int]]):
1401
+ pulumi.set(self, "desired_capacity", value)
1402
+
1403
+ @property
1404
+ @pulumi.getter(name="hostnameConvention")
1405
+ def hostname_convention(self) -> Optional[pulumi.Input[str]]:
1406
+ """
1407
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1408
+ """
1409
+ return pulumi.get(self, "hostname_convention")
1410
+
1411
+ @hostname_convention.setter
1412
+ def hostname_convention(self, value: Optional[pulumi.Input[str]]):
1413
+ pulumi.set(self, "hostname_convention", value)
1414
+
1415
+ @property
1416
+ @pulumi.getter(name="loadbalancerName")
1417
+ def loadbalancer_name(self) -> Optional[pulumi.Input[str]]:
1418
+ """
1419
+ The name of the load balancer to use.
1420
+ """
1421
+ return pulumi.get(self, "loadbalancer_name")
1422
+
1423
+ @loadbalancer_name.setter
1424
+ def loadbalancer_name(self, value: Optional[pulumi.Input[str]]):
1425
+ pulumi.set(self, "loadbalancer_name", value)
1426
+
1427
+
1428
+ if not MYPY:
1429
+ class InfrastructureDefinitionAzureVmssArgsDict(TypedDict):
1430
+ auth_type: pulumi.Input[str]
1431
+ """
1432
+ The type of authentication to use. Valid options are SSH*PUBLIC*KEY.
1433
+ """
1434
+ base_name: pulumi.Input[str]
1435
+ """
1436
+ Base name.
1437
+ """
1438
+ cloud_provider_name: pulumi.Input[str]
1439
+ """
1440
+ The name of the cloud provider to connect with.
1441
+ """
1442
+ deployment_type: pulumi.Input[str]
1443
+ """
1444
+ The type of deployment. Valid options are NATIVE_VMSS
1445
+ """
1446
+ resource_group_name: pulumi.Input[str]
1447
+ """
1448
+ The name of the resource group.
1449
+ """
1450
+ subscription_id: pulumi.Input[str]
1451
+ """
1452
+ The unique id of the azure subscription.
1453
+ """
1454
+ username: pulumi.Input[str]
1455
+ """
1456
+ The username to connect with.
1457
+ """
1458
+ host_connection_attrs_name: NotRequired[pulumi.Input[str]]
1459
+ """
1460
+ The name of the host connection attributes to use.
1461
+ """
1462
+ elif False:
1463
+ InfrastructureDefinitionAzureVmssArgsDict: TypeAlias = Mapping[str, Any]
1464
+
1465
+ @pulumi.input_type
1466
+ class InfrastructureDefinitionAzureVmssArgs:
1467
+ def __init__(__self__, *,
1468
+ auth_type: pulumi.Input[str],
1469
+ base_name: pulumi.Input[str],
1470
+ cloud_provider_name: pulumi.Input[str],
1471
+ deployment_type: pulumi.Input[str],
1472
+ resource_group_name: pulumi.Input[str],
1473
+ subscription_id: pulumi.Input[str],
1474
+ username: pulumi.Input[str],
1475
+ host_connection_attrs_name: Optional[pulumi.Input[str]] = None):
1476
+ """
1477
+ :param pulumi.Input[str] auth_type: The type of authentication to use. Valid options are SSH*PUBLIC*KEY.
1478
+ :param pulumi.Input[str] base_name: Base name.
1479
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1480
+ :param pulumi.Input[str] deployment_type: The type of deployment. Valid options are NATIVE_VMSS
1481
+ :param pulumi.Input[str] resource_group_name: The name of the resource group.
1482
+ :param pulumi.Input[str] subscription_id: The unique id of the azure subscription.
1483
+ :param pulumi.Input[str] username: The username to connect with.
1484
+ :param pulumi.Input[str] host_connection_attrs_name: The name of the host connection attributes to use.
1485
+ """
1486
+ pulumi.set(__self__, "auth_type", auth_type)
1487
+ pulumi.set(__self__, "base_name", base_name)
1488
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1489
+ pulumi.set(__self__, "deployment_type", deployment_type)
1490
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
1491
+ pulumi.set(__self__, "subscription_id", subscription_id)
1492
+ pulumi.set(__self__, "username", username)
1493
+ if host_connection_attrs_name is not None:
1494
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
1495
+
1496
+ @property
1497
+ @pulumi.getter(name="authType")
1498
+ def auth_type(self) -> pulumi.Input[str]:
1499
+ """
1500
+ The type of authentication to use. Valid options are SSH*PUBLIC*KEY.
1501
+ """
1502
+ return pulumi.get(self, "auth_type")
1503
+
1504
+ @auth_type.setter
1505
+ def auth_type(self, value: pulumi.Input[str]):
1506
+ pulumi.set(self, "auth_type", value)
1507
+
1508
+ @property
1509
+ @pulumi.getter(name="baseName")
1510
+ def base_name(self) -> pulumi.Input[str]:
1511
+ """
1512
+ Base name.
1513
+ """
1514
+ return pulumi.get(self, "base_name")
1515
+
1516
+ @base_name.setter
1517
+ def base_name(self, value: pulumi.Input[str]):
1518
+ pulumi.set(self, "base_name", value)
1519
+
1520
+ @property
1521
+ @pulumi.getter(name="cloudProviderName")
1522
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1523
+ """
1524
+ The name of the cloud provider to connect with.
1525
+ """
1526
+ return pulumi.get(self, "cloud_provider_name")
1527
+
1528
+ @cloud_provider_name.setter
1529
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1530
+ pulumi.set(self, "cloud_provider_name", value)
1531
+
1532
+ @property
1533
+ @pulumi.getter(name="deploymentType")
1534
+ def deployment_type(self) -> pulumi.Input[str]:
1535
+ """
1536
+ The type of deployment. Valid options are NATIVE_VMSS
1537
+ """
1538
+ return pulumi.get(self, "deployment_type")
1539
+
1540
+ @deployment_type.setter
1541
+ def deployment_type(self, value: pulumi.Input[str]):
1542
+ pulumi.set(self, "deployment_type", value)
1543
+
1544
+ @property
1545
+ @pulumi.getter(name="resourceGroupName")
1546
+ def resource_group_name(self) -> pulumi.Input[str]:
1547
+ """
1548
+ The name of the resource group.
1549
+ """
1550
+ return pulumi.get(self, "resource_group_name")
1551
+
1552
+ @resource_group_name.setter
1553
+ def resource_group_name(self, value: pulumi.Input[str]):
1554
+ pulumi.set(self, "resource_group_name", value)
1555
+
1556
+ @property
1557
+ @pulumi.getter(name="subscriptionId")
1558
+ def subscription_id(self) -> pulumi.Input[str]:
1559
+ """
1560
+ The unique id of the azure subscription.
1561
+ """
1562
+ return pulumi.get(self, "subscription_id")
1563
+
1564
+ @subscription_id.setter
1565
+ def subscription_id(self, value: pulumi.Input[str]):
1566
+ pulumi.set(self, "subscription_id", value)
1567
+
1568
+ @property
1569
+ @pulumi.getter
1570
+ def username(self) -> pulumi.Input[str]:
1571
+ """
1572
+ The username to connect with.
1573
+ """
1574
+ return pulumi.get(self, "username")
1575
+
1576
+ @username.setter
1577
+ def username(self, value: pulumi.Input[str]):
1578
+ pulumi.set(self, "username", value)
1579
+
1580
+ @property
1581
+ @pulumi.getter(name="hostConnectionAttrsName")
1582
+ def host_connection_attrs_name(self) -> Optional[pulumi.Input[str]]:
1583
+ """
1584
+ The name of the host connection attributes to use.
1585
+ """
1586
+ return pulumi.get(self, "host_connection_attrs_name")
1587
+
1588
+ @host_connection_attrs_name.setter
1589
+ def host_connection_attrs_name(self, value: Optional[pulumi.Input[str]]):
1590
+ pulumi.set(self, "host_connection_attrs_name", value)
1591
+
1592
+
1593
+ if not MYPY:
1594
+ class InfrastructureDefinitionAzureWebappArgsDict(TypedDict):
1595
+ cloud_provider_name: pulumi.Input[str]
1596
+ """
1597
+ The name of the cloud provider to connect with.
1598
+ """
1599
+ resource_group: pulumi.Input[str]
1600
+ """
1601
+ The name of the resource group.
1602
+ """
1603
+ subscription_id: pulumi.Input[str]
1604
+ """
1605
+ The unique id of the azure subscription.
1606
+ """
1607
+ elif False:
1608
+ InfrastructureDefinitionAzureWebappArgsDict: TypeAlias = Mapping[str, Any]
1609
+
1610
+ @pulumi.input_type
1611
+ class InfrastructureDefinitionAzureWebappArgs:
1612
+ def __init__(__self__, *,
1613
+ cloud_provider_name: pulumi.Input[str],
1614
+ resource_group: pulumi.Input[str],
1615
+ subscription_id: pulumi.Input[str]):
1616
+ """
1617
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1618
+ :param pulumi.Input[str] resource_group: The name of the resource group.
1619
+ :param pulumi.Input[str] subscription_id: The unique id of the azure subscription.
1620
+ """
1621
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1622
+ pulumi.set(__self__, "resource_group", resource_group)
1623
+ pulumi.set(__self__, "subscription_id", subscription_id)
1624
+
1625
+ @property
1626
+ @pulumi.getter(name="cloudProviderName")
1627
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1628
+ """
1629
+ The name of the cloud provider to connect with.
1630
+ """
1631
+ return pulumi.get(self, "cloud_provider_name")
1632
+
1633
+ @cloud_provider_name.setter
1634
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1635
+ pulumi.set(self, "cloud_provider_name", value)
1636
+
1637
+ @property
1638
+ @pulumi.getter(name="resourceGroup")
1639
+ def resource_group(self) -> pulumi.Input[str]:
1640
+ """
1641
+ The name of the resource group.
1642
+ """
1643
+ return pulumi.get(self, "resource_group")
1644
+
1645
+ @resource_group.setter
1646
+ def resource_group(self, value: pulumi.Input[str]):
1647
+ pulumi.set(self, "resource_group", value)
1648
+
1649
+ @property
1650
+ @pulumi.getter(name="subscriptionId")
1651
+ def subscription_id(self) -> pulumi.Input[str]:
1652
+ """
1653
+ The unique id of the azure subscription.
1654
+ """
1655
+ return pulumi.get(self, "subscription_id")
1656
+
1657
+ @subscription_id.setter
1658
+ def subscription_id(self, value: pulumi.Input[str]):
1659
+ pulumi.set(self, "subscription_id", value)
1660
+
1661
+
1662
+ if not MYPY:
1663
+ class InfrastructureDefinitionCustomArgsDict(TypedDict):
1664
+ deployment_type_template_version: pulumi.Input[str]
1665
+ """
1666
+ The template version
1667
+ """
1668
+ variables: NotRequired[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionCustomVariableArgsDict']]]]
1669
+ """
1670
+ Variables to be used in the service
1671
+ """
1672
+ elif False:
1673
+ InfrastructureDefinitionCustomArgsDict: TypeAlias = Mapping[str, Any]
1674
+
1675
+ @pulumi.input_type
1676
+ class InfrastructureDefinitionCustomArgs:
1677
+ def __init__(__self__, *,
1678
+ deployment_type_template_version: pulumi.Input[str],
1679
+ variables: Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionCustomVariableArgs']]]] = None):
1680
+ """
1681
+ :param pulumi.Input[str] deployment_type_template_version: The template version
1682
+ :param pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionCustomVariableArgs']]] variables: Variables to be used in the service
1683
+ """
1684
+ pulumi.set(__self__, "deployment_type_template_version", deployment_type_template_version)
1685
+ if variables is not None:
1686
+ pulumi.set(__self__, "variables", variables)
1687
+
1688
+ @property
1689
+ @pulumi.getter(name="deploymentTypeTemplateVersion")
1690
+ def deployment_type_template_version(self) -> pulumi.Input[str]:
1691
+ """
1692
+ The template version
1693
+ """
1694
+ return pulumi.get(self, "deployment_type_template_version")
1695
+
1696
+ @deployment_type_template_version.setter
1697
+ def deployment_type_template_version(self, value: pulumi.Input[str]):
1698
+ pulumi.set(self, "deployment_type_template_version", value)
1699
+
1700
+ @property
1701
+ @pulumi.getter
1702
+ def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionCustomVariableArgs']]]]:
1703
+ """
1704
+ Variables to be used in the service
1705
+ """
1706
+ return pulumi.get(self, "variables")
1707
+
1708
+ @variables.setter
1709
+ def variables(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfrastructureDefinitionCustomVariableArgs']]]]):
1710
+ pulumi.set(self, "variables", value)
1711
+
1712
+
1713
+ if not MYPY:
1714
+ class InfrastructureDefinitionCustomVariableArgsDict(TypedDict):
1715
+ name: pulumi.Input[str]
1716
+ """
1717
+ Name of the variable
1718
+ """
1719
+ value: pulumi.Input[str]
1720
+ """
1721
+ Value of the variable
1722
+ """
1723
+ elif False:
1724
+ InfrastructureDefinitionCustomVariableArgsDict: TypeAlias = Mapping[str, Any]
1725
+
1726
+ @pulumi.input_type
1727
+ class InfrastructureDefinitionCustomVariableArgs:
1728
+ def __init__(__self__, *,
1729
+ name: pulumi.Input[str],
1730
+ value: pulumi.Input[str]):
1731
+ """
1732
+ :param pulumi.Input[str] name: Name of the variable
1733
+ :param pulumi.Input[str] value: Value of the variable
1734
+ """
1735
+ pulumi.set(__self__, "name", name)
1736
+ pulumi.set(__self__, "value", value)
1737
+
1738
+ @property
1739
+ @pulumi.getter
1740
+ def name(self) -> pulumi.Input[str]:
1741
+ """
1742
+ Name of the variable
1743
+ """
1744
+ return pulumi.get(self, "name")
1745
+
1746
+ @name.setter
1747
+ def name(self, value: pulumi.Input[str]):
1748
+ pulumi.set(self, "name", value)
1749
+
1750
+ @property
1751
+ @pulumi.getter
1752
+ def value(self) -> pulumi.Input[str]:
1753
+ """
1754
+ Value of the variable
1755
+ """
1756
+ return pulumi.get(self, "value")
1757
+
1758
+ @value.setter
1759
+ def value(self, value: pulumi.Input[str]):
1760
+ pulumi.set(self, "value", value)
1761
+
1762
+
1763
+ if not MYPY:
1764
+ class InfrastructureDefinitionDatacenterSshArgsDict(TypedDict):
1765
+ cloud_provider_name: pulumi.Input[str]
1766
+ """
1767
+ The name of the cloud provider to connect with.
1768
+ """
1769
+ host_connection_attributes_name: pulumi.Input[str]
1770
+ """
1771
+ The name of the SSH connection attributes to use.
1772
+ """
1773
+ hostnames: pulumi.Input[Sequence[pulumi.Input[str]]]
1774
+ """
1775
+ A list of hosts to deploy to.
1776
+ """
1777
+ elif False:
1778
+ InfrastructureDefinitionDatacenterSshArgsDict: TypeAlias = Mapping[str, Any]
1779
+
1780
+ @pulumi.input_type
1781
+ class InfrastructureDefinitionDatacenterSshArgs:
1782
+ def __init__(__self__, *,
1783
+ cloud_provider_name: pulumi.Input[str],
1784
+ host_connection_attributes_name: pulumi.Input[str],
1785
+ hostnames: pulumi.Input[Sequence[pulumi.Input[str]]]):
1786
+ """
1787
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1788
+ :param pulumi.Input[str] host_connection_attributes_name: The name of the SSH connection attributes to use.
1789
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hostnames: A list of hosts to deploy to.
1790
+ """
1791
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1792
+ pulumi.set(__self__, "host_connection_attributes_name", host_connection_attributes_name)
1793
+ pulumi.set(__self__, "hostnames", hostnames)
1794
+
1795
+ @property
1796
+ @pulumi.getter(name="cloudProviderName")
1797
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1798
+ """
1799
+ The name of the cloud provider to connect with.
1800
+ """
1801
+ return pulumi.get(self, "cloud_provider_name")
1802
+
1803
+ @cloud_provider_name.setter
1804
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1805
+ pulumi.set(self, "cloud_provider_name", value)
1806
+
1807
+ @property
1808
+ @pulumi.getter(name="hostConnectionAttributesName")
1809
+ def host_connection_attributes_name(self) -> pulumi.Input[str]:
1810
+ """
1811
+ The name of the SSH connection attributes to use.
1812
+ """
1813
+ return pulumi.get(self, "host_connection_attributes_name")
1814
+
1815
+ @host_connection_attributes_name.setter
1816
+ def host_connection_attributes_name(self, value: pulumi.Input[str]):
1817
+ pulumi.set(self, "host_connection_attributes_name", value)
1818
+
1819
+ @property
1820
+ @pulumi.getter
1821
+ def hostnames(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
1822
+ """
1823
+ A list of hosts to deploy to.
1824
+ """
1825
+ return pulumi.get(self, "hostnames")
1826
+
1827
+ @hostnames.setter
1828
+ def hostnames(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
1829
+ pulumi.set(self, "hostnames", value)
1830
+
1831
+
1832
+ if not MYPY:
1833
+ class InfrastructureDefinitionDatacenterWinrmArgsDict(TypedDict):
1834
+ cloud_provider_name: pulumi.Input[str]
1835
+ """
1836
+ The name of the cloud provider to connect with.
1837
+ """
1838
+ hostnames: pulumi.Input[Sequence[pulumi.Input[str]]]
1839
+ """
1840
+ A list of hosts to deploy to.
1841
+ """
1842
+ winrm_connection_attributes_name: pulumi.Input[str]
1843
+ """
1844
+ The name of the WinRM connection attributes to use.
1845
+ """
1846
+ elif False:
1847
+ InfrastructureDefinitionDatacenterWinrmArgsDict: TypeAlias = Mapping[str, Any]
1848
+
1849
+ @pulumi.input_type
1850
+ class InfrastructureDefinitionDatacenterWinrmArgs:
1851
+ def __init__(__self__, *,
1852
+ cloud_provider_name: pulumi.Input[str],
1853
+ hostnames: pulumi.Input[Sequence[pulumi.Input[str]]],
1854
+ winrm_connection_attributes_name: pulumi.Input[str]):
1855
+ """
1856
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1857
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] hostnames: A list of hosts to deploy to.
1858
+ :param pulumi.Input[str] winrm_connection_attributes_name: The name of the WinRM connection attributes to use.
1859
+ """
1860
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1861
+ pulumi.set(__self__, "hostnames", hostnames)
1862
+ pulumi.set(__self__, "winrm_connection_attributes_name", winrm_connection_attributes_name)
1863
+
1864
+ @property
1865
+ @pulumi.getter(name="cloudProviderName")
1866
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1867
+ """
1868
+ The name of the cloud provider to connect with.
1869
+ """
1870
+ return pulumi.get(self, "cloud_provider_name")
1871
+
1872
+ @cloud_provider_name.setter
1873
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1874
+ pulumi.set(self, "cloud_provider_name", value)
1875
+
1876
+ @property
1877
+ @pulumi.getter
1878
+ def hostnames(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
1879
+ """
1880
+ A list of hosts to deploy to.
1881
+ """
1882
+ return pulumi.get(self, "hostnames")
1883
+
1884
+ @hostnames.setter
1885
+ def hostnames(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
1886
+ pulumi.set(self, "hostnames", value)
1887
+
1888
+ @property
1889
+ @pulumi.getter(name="winrmConnectionAttributesName")
1890
+ def winrm_connection_attributes_name(self) -> pulumi.Input[str]:
1891
+ """
1892
+ The name of the WinRM connection attributes to use.
1893
+ """
1894
+ return pulumi.get(self, "winrm_connection_attributes_name")
1895
+
1896
+ @winrm_connection_attributes_name.setter
1897
+ def winrm_connection_attributes_name(self, value: pulumi.Input[str]):
1898
+ pulumi.set(self, "winrm_connection_attributes_name", value)
1899
+
1900
+
1901
+ if not MYPY:
1902
+ class InfrastructureDefinitionKubernetesArgsDict(TypedDict):
1903
+ cloud_provider_name: pulumi.Input[str]
1904
+ """
1905
+ The name of the cloud provider to connect with.
1906
+ """
1907
+ namespace: pulumi.Input[str]
1908
+ """
1909
+ The namespace in Kubernetes to deploy to.
1910
+ """
1911
+ release_name: pulumi.Input[str]
1912
+ """
1913
+ The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}
1914
+ """
1915
+ elif False:
1916
+ InfrastructureDefinitionKubernetesArgsDict: TypeAlias = Mapping[str, Any]
1917
+
1918
+ @pulumi.input_type
1919
+ class InfrastructureDefinitionKubernetesArgs:
1920
+ def __init__(__self__, *,
1921
+ cloud_provider_name: pulumi.Input[str],
1922
+ namespace: pulumi.Input[str],
1923
+ release_name: pulumi.Input[str]):
1924
+ """
1925
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
1926
+ :param pulumi.Input[str] namespace: The namespace in Kubernetes to deploy to.
1927
+ :param pulumi.Input[str] release_name: The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}
1928
+ """
1929
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1930
+ pulumi.set(__self__, "namespace", namespace)
1931
+ pulumi.set(__self__, "release_name", release_name)
1932
+
1933
+ @property
1934
+ @pulumi.getter(name="cloudProviderName")
1935
+ def cloud_provider_name(self) -> pulumi.Input[str]:
1936
+ """
1937
+ The name of the cloud provider to connect with.
1938
+ """
1939
+ return pulumi.get(self, "cloud_provider_name")
1940
+
1941
+ @cloud_provider_name.setter
1942
+ def cloud_provider_name(self, value: pulumi.Input[str]):
1943
+ pulumi.set(self, "cloud_provider_name", value)
1944
+
1945
+ @property
1946
+ @pulumi.getter
1947
+ def namespace(self) -> pulumi.Input[str]:
1948
+ """
1949
+ The namespace in Kubernetes to deploy to.
1950
+ """
1951
+ return pulumi.get(self, "namespace")
1952
+
1953
+ @namespace.setter
1954
+ def namespace(self, value: pulumi.Input[str]):
1955
+ pulumi.set(self, "namespace", value)
1956
+
1957
+ @property
1958
+ @pulumi.getter(name="releaseName")
1959
+ def release_name(self) -> pulumi.Input[str]:
1960
+ """
1961
+ The naming convention of the release. When using Helm Native the default is ${infra.kubernetes.infraId}. For standard Kubernetes manifests the default is release-${infra.kubernetes.infraId}
1962
+ """
1963
+ return pulumi.get(self, "release_name")
1964
+
1965
+ @release_name.setter
1966
+ def release_name(self, value: pulumi.Input[str]):
1967
+ pulumi.set(self, "release_name", value)
1968
+
1969
+
1970
+ if not MYPY:
1971
+ class InfrastructureDefinitionKubernetesGcpArgsDict(TypedDict):
1972
+ cloud_provider_name: pulumi.Input[str]
1973
+ """
1974
+ The name of the cloud provider to connect with.
1975
+ """
1976
+ cluster_name: pulumi.Input[str]
1977
+ """
1978
+ The name of the cluster being deployed to.
1979
+ """
1980
+ namespace: pulumi.Input[str]
1981
+ """
1982
+ The namespace in Kubernetes to deploy to.
1983
+ """
1984
+ release_name: pulumi.Input[str]
1985
+ """
1986
+ The naming convention of the release.
1987
+ """
1988
+ elif False:
1989
+ InfrastructureDefinitionKubernetesGcpArgsDict: TypeAlias = Mapping[str, Any]
1990
+
1991
+ @pulumi.input_type
1992
+ class InfrastructureDefinitionKubernetesGcpArgs:
1993
+ def __init__(__self__, *,
1994
+ cloud_provider_name: pulumi.Input[str],
1995
+ cluster_name: pulumi.Input[str],
1996
+ namespace: pulumi.Input[str],
1997
+ release_name: pulumi.Input[str]):
1998
+ """
1999
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
2000
+ :param pulumi.Input[str] cluster_name: The name of the cluster being deployed to.
2001
+ :param pulumi.Input[str] namespace: The namespace in Kubernetes to deploy to.
2002
+ :param pulumi.Input[str] release_name: The naming convention of the release.
2003
+ """
2004
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
2005
+ pulumi.set(__self__, "cluster_name", cluster_name)
2006
+ pulumi.set(__self__, "namespace", namespace)
2007
+ pulumi.set(__self__, "release_name", release_name)
2008
+
2009
+ @property
2010
+ @pulumi.getter(name="cloudProviderName")
2011
+ def cloud_provider_name(self) -> pulumi.Input[str]:
2012
+ """
2013
+ The name of the cloud provider to connect with.
2014
+ """
2015
+ return pulumi.get(self, "cloud_provider_name")
2016
+
2017
+ @cloud_provider_name.setter
2018
+ def cloud_provider_name(self, value: pulumi.Input[str]):
2019
+ pulumi.set(self, "cloud_provider_name", value)
2020
+
2021
+ @property
2022
+ @pulumi.getter(name="clusterName")
2023
+ def cluster_name(self) -> pulumi.Input[str]:
2024
+ """
2025
+ The name of the cluster being deployed to.
2026
+ """
2027
+ return pulumi.get(self, "cluster_name")
2028
+
2029
+ @cluster_name.setter
2030
+ def cluster_name(self, value: pulumi.Input[str]):
2031
+ pulumi.set(self, "cluster_name", value)
2032
+
2033
+ @property
2034
+ @pulumi.getter
2035
+ def namespace(self) -> pulumi.Input[str]:
2036
+ """
2037
+ The namespace in Kubernetes to deploy to.
2038
+ """
2039
+ return pulumi.get(self, "namespace")
2040
+
2041
+ @namespace.setter
2042
+ def namespace(self, value: pulumi.Input[str]):
2043
+ pulumi.set(self, "namespace", value)
2044
+
2045
+ @property
2046
+ @pulumi.getter(name="releaseName")
2047
+ def release_name(self) -> pulumi.Input[str]:
2048
+ """
2049
+ The naming convention of the release.
2050
+ """
2051
+ return pulumi.get(self, "release_name")
2052
+
2053
+ @release_name.setter
2054
+ def release_name(self, value: pulumi.Input[str]):
2055
+ pulumi.set(self, "release_name", value)
2056
+
2057
+
2058
+ if not MYPY:
2059
+ class InfrastructureDefinitionTanzuArgsDict(TypedDict):
2060
+ cloud_provider_name: pulumi.Input[str]
2061
+ """
2062
+ The name of the cloud provider to connect with.
2063
+ """
2064
+ organization: pulumi.Input[str]
2065
+ """
2066
+ The PCF organization to use.
2067
+ """
2068
+ space: pulumi.Input[str]
2069
+ """
2070
+ The PCF space to deploy to.
2071
+ """
2072
+ elif False:
2073
+ InfrastructureDefinitionTanzuArgsDict: TypeAlias = Mapping[str, Any]
2074
+
2075
+ @pulumi.input_type
2076
+ class InfrastructureDefinitionTanzuArgs:
2077
+ def __init__(__self__, *,
2078
+ cloud_provider_name: pulumi.Input[str],
2079
+ organization: pulumi.Input[str],
2080
+ space: pulumi.Input[str]):
2081
+ """
2082
+ :param pulumi.Input[str] cloud_provider_name: The name of the cloud provider to connect with.
2083
+ :param pulumi.Input[str] organization: The PCF organization to use.
2084
+ :param pulumi.Input[str] space: The PCF space to deploy to.
2085
+ """
2086
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
2087
+ pulumi.set(__self__, "organization", organization)
2088
+ pulumi.set(__self__, "space", space)
2089
+
2090
+ @property
2091
+ @pulumi.getter(name="cloudProviderName")
2092
+ def cloud_provider_name(self) -> pulumi.Input[str]:
2093
+ """
2094
+ The name of the cloud provider to connect with.
2095
+ """
2096
+ return pulumi.get(self, "cloud_provider_name")
2097
+
2098
+ @cloud_provider_name.setter
2099
+ def cloud_provider_name(self, value: pulumi.Input[str]):
2100
+ pulumi.set(self, "cloud_provider_name", value)
2101
+
2102
+ @property
2103
+ @pulumi.getter
2104
+ def organization(self) -> pulumi.Input[str]:
2105
+ """
2106
+ The PCF organization to use.
2107
+ """
2108
+ return pulumi.get(self, "organization")
2109
+
2110
+ @organization.setter
2111
+ def organization(self, value: pulumi.Input[str]):
2112
+ pulumi.set(self, "organization", value)
2113
+
2114
+ @property
2115
+ @pulumi.getter
2116
+ def space(self) -> pulumi.Input[str]:
2117
+ """
2118
+ The PCF space to deploy to.
2119
+ """
2120
+ return pulumi.get(self, "space")
2121
+
2122
+ @space.setter
2123
+ def space(self, value: pulumi.Input[str]):
2124
+ pulumi.set(self, "space", value)
2125
+
2126
+
2127
+ if not MYPY:
2128
+ class PlatformCcmFiltersFilterPropertiesArgsDict(TypedDict):
2129
+ filter_type: pulumi.Input[str]
2130
+ """
2131
+ Type of CCM filters.
2132
+ """
2133
+ tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2134
+ """
2135
+ Tags to associate with the resource. Tags should be in the form `name:value`.
2136
+ """
2137
+ elif False:
2138
+ PlatformCcmFiltersFilterPropertiesArgsDict: TypeAlias = Mapping[str, Any]
2139
+
2140
+ @pulumi.input_type
2141
+ class PlatformCcmFiltersFilterPropertiesArgs:
2142
+ def __init__(__self__, *,
2143
+ filter_type: pulumi.Input[str],
2144
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
2145
+ """
2146
+ :param pulumi.Input[str] filter_type: Type of CCM filters.
2147
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags to associate with the resource. Tags should be in the form `name:value`.
2148
+ """
2149
+ pulumi.set(__self__, "filter_type", filter_type)
2150
+ if tags is not None:
2151
+ pulumi.set(__self__, "tags", tags)
2152
+
2153
+ @property
2154
+ @pulumi.getter(name="filterType")
2155
+ def filter_type(self) -> pulumi.Input[str]:
2156
+ """
2157
+ Type of CCM filters.
2158
+ """
2159
+ return pulumi.get(self, "filter_type")
2160
+
2161
+ @filter_type.setter
2162
+ def filter_type(self, value: pulumi.Input[str]):
2163
+ pulumi.set(self, "filter_type", value)
2164
+
2165
+ @property
2166
+ @pulumi.getter
2167
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2168
+ """
2169
+ Tags to associate with the resource. Tags should be in the form `name:value`.
2170
+ """
2171
+ return pulumi.get(self, "tags")
2172
+
2173
+ @tags.setter
2174
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2175
+ pulumi.set(self, "tags", value)
2176
+
2177
+
2178
+ if not MYPY:
2179
+ class SshCredentialKerberosAuthenticationArgsDict(TypedDict):
2180
+ port: pulumi.Input[int]
2181
+ """
2182
+ Port to use for Kerberos authentication
2183
+ """
2184
+ principal: pulumi.Input[str]
2185
+ """
2186
+ Name of the principal for authentication
2187
+ """
2188
+ realm: pulumi.Input[str]
2189
+ """
2190
+ Realm associated with the Kerberos authentication
2191
+ """
2192
+ tgt_generation_method: NotRequired[pulumi.Input['SshCredentialKerberosAuthenticationTgtGenerationMethodArgsDict']]
2193
+ """
2194
+ TGT generation method
2195
+ """
2196
+ elif False:
2197
+ SshCredentialKerberosAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
2198
+
2199
+ @pulumi.input_type
2200
+ class SshCredentialKerberosAuthenticationArgs:
2201
+ def __init__(__self__, *,
2202
+ port: pulumi.Input[int],
2203
+ principal: pulumi.Input[str],
2204
+ realm: pulumi.Input[str],
2205
+ tgt_generation_method: Optional[pulumi.Input['SshCredentialKerberosAuthenticationTgtGenerationMethodArgs']] = None):
2206
+ """
2207
+ :param pulumi.Input[int] port: Port to use for Kerberos authentication
2208
+ :param pulumi.Input[str] principal: Name of the principal for authentication
2209
+ :param pulumi.Input[str] realm: Realm associated with the Kerberos authentication
2210
+ :param pulumi.Input['SshCredentialKerberosAuthenticationTgtGenerationMethodArgs'] tgt_generation_method: TGT generation method
2211
+ """
2212
+ pulumi.set(__self__, "port", port)
2213
+ pulumi.set(__self__, "principal", principal)
2214
+ pulumi.set(__self__, "realm", realm)
2215
+ if tgt_generation_method is not None:
2216
+ pulumi.set(__self__, "tgt_generation_method", tgt_generation_method)
2217
+
2218
+ @property
2219
+ @pulumi.getter
2220
+ def port(self) -> pulumi.Input[int]:
2221
+ """
2222
+ Port to use for Kerberos authentication
2223
+ """
2224
+ return pulumi.get(self, "port")
2225
+
2226
+ @port.setter
2227
+ def port(self, value: pulumi.Input[int]):
2228
+ pulumi.set(self, "port", value)
2229
+
2230
+ @property
2231
+ @pulumi.getter
2232
+ def principal(self) -> pulumi.Input[str]:
2233
+ """
2234
+ Name of the principal for authentication
2235
+ """
2236
+ return pulumi.get(self, "principal")
2237
+
2238
+ @principal.setter
2239
+ def principal(self, value: pulumi.Input[str]):
2240
+ pulumi.set(self, "principal", value)
2241
+
2242
+ @property
2243
+ @pulumi.getter
2244
+ def realm(self) -> pulumi.Input[str]:
2245
+ """
2246
+ Realm associated with the Kerberos authentication
2247
+ """
2248
+ return pulumi.get(self, "realm")
2249
+
2250
+ @realm.setter
2251
+ def realm(self, value: pulumi.Input[str]):
2252
+ pulumi.set(self, "realm", value)
2253
+
2254
+ @property
2255
+ @pulumi.getter(name="tgtGenerationMethod")
2256
+ def tgt_generation_method(self) -> Optional[pulumi.Input['SshCredentialKerberosAuthenticationTgtGenerationMethodArgs']]:
2257
+ """
2258
+ TGT generation method
2259
+ """
2260
+ return pulumi.get(self, "tgt_generation_method")
2261
+
2262
+ @tgt_generation_method.setter
2263
+ def tgt_generation_method(self, value: Optional[pulumi.Input['SshCredentialKerberosAuthenticationTgtGenerationMethodArgs']]):
2264
+ pulumi.set(self, "tgt_generation_method", value)
2265
+
2266
+
2267
+ if not MYPY:
2268
+ class SshCredentialKerberosAuthenticationTgtGenerationMethodArgsDict(TypedDict):
2269
+ kerberos_password_id: NotRequired[pulumi.Input[str]]
2270
+ """
2271
+ The id of the encrypted text secret
2272
+ """
2273
+ key_tab_file_path: NotRequired[pulumi.Input[str]]
2274
+ """
2275
+ The path to the key tab file
2276
+ """
2277
+ elif False:
2278
+ SshCredentialKerberosAuthenticationTgtGenerationMethodArgsDict: TypeAlias = Mapping[str, Any]
2279
+
2280
+ @pulumi.input_type
2281
+ class SshCredentialKerberosAuthenticationTgtGenerationMethodArgs:
2282
+ def __init__(__self__, *,
2283
+ kerberos_password_id: Optional[pulumi.Input[str]] = None,
2284
+ key_tab_file_path: Optional[pulumi.Input[str]] = None):
2285
+ """
2286
+ :param pulumi.Input[str] kerberos_password_id: The id of the encrypted text secret
2287
+ :param pulumi.Input[str] key_tab_file_path: The path to the key tab file
2288
+ """
2289
+ if kerberos_password_id is not None:
2290
+ pulumi.set(__self__, "kerberos_password_id", kerberos_password_id)
2291
+ if key_tab_file_path is not None:
2292
+ pulumi.set(__self__, "key_tab_file_path", key_tab_file_path)
2293
+
2294
+ @property
2295
+ @pulumi.getter(name="kerberosPasswordId")
2296
+ def kerberos_password_id(self) -> Optional[pulumi.Input[str]]:
2297
+ """
2298
+ The id of the encrypted text secret
2299
+ """
2300
+ return pulumi.get(self, "kerberos_password_id")
2301
+
2302
+ @kerberos_password_id.setter
2303
+ def kerberos_password_id(self, value: Optional[pulumi.Input[str]]):
2304
+ pulumi.set(self, "kerberos_password_id", value)
2305
+
2306
+ @property
2307
+ @pulumi.getter(name="keyTabFilePath")
2308
+ def key_tab_file_path(self) -> Optional[pulumi.Input[str]]:
2309
+ """
2310
+ The path to the key tab file
2311
+ """
2312
+ return pulumi.get(self, "key_tab_file_path")
2313
+
2314
+ @key_tab_file_path.setter
2315
+ def key_tab_file_path(self, value: Optional[pulumi.Input[str]]):
2316
+ pulumi.set(self, "key_tab_file_path", value)
2317
+
2318
+
2319
+ if not MYPY:
2320
+ class SshCredentialSshAuthenticationArgsDict(TypedDict):
2321
+ port: pulumi.Input[int]
2322
+ """
2323
+ The port to connect to
2324
+ """
2325
+ username: pulumi.Input[str]
2326
+ """
2327
+ The username to use when connecting to ssh
2328
+ """
2329
+ inline_ssh: NotRequired[pulumi.Input['SshCredentialSshAuthenticationInlineSshArgsDict']]
2330
+ """
2331
+ Inline SSH authentication configuration. Only ond of `passphrase_secret_id` or `ssh_key_file_id` should be used
2332
+ """
2333
+ server_password: NotRequired[pulumi.Input['SshCredentialSshAuthenticationServerPasswordArgsDict']]
2334
+ """
2335
+ Server password authentication configuration
2336
+ """
2337
+ ssh_key_file: NotRequired[pulumi.Input['SshCredentialSshAuthenticationSshKeyFileArgsDict']]
2338
+ """
2339
+ Use ssh key file for authentication
2340
+ """
2341
+ elif False:
2342
+ SshCredentialSshAuthenticationArgsDict: TypeAlias = Mapping[str, Any]
2343
+
2344
+ @pulumi.input_type
2345
+ class SshCredentialSshAuthenticationArgs:
2346
+ def __init__(__self__, *,
2347
+ port: pulumi.Input[int],
2348
+ username: pulumi.Input[str],
2349
+ inline_ssh: Optional[pulumi.Input['SshCredentialSshAuthenticationInlineSshArgs']] = None,
2350
+ server_password: Optional[pulumi.Input['SshCredentialSshAuthenticationServerPasswordArgs']] = None,
2351
+ ssh_key_file: Optional[pulumi.Input['SshCredentialSshAuthenticationSshKeyFileArgs']] = None):
2352
+ """
2353
+ :param pulumi.Input[int] port: The port to connect to
2354
+ :param pulumi.Input[str] username: The username to use when connecting to ssh
2355
+ :param pulumi.Input['SshCredentialSshAuthenticationInlineSshArgs'] inline_ssh: Inline SSH authentication configuration. Only ond of `passphrase_secret_id` or `ssh_key_file_id` should be used
2356
+ :param pulumi.Input['SshCredentialSshAuthenticationServerPasswordArgs'] server_password: Server password authentication configuration
2357
+ :param pulumi.Input['SshCredentialSshAuthenticationSshKeyFileArgs'] ssh_key_file: Use ssh key file for authentication
2358
+ """
2359
+ pulumi.set(__self__, "port", port)
2360
+ pulumi.set(__self__, "username", username)
2361
+ if inline_ssh is not None:
2362
+ pulumi.set(__self__, "inline_ssh", inline_ssh)
2363
+ if server_password is not None:
2364
+ pulumi.set(__self__, "server_password", server_password)
2365
+ if ssh_key_file is not None:
2366
+ pulumi.set(__self__, "ssh_key_file", ssh_key_file)
2367
+
2368
+ @property
2369
+ @pulumi.getter
2370
+ def port(self) -> pulumi.Input[int]:
2371
+ """
2372
+ The port to connect to
2373
+ """
2374
+ return pulumi.get(self, "port")
2375
+
2376
+ @port.setter
2377
+ def port(self, value: pulumi.Input[int]):
2378
+ pulumi.set(self, "port", value)
2379
+
2380
+ @property
2381
+ @pulumi.getter
2382
+ def username(self) -> pulumi.Input[str]:
2383
+ """
2384
+ The username to use when connecting to ssh
2385
+ """
2386
+ return pulumi.get(self, "username")
2387
+
2388
+ @username.setter
2389
+ def username(self, value: pulumi.Input[str]):
2390
+ pulumi.set(self, "username", value)
2391
+
2392
+ @property
2393
+ @pulumi.getter(name="inlineSsh")
2394
+ def inline_ssh(self) -> Optional[pulumi.Input['SshCredentialSshAuthenticationInlineSshArgs']]:
2395
+ """
2396
+ Inline SSH authentication configuration. Only ond of `passphrase_secret_id` or `ssh_key_file_id` should be used
2397
+ """
2398
+ return pulumi.get(self, "inline_ssh")
2399
+
2400
+ @inline_ssh.setter
2401
+ def inline_ssh(self, value: Optional[pulumi.Input['SshCredentialSshAuthenticationInlineSshArgs']]):
2402
+ pulumi.set(self, "inline_ssh", value)
2403
+
2404
+ @property
2405
+ @pulumi.getter(name="serverPassword")
2406
+ def server_password(self) -> Optional[pulumi.Input['SshCredentialSshAuthenticationServerPasswordArgs']]:
2407
+ """
2408
+ Server password authentication configuration
2409
+ """
2410
+ return pulumi.get(self, "server_password")
2411
+
2412
+ @server_password.setter
2413
+ def server_password(self, value: Optional[pulumi.Input['SshCredentialSshAuthenticationServerPasswordArgs']]):
2414
+ pulumi.set(self, "server_password", value)
2415
+
2416
+ @property
2417
+ @pulumi.getter(name="sshKeyFile")
2418
+ def ssh_key_file(self) -> Optional[pulumi.Input['SshCredentialSshAuthenticationSshKeyFileArgs']]:
2419
+ """
2420
+ Use ssh key file for authentication
2421
+ """
2422
+ return pulumi.get(self, "ssh_key_file")
2423
+
2424
+ @ssh_key_file.setter
2425
+ def ssh_key_file(self, value: Optional[pulumi.Input['SshCredentialSshAuthenticationSshKeyFileArgs']]):
2426
+ pulumi.set(self, "ssh_key_file", value)
2427
+
2428
+
2429
+ if not MYPY:
2430
+ class SshCredentialSshAuthenticationInlineSshArgsDict(TypedDict):
2431
+ ssh_key_file_id: pulumi.Input[str]
2432
+ """
2433
+ The id of the secret containing the SSH key
2434
+ """
2435
+ passphrase_secret_id: NotRequired[pulumi.Input[str]]
2436
+ """
2437
+ The id of the encrypted secret to use
2438
+ """
2439
+ elif False:
2440
+ SshCredentialSshAuthenticationInlineSshArgsDict: TypeAlias = Mapping[str, Any]
2441
+
2442
+ @pulumi.input_type
2443
+ class SshCredentialSshAuthenticationInlineSshArgs:
2444
+ def __init__(__self__, *,
2445
+ ssh_key_file_id: pulumi.Input[str],
2446
+ passphrase_secret_id: Optional[pulumi.Input[str]] = None):
2447
+ """
2448
+ :param pulumi.Input[str] ssh_key_file_id: The id of the secret containing the SSH key
2449
+ :param pulumi.Input[str] passphrase_secret_id: The id of the encrypted secret to use
2450
+ """
2451
+ pulumi.set(__self__, "ssh_key_file_id", ssh_key_file_id)
2452
+ if passphrase_secret_id is not None:
2453
+ pulumi.set(__self__, "passphrase_secret_id", passphrase_secret_id)
2454
+
2455
+ @property
2456
+ @pulumi.getter(name="sshKeyFileId")
2457
+ def ssh_key_file_id(self) -> pulumi.Input[str]:
2458
+ """
2459
+ The id of the secret containing the SSH key
2460
+ """
2461
+ return pulumi.get(self, "ssh_key_file_id")
2462
+
2463
+ @ssh_key_file_id.setter
2464
+ def ssh_key_file_id(self, value: pulumi.Input[str]):
2465
+ pulumi.set(self, "ssh_key_file_id", value)
2466
+
2467
+ @property
2468
+ @pulumi.getter(name="passphraseSecretId")
2469
+ def passphrase_secret_id(self) -> Optional[pulumi.Input[str]]:
2470
+ """
2471
+ The id of the encrypted secret to use
2472
+ """
2473
+ return pulumi.get(self, "passphrase_secret_id")
2474
+
2475
+ @passphrase_secret_id.setter
2476
+ def passphrase_secret_id(self, value: Optional[pulumi.Input[str]]):
2477
+ pulumi.set(self, "passphrase_secret_id", value)
2478
+
2479
+
2480
+ if not MYPY:
2481
+ class SshCredentialSshAuthenticationServerPasswordArgsDict(TypedDict):
2482
+ password_secret_id: pulumi.Input[str]
2483
+ """
2484
+ The id of the encrypted secret
2485
+ """
2486
+ elif False:
2487
+ SshCredentialSshAuthenticationServerPasswordArgsDict: TypeAlias = Mapping[str, Any]
2488
+
2489
+ @pulumi.input_type
2490
+ class SshCredentialSshAuthenticationServerPasswordArgs:
2491
+ def __init__(__self__, *,
2492
+ password_secret_id: pulumi.Input[str]):
2493
+ """
2494
+ :param pulumi.Input[str] password_secret_id: The id of the encrypted secret
2495
+ """
2496
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
2497
+
2498
+ @property
2499
+ @pulumi.getter(name="passwordSecretId")
2500
+ def password_secret_id(self) -> pulumi.Input[str]:
2501
+ """
2502
+ The id of the encrypted secret
2503
+ """
2504
+ return pulumi.get(self, "password_secret_id")
2505
+
2506
+ @password_secret_id.setter
2507
+ def password_secret_id(self, value: pulumi.Input[str]):
2508
+ pulumi.set(self, "password_secret_id", value)
2509
+
2510
+
2511
+ if not MYPY:
2512
+ class SshCredentialSshAuthenticationSshKeyFileArgsDict(TypedDict):
2513
+ path: pulumi.Input[str]
2514
+ """
2515
+ The path to the key file on the delegate
2516
+ """
2517
+ passphrase_secret_id: NotRequired[pulumi.Input[str]]
2518
+ """
2519
+ The id of the secret containing the password to use for the ssh key
2520
+ """
2521
+ elif False:
2522
+ SshCredentialSshAuthenticationSshKeyFileArgsDict: TypeAlias = Mapping[str, Any]
2523
+
2524
+ @pulumi.input_type
2525
+ class SshCredentialSshAuthenticationSshKeyFileArgs:
2526
+ def __init__(__self__, *,
2527
+ path: pulumi.Input[str],
2528
+ passphrase_secret_id: Optional[pulumi.Input[str]] = None):
2529
+ """
2530
+ :param pulumi.Input[str] path: The path to the key file on the delegate
2531
+ :param pulumi.Input[str] passphrase_secret_id: The id of the secret containing the password to use for the ssh key
2532
+ """
2533
+ pulumi.set(__self__, "path", path)
2534
+ if passphrase_secret_id is not None:
2535
+ pulumi.set(__self__, "passphrase_secret_id", passphrase_secret_id)
2536
+
2537
+ @property
2538
+ @pulumi.getter
2539
+ def path(self) -> pulumi.Input[str]:
2540
+ """
2541
+ The path to the key file on the delegate
2542
+ """
2543
+ return pulumi.get(self, "path")
2544
+
2545
+ @path.setter
2546
+ def path(self, value: pulumi.Input[str]):
2547
+ pulumi.set(self, "path", value)
2548
+
2549
+ @property
2550
+ @pulumi.getter(name="passphraseSecretId")
2551
+ def passphrase_secret_id(self) -> Optional[pulumi.Input[str]]:
2552
+ """
2553
+ The id of the secret containing the password to use for the ssh key
2554
+ """
2555
+ return pulumi.get(self, "passphrase_secret_id")
2556
+
2557
+ @passphrase_secret_id.setter
2558
+ def passphrase_secret_id(self, value: Optional[pulumi.Input[str]]):
2559
+ pulumi.set(self, "passphrase_secret_id", value)
2560
+
2561
+
2562
+ if not MYPY:
2563
+ class SshCredentialUsageScopeArgsDict(TypedDict):
2564
+ application_id: NotRequired[pulumi.Input[str]]
2565
+ """
2566
+ Id of the application to scope to. If empty then this scope applies to all applications.
2567
+ """
2568
+ environment_filter_type: NotRequired[pulumi.Input[str]]
2569
+ """
2570
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2571
+ """
2572
+ environment_id: NotRequired[pulumi.Input[str]]
2573
+ """
2574
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2575
+ """
2576
+ elif False:
2577
+ SshCredentialUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
2578
+
2579
+ @pulumi.input_type
2580
+ class SshCredentialUsageScopeArgs:
2581
+ def __init__(__self__, *,
2582
+ application_id: Optional[pulumi.Input[str]] = None,
2583
+ environment_filter_type: Optional[pulumi.Input[str]] = None,
2584
+ environment_id: Optional[pulumi.Input[str]] = None):
2585
+ """
2586
+ :param pulumi.Input[str] application_id: Id of the application to scope to. If empty then this scope applies to all applications.
2587
+ :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.
2588
+ :param pulumi.Input[str] environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2589
+ """
2590
+ if application_id is not None:
2591
+ pulumi.set(__self__, "application_id", application_id)
2592
+ if environment_filter_type is not None:
2593
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
2594
+ if environment_id is not None:
2595
+ pulumi.set(__self__, "environment_id", environment_id)
2596
+
2597
+ @property
2598
+ @pulumi.getter(name="applicationId")
2599
+ def application_id(self) -> Optional[pulumi.Input[str]]:
2600
+ """
2601
+ Id of the application to scope to. If empty then this scope applies to all applications.
2602
+ """
2603
+ return pulumi.get(self, "application_id")
2604
+
2605
+ @application_id.setter
2606
+ def application_id(self, value: Optional[pulumi.Input[str]]):
2607
+ pulumi.set(self, "application_id", value)
2608
+
2609
+ @property
2610
+ @pulumi.getter(name="environmentFilterType")
2611
+ def environment_filter_type(self) -> Optional[pulumi.Input[str]]:
2612
+ """
2613
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2614
+ """
2615
+ return pulumi.get(self, "environment_filter_type")
2616
+
2617
+ @environment_filter_type.setter
2618
+ def environment_filter_type(self, value: Optional[pulumi.Input[str]]):
2619
+ pulumi.set(self, "environment_filter_type", value)
2620
+
2621
+ @property
2622
+ @pulumi.getter(name="environmentId")
2623
+ def environment_id(self) -> Optional[pulumi.Input[str]]:
2624
+ """
2625
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2626
+ """
2627
+ return pulumi.get(self, "environment_id")
2628
+
2629
+ @environment_id.setter
2630
+ def environment_id(self, value: Optional[pulumi.Input[str]]):
2631
+ pulumi.set(self, "environment_id", value)
2632
+
2633
+
2634
+ if not MYPY:
2635
+ class UserGroupLdapSettingsArgsDict(TypedDict):
2636
+ group_dn: NotRequired[pulumi.Input[str]]
2637
+ """
2638
+ The group DN of the LDAP user group.
2639
+ """
2640
+ group_name: NotRequired[pulumi.Input[str]]
2641
+ """
2642
+ The group name of the LDAP user group.
2643
+ """
2644
+ sso_provider_id: NotRequired[pulumi.Input[str]]
2645
+ """
2646
+ The ID of the SSO provider.
2647
+ """
2648
+ elif False:
2649
+ UserGroupLdapSettingsArgsDict: TypeAlias = Mapping[str, Any]
2650
+
2651
+ @pulumi.input_type
2652
+ class UserGroupLdapSettingsArgs:
2653
+ def __init__(__self__, *,
2654
+ group_dn: Optional[pulumi.Input[str]] = None,
2655
+ group_name: Optional[pulumi.Input[str]] = None,
2656
+ sso_provider_id: Optional[pulumi.Input[str]] = None):
2657
+ """
2658
+ :param pulumi.Input[str] group_dn: The group DN of the LDAP user group.
2659
+ :param pulumi.Input[str] group_name: The group name of the LDAP user group.
2660
+ :param pulumi.Input[str] sso_provider_id: The ID of the SSO provider.
2661
+ """
2662
+ if group_dn is not None:
2663
+ pulumi.set(__self__, "group_dn", group_dn)
2664
+ if group_name is not None:
2665
+ pulumi.set(__self__, "group_name", group_name)
2666
+ if sso_provider_id is not None:
2667
+ pulumi.set(__self__, "sso_provider_id", sso_provider_id)
2668
+
2669
+ @property
2670
+ @pulumi.getter(name="groupDn")
2671
+ def group_dn(self) -> Optional[pulumi.Input[str]]:
2672
+ """
2673
+ The group DN of the LDAP user group.
2674
+ """
2675
+ return pulumi.get(self, "group_dn")
2676
+
2677
+ @group_dn.setter
2678
+ def group_dn(self, value: Optional[pulumi.Input[str]]):
2679
+ pulumi.set(self, "group_dn", value)
2680
+
2681
+ @property
2682
+ @pulumi.getter(name="groupName")
2683
+ def group_name(self) -> Optional[pulumi.Input[str]]:
2684
+ """
2685
+ The group name of the LDAP user group.
2686
+ """
2687
+ return pulumi.get(self, "group_name")
2688
+
2689
+ @group_name.setter
2690
+ def group_name(self, value: Optional[pulumi.Input[str]]):
2691
+ pulumi.set(self, "group_name", value)
2692
+
2693
+ @property
2694
+ @pulumi.getter(name="ssoProviderId")
2695
+ def sso_provider_id(self) -> Optional[pulumi.Input[str]]:
2696
+ """
2697
+ The ID of the SSO provider.
2698
+ """
2699
+ return pulumi.get(self, "sso_provider_id")
2700
+
2701
+ @sso_provider_id.setter
2702
+ def sso_provider_id(self, value: Optional[pulumi.Input[str]]):
2703
+ pulumi.set(self, "sso_provider_id", value)
2704
+
2705
+
2706
+ if not MYPY:
2707
+ class UserGroupNotificationSettingsArgsDict(TypedDict):
2708
+ group_email_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2709
+ """
2710
+ The email addresses of the user group.
2711
+ """
2712
+ microsoft_teams_webhook_url: NotRequired[pulumi.Input[str]]
2713
+ """
2714
+ The Microsoft Teams webhook URL of the user group.
2715
+ """
2716
+ send_mail_to_new_members: NotRequired[pulumi.Input[bool]]
2717
+ """
2718
+ Indicates whether an email is sent when a new user is added to the group.
2719
+ """
2720
+ send_notifications_to_members: NotRequired[pulumi.Input[bool]]
2721
+ """
2722
+ Enable this setting to have notifications sent to the members of this group.
2723
+ """
2724
+ slack_channel: NotRequired[pulumi.Input[str]]
2725
+ """
2726
+ The Slack channel to send notifications to.
2727
+ """
2728
+ slack_webhook_url: NotRequired[pulumi.Input[str]]
2729
+ """
2730
+ The Slack webhook URL to send notifications to.
2731
+ """
2732
+ elif False:
2733
+ UserGroupNotificationSettingsArgsDict: TypeAlias = Mapping[str, Any]
2734
+
2735
+ @pulumi.input_type
2736
+ class UserGroupNotificationSettingsArgs:
2737
+ def __init__(__self__, *,
2738
+ group_email_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2739
+ microsoft_teams_webhook_url: Optional[pulumi.Input[str]] = None,
2740
+ send_mail_to_new_members: Optional[pulumi.Input[bool]] = None,
2741
+ send_notifications_to_members: Optional[pulumi.Input[bool]] = None,
2742
+ slack_channel: Optional[pulumi.Input[str]] = None,
2743
+ slack_webhook_url: Optional[pulumi.Input[str]] = None):
2744
+ """
2745
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_email_addresses: The email addresses of the user group.
2746
+ :param pulumi.Input[str] microsoft_teams_webhook_url: The Microsoft Teams webhook URL of the user group.
2747
+ :param pulumi.Input[bool] send_mail_to_new_members: Indicates whether an email is sent when a new user is added to the group.
2748
+ :param pulumi.Input[bool] send_notifications_to_members: Enable this setting to have notifications sent to the members of this group.
2749
+ :param pulumi.Input[str] slack_channel: The Slack channel to send notifications to.
2750
+ :param pulumi.Input[str] slack_webhook_url: The Slack webhook URL to send notifications to.
2751
+ """
2752
+ if group_email_addresses is not None:
2753
+ pulumi.set(__self__, "group_email_addresses", group_email_addresses)
2754
+ if microsoft_teams_webhook_url is not None:
2755
+ pulumi.set(__self__, "microsoft_teams_webhook_url", microsoft_teams_webhook_url)
2756
+ if send_mail_to_new_members is not None:
2757
+ pulumi.set(__self__, "send_mail_to_new_members", send_mail_to_new_members)
2758
+ if send_notifications_to_members is not None:
2759
+ pulumi.set(__self__, "send_notifications_to_members", send_notifications_to_members)
2760
+ if slack_channel is not None:
2761
+ pulumi.set(__self__, "slack_channel", slack_channel)
2762
+ if slack_webhook_url is not None:
2763
+ pulumi.set(__self__, "slack_webhook_url", slack_webhook_url)
2764
+
2765
+ @property
2766
+ @pulumi.getter(name="groupEmailAddresses")
2767
+ def group_email_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2768
+ """
2769
+ The email addresses of the user group.
2770
+ """
2771
+ return pulumi.get(self, "group_email_addresses")
2772
+
2773
+ @group_email_addresses.setter
2774
+ def group_email_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2775
+ pulumi.set(self, "group_email_addresses", value)
2776
+
2777
+ @property
2778
+ @pulumi.getter(name="microsoftTeamsWebhookUrl")
2779
+ def microsoft_teams_webhook_url(self) -> Optional[pulumi.Input[str]]:
2780
+ """
2781
+ The Microsoft Teams webhook URL of the user group.
2782
+ """
2783
+ return pulumi.get(self, "microsoft_teams_webhook_url")
2784
+
2785
+ @microsoft_teams_webhook_url.setter
2786
+ def microsoft_teams_webhook_url(self, value: Optional[pulumi.Input[str]]):
2787
+ pulumi.set(self, "microsoft_teams_webhook_url", value)
2788
+
2789
+ @property
2790
+ @pulumi.getter(name="sendMailToNewMembers")
2791
+ def send_mail_to_new_members(self) -> Optional[pulumi.Input[bool]]:
2792
+ """
2793
+ Indicates whether an email is sent when a new user is added to the group.
2794
+ """
2795
+ return pulumi.get(self, "send_mail_to_new_members")
2796
+
2797
+ @send_mail_to_new_members.setter
2798
+ def send_mail_to_new_members(self, value: Optional[pulumi.Input[bool]]):
2799
+ pulumi.set(self, "send_mail_to_new_members", value)
2800
+
2801
+ @property
2802
+ @pulumi.getter(name="sendNotificationsToMembers")
2803
+ def send_notifications_to_members(self) -> Optional[pulumi.Input[bool]]:
2804
+ """
2805
+ Enable this setting to have notifications sent to the members of this group.
2806
+ """
2807
+ return pulumi.get(self, "send_notifications_to_members")
2808
+
2809
+ @send_notifications_to_members.setter
2810
+ def send_notifications_to_members(self, value: Optional[pulumi.Input[bool]]):
2811
+ pulumi.set(self, "send_notifications_to_members", value)
2812
+
2813
+ @property
2814
+ @pulumi.getter(name="slackChannel")
2815
+ def slack_channel(self) -> Optional[pulumi.Input[str]]:
2816
+ """
2817
+ The Slack channel to send notifications to.
2818
+ """
2819
+ return pulumi.get(self, "slack_channel")
2820
+
2821
+ @slack_channel.setter
2822
+ def slack_channel(self, value: Optional[pulumi.Input[str]]):
2823
+ pulumi.set(self, "slack_channel", value)
2824
+
2825
+ @property
2826
+ @pulumi.getter(name="slackWebhookUrl")
2827
+ def slack_webhook_url(self) -> Optional[pulumi.Input[str]]:
2828
+ """
2829
+ The Slack webhook URL to send notifications to.
2830
+ """
2831
+ return pulumi.get(self, "slack_webhook_url")
2832
+
2833
+ @slack_webhook_url.setter
2834
+ def slack_webhook_url(self, value: Optional[pulumi.Input[str]]):
2835
+ pulumi.set(self, "slack_webhook_url", value)
2836
+
2837
+
2838
+ if not MYPY:
2839
+ class UserGroupPermissionsArgsDict(TypedDict):
2840
+ account_permissions: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2841
+ """
2842
+ The account permissions of the user group. Valid options are ADMINISTER*OTHER*ACCOUNT*FUNCTIONS, CREATE*AND*DELETE*APPLICATION, CREATE*CUSTOM*DASHBOARDS, MANAGE*ALERT*NOTIFICATION*RULES, MANAGE*API*KEYS, MANAGE*APPLICATION*STACKS, MANAGE*AUTHENTICATION*SETTINGS, MANAGE*CLOUD*PROVIDERS, MANAGE*CONFIG*AS*CODE, MANAGE*CONNECTORS, MANAGE*CUSTOM*DASHBOARDS, MANAGE*DELEGATE*PROFILES, MANAGE*DELEGATES, MANAGE*DEPLOYMENT*FREEZES, MANAGE*IP*WHITELIST, MANAGE*PIPELINE*GOVERNANCE*STANDARDS, MANAGE*RESTRICTED*ACCESS, MANAGE*SECRET*MANAGERS, MANAGE*SECRETS, MANAGE*SSH*AND*WINRM, MANAGE*TAGS, MANAGE*TEMPLATE*LIBRARY, MANAGE*USER*AND*USER*GROUPS*AND*API*KEYS, MANAGE*USERS*AND*GROUPS, READ*USERS*AND*GROUPS, VIEW*AUDITS, VIEW*USER*AND*USER*GROUPS*AND*API_KEYS
2843
+ """
2844
+ app_permissions: NotRequired[pulumi.Input['UserGroupPermissionsAppPermissionsArgsDict']]
2845
+ """
2846
+ Application specific permissions
2847
+ """
2848
+ elif False:
2849
+ UserGroupPermissionsArgsDict: TypeAlias = Mapping[str, Any]
2850
+
2851
+ @pulumi.input_type
2852
+ class UserGroupPermissionsArgs:
2853
+ def __init__(__self__, *,
2854
+ account_permissions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2855
+ app_permissions: Optional[pulumi.Input['UserGroupPermissionsAppPermissionsArgs']] = None):
2856
+ """
2857
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] account_permissions: The account permissions of the user group. Valid options are ADMINISTER*OTHER*ACCOUNT*FUNCTIONS, CREATE*AND*DELETE*APPLICATION, CREATE*CUSTOM*DASHBOARDS, MANAGE*ALERT*NOTIFICATION*RULES, MANAGE*API*KEYS, MANAGE*APPLICATION*STACKS, MANAGE*AUTHENTICATION*SETTINGS, MANAGE*CLOUD*PROVIDERS, MANAGE*CONFIG*AS*CODE, MANAGE*CONNECTORS, MANAGE*CUSTOM*DASHBOARDS, MANAGE*DELEGATE*PROFILES, MANAGE*DELEGATES, MANAGE*DEPLOYMENT*FREEZES, MANAGE*IP*WHITELIST, MANAGE*PIPELINE*GOVERNANCE*STANDARDS, MANAGE*RESTRICTED*ACCESS, MANAGE*SECRET*MANAGERS, MANAGE*SECRETS, MANAGE*SSH*AND*WINRM, MANAGE*TAGS, MANAGE*TEMPLATE*LIBRARY, MANAGE*USER*AND*USER*GROUPS*AND*API*KEYS, MANAGE*USERS*AND*GROUPS, READ*USERS*AND*GROUPS, VIEW*AUDITS, VIEW*USER*AND*USER*GROUPS*AND*API_KEYS
2858
+ :param pulumi.Input['UserGroupPermissionsAppPermissionsArgs'] app_permissions: Application specific permissions
2859
+ """
2860
+ if account_permissions is not None:
2861
+ pulumi.set(__self__, "account_permissions", account_permissions)
2862
+ if app_permissions is not None:
2863
+ pulumi.set(__self__, "app_permissions", app_permissions)
2864
+
2865
+ @property
2866
+ @pulumi.getter(name="accountPermissions")
2867
+ def account_permissions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2868
+ """
2869
+ The account permissions of the user group. Valid options are ADMINISTER*OTHER*ACCOUNT*FUNCTIONS, CREATE*AND*DELETE*APPLICATION, CREATE*CUSTOM*DASHBOARDS, MANAGE*ALERT*NOTIFICATION*RULES, MANAGE*API*KEYS, MANAGE*APPLICATION*STACKS, MANAGE*AUTHENTICATION*SETTINGS, MANAGE*CLOUD*PROVIDERS, MANAGE*CONFIG*AS*CODE, MANAGE*CONNECTORS, MANAGE*CUSTOM*DASHBOARDS, MANAGE*DELEGATE*PROFILES, MANAGE*DELEGATES, MANAGE*DEPLOYMENT*FREEZES, MANAGE*IP*WHITELIST, MANAGE*PIPELINE*GOVERNANCE*STANDARDS, MANAGE*RESTRICTED*ACCESS, MANAGE*SECRET*MANAGERS, MANAGE*SECRETS, MANAGE*SSH*AND*WINRM, MANAGE*TAGS, MANAGE*TEMPLATE*LIBRARY, MANAGE*USER*AND*USER*GROUPS*AND*API*KEYS, MANAGE*USERS*AND*GROUPS, READ*USERS*AND*GROUPS, VIEW*AUDITS, VIEW*USER*AND*USER*GROUPS*AND*API_KEYS
2870
+ """
2871
+ return pulumi.get(self, "account_permissions")
2872
+
2873
+ @account_permissions.setter
2874
+ def account_permissions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2875
+ pulumi.set(self, "account_permissions", value)
2876
+
2877
+ @property
2878
+ @pulumi.getter(name="appPermissions")
2879
+ def app_permissions(self) -> Optional[pulumi.Input['UserGroupPermissionsAppPermissionsArgs']]:
2880
+ """
2881
+ Application specific permissions
2882
+ """
2883
+ return pulumi.get(self, "app_permissions")
2884
+
2885
+ @app_permissions.setter
2886
+ def app_permissions(self, value: Optional[pulumi.Input['UserGroupPermissionsAppPermissionsArgs']]):
2887
+ pulumi.set(self, "app_permissions", value)
2888
+
2889
+
2890
+ if not MYPY:
2891
+ class UserGroupPermissionsAppPermissionsArgsDict(TypedDict):
2892
+ alls: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsAllArgsDict']]]]
2893
+ """
2894
+ The permission to perform actions against all resources.
2895
+ """
2896
+ deployments: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsDeploymentArgsDict']]]]
2897
+ """
2898
+ Permission configuration to perform actions against deployments.
2899
+ """
2900
+ environments: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsEnvironmentArgsDict']]]]
2901
+ """
2902
+ Permission configuration to perform actions against workflows.
2903
+ """
2904
+ pipelines: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsPipelineArgsDict']]]]
2905
+ """
2906
+ Permission configuration to perform actions against pipelines.
2907
+ """
2908
+ provisioners: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsProvisionerArgsDict']]]]
2909
+ """
2910
+ Permission configuration to perform actions against provisioners.
2911
+ """
2912
+ services: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsServiceArgsDict']]]]
2913
+ """
2914
+ Permission configuration to perform actions against services.
2915
+ """
2916
+ templates: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsTemplateArgsDict']]]]
2917
+ """
2918
+ Permission configuration to perform actions against templates.
2919
+ """
2920
+ workflows: NotRequired[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsWorkflowArgsDict']]]]
2921
+ """
2922
+ Permission configuration to perform actions against workflows.
2923
+ """
2924
+ elif False:
2925
+ UserGroupPermissionsAppPermissionsArgsDict: TypeAlias = Mapping[str, Any]
2926
+
2927
+ @pulumi.input_type
2928
+ class UserGroupPermissionsAppPermissionsArgs:
2929
+ def __init__(__self__, *,
2930
+ alls: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsAllArgs']]]] = None,
2931
+ deployments: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsDeploymentArgs']]]] = None,
2932
+ environments: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsEnvironmentArgs']]]] = None,
2933
+ pipelines: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsPipelineArgs']]]] = None,
2934
+ provisioners: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsProvisionerArgs']]]] = None,
2935
+ services: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsServiceArgs']]]] = None,
2936
+ templates: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsTemplateArgs']]]] = None,
2937
+ workflows: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsWorkflowArgs']]]] = None):
2938
+ """
2939
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsAllArgs']]] alls: The permission to perform actions against all resources.
2940
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsDeploymentArgs']]] deployments: Permission configuration to perform actions against deployments.
2941
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsEnvironmentArgs']]] environments: Permission configuration to perform actions against workflows.
2942
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsPipelineArgs']]] pipelines: Permission configuration to perform actions against pipelines.
2943
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsProvisionerArgs']]] provisioners: Permission configuration to perform actions against provisioners.
2944
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsServiceArgs']]] services: Permission configuration to perform actions against services.
2945
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsTemplateArgs']]] templates: Permission configuration to perform actions against templates.
2946
+ :param pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsWorkflowArgs']]] workflows: Permission configuration to perform actions against workflows.
2947
+ """
2948
+ if alls is not None:
2949
+ pulumi.set(__self__, "alls", alls)
2950
+ if deployments is not None:
2951
+ pulumi.set(__self__, "deployments", deployments)
2952
+ if environments is not None:
2953
+ pulumi.set(__self__, "environments", environments)
2954
+ if pipelines is not None:
2955
+ pulumi.set(__self__, "pipelines", pipelines)
2956
+ if provisioners is not None:
2957
+ pulumi.set(__self__, "provisioners", provisioners)
2958
+ if services is not None:
2959
+ pulumi.set(__self__, "services", services)
2960
+ if templates is not None:
2961
+ pulumi.set(__self__, "templates", templates)
2962
+ if workflows is not None:
2963
+ pulumi.set(__self__, "workflows", workflows)
2964
+
2965
+ @property
2966
+ @pulumi.getter
2967
+ def alls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsAllArgs']]]]:
2968
+ """
2969
+ The permission to perform actions against all resources.
2970
+ """
2971
+ return pulumi.get(self, "alls")
2972
+
2973
+ @alls.setter
2974
+ def alls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsAllArgs']]]]):
2975
+ pulumi.set(self, "alls", value)
2976
+
2977
+ @property
2978
+ @pulumi.getter
2979
+ def deployments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsDeploymentArgs']]]]:
2980
+ """
2981
+ Permission configuration to perform actions against deployments.
2982
+ """
2983
+ return pulumi.get(self, "deployments")
2984
+
2985
+ @deployments.setter
2986
+ def deployments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsDeploymentArgs']]]]):
2987
+ pulumi.set(self, "deployments", value)
2988
+
2989
+ @property
2990
+ @pulumi.getter
2991
+ def environments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsEnvironmentArgs']]]]:
2992
+ """
2993
+ Permission configuration to perform actions against workflows.
2994
+ """
2995
+ return pulumi.get(self, "environments")
2996
+
2997
+ @environments.setter
2998
+ def environments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsEnvironmentArgs']]]]):
2999
+ pulumi.set(self, "environments", value)
3000
+
3001
+ @property
3002
+ @pulumi.getter
3003
+ def pipelines(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsPipelineArgs']]]]:
3004
+ """
3005
+ Permission configuration to perform actions against pipelines.
3006
+ """
3007
+ return pulumi.get(self, "pipelines")
3008
+
3009
+ @pipelines.setter
3010
+ def pipelines(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsPipelineArgs']]]]):
3011
+ pulumi.set(self, "pipelines", value)
3012
+
3013
+ @property
3014
+ @pulumi.getter
3015
+ def provisioners(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsProvisionerArgs']]]]:
3016
+ """
3017
+ Permission configuration to perform actions against provisioners.
3018
+ """
3019
+ return pulumi.get(self, "provisioners")
3020
+
3021
+ @provisioners.setter
3022
+ def provisioners(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsProvisionerArgs']]]]):
3023
+ pulumi.set(self, "provisioners", value)
3024
+
3025
+ @property
3026
+ @pulumi.getter
3027
+ def services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsServiceArgs']]]]:
3028
+ """
3029
+ Permission configuration to perform actions against services.
3030
+ """
3031
+ return pulumi.get(self, "services")
3032
+
3033
+ @services.setter
3034
+ def services(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsServiceArgs']]]]):
3035
+ pulumi.set(self, "services", value)
3036
+
3037
+ @property
3038
+ @pulumi.getter
3039
+ def templates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsTemplateArgs']]]]:
3040
+ """
3041
+ Permission configuration to perform actions against templates.
3042
+ """
3043
+ return pulumi.get(self, "templates")
3044
+
3045
+ @templates.setter
3046
+ def templates(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsTemplateArgs']]]]):
3047
+ pulumi.set(self, "templates", value)
3048
+
3049
+ @property
3050
+ @pulumi.getter
3051
+ def workflows(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsWorkflowArgs']]]]:
3052
+ """
3053
+ Permission configuration to perform actions against workflows.
3054
+ """
3055
+ return pulumi.get(self, "workflows")
3056
+
3057
+ @workflows.setter
3058
+ def workflows(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UserGroupPermissionsAppPermissionsWorkflowArgs']]]]):
3059
+ pulumi.set(self, "workflows", value)
3060
+
3061
+
3062
+ if not MYPY:
3063
+ class UserGroupPermissionsAppPermissionsAllArgsDict(TypedDict):
3064
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3065
+ """
3066
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK_WORKFLOW
3067
+ """
3068
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3069
+ """
3070
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3071
+ """
3072
+ elif False:
3073
+ UserGroupPermissionsAppPermissionsAllArgsDict: TypeAlias = Mapping[str, Any]
3074
+
3075
+ @pulumi.input_type
3076
+ class UserGroupPermissionsAppPermissionsAllArgs:
3077
+ def __init__(__self__, *,
3078
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3079
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3080
+ """
3081
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK_WORKFLOW
3082
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3083
+ """
3084
+ pulumi.set(__self__, "actions", actions)
3085
+ if app_ids is not None:
3086
+ pulumi.set(__self__, "app_ids", app_ids)
3087
+
3088
+ @property
3089
+ @pulumi.getter
3090
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3091
+ """
3092
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK_WORKFLOW
3093
+ """
3094
+ return pulumi.get(self, "actions")
3095
+
3096
+ @actions.setter
3097
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3098
+ pulumi.set(self, "actions", value)
3099
+
3100
+ @property
3101
+ @pulumi.getter(name="appIds")
3102
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3103
+ """
3104
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3105
+ """
3106
+ return pulumi.get(self, "app_ids")
3107
+
3108
+ @app_ids.setter
3109
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3110
+ pulumi.set(self, "app_ids", value)
3111
+
3112
+
3113
+ if not MYPY:
3114
+ class UserGroupPermissionsAppPermissionsDeploymentArgsDict(TypedDict):
3115
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3116
+ """
3117
+ The actions allowed to be performed. Valid options are READ, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK*WORKFLOW, ABORT*WORKFLOW
3118
+ """
3119
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3120
+ """
3121
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3122
+ """
3123
+ env_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3124
+ """
3125
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3126
+ """
3127
+ filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3128
+ """
3129
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3130
+ """
3131
+ elif False:
3132
+ UserGroupPermissionsAppPermissionsDeploymentArgsDict: TypeAlias = Mapping[str, Any]
3133
+
3134
+ @pulumi.input_type
3135
+ class UserGroupPermissionsAppPermissionsDeploymentArgs:
3136
+ def __init__(__self__, *,
3137
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3138
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3139
+ env_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3140
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3141
+ """
3142
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are READ, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK*WORKFLOW, ABORT*WORKFLOW
3143
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3144
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
3145
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3146
+ """
3147
+ pulumi.set(__self__, "actions", actions)
3148
+ if app_ids is not None:
3149
+ pulumi.set(__self__, "app_ids", app_ids)
3150
+ if env_ids is not None:
3151
+ pulumi.set(__self__, "env_ids", env_ids)
3152
+ if filters is not None:
3153
+ pulumi.set(__self__, "filters", filters)
3154
+
3155
+ @property
3156
+ @pulumi.getter
3157
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3158
+ """
3159
+ The actions allowed to be performed. Valid options are READ, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK*WORKFLOW, ABORT*WORKFLOW
3160
+ """
3161
+ return pulumi.get(self, "actions")
3162
+
3163
+ @actions.setter
3164
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3165
+ pulumi.set(self, "actions", value)
3166
+
3167
+ @property
3168
+ @pulumi.getter(name="appIds")
3169
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3170
+ """
3171
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3172
+ """
3173
+ return pulumi.get(self, "app_ids")
3174
+
3175
+ @app_ids.setter
3176
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3177
+ pulumi.set(self, "app_ids", value)
3178
+
3179
+ @property
3180
+ @pulumi.getter(name="envIds")
3181
+ def env_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3182
+ """
3183
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3184
+ """
3185
+ return pulumi.get(self, "env_ids")
3186
+
3187
+ @env_ids.setter
3188
+ def env_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3189
+ pulumi.set(self, "env_ids", value)
3190
+
3191
+ @property
3192
+ @pulumi.getter
3193
+ def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3194
+ """
3195
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3196
+ """
3197
+ return pulumi.get(self, "filters")
3198
+
3199
+ @filters.setter
3200
+ def filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3201
+ pulumi.set(self, "filters", value)
3202
+
3203
+
3204
+ if not MYPY:
3205
+ class UserGroupPermissionsAppPermissionsEnvironmentArgsDict(TypedDict):
3206
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3207
+ """
3208
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3209
+ """
3210
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3211
+ """
3212
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3213
+ """
3214
+ env_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3215
+ """
3216
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3217
+ """
3218
+ filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3219
+ """
3220
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3221
+ """
3222
+ elif False:
3223
+ UserGroupPermissionsAppPermissionsEnvironmentArgsDict: TypeAlias = Mapping[str, Any]
3224
+
3225
+ @pulumi.input_type
3226
+ class UserGroupPermissionsAppPermissionsEnvironmentArgs:
3227
+ def __init__(__self__, *,
3228
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3229
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3230
+ env_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3231
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3232
+ """
3233
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3234
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3235
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
3236
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3237
+ """
3238
+ pulumi.set(__self__, "actions", actions)
3239
+ if app_ids is not None:
3240
+ pulumi.set(__self__, "app_ids", app_ids)
3241
+ if env_ids is not None:
3242
+ pulumi.set(__self__, "env_ids", env_ids)
3243
+ if filters is not None:
3244
+ pulumi.set(__self__, "filters", filters)
3245
+
3246
+ @property
3247
+ @pulumi.getter
3248
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3249
+ """
3250
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3251
+ """
3252
+ return pulumi.get(self, "actions")
3253
+
3254
+ @actions.setter
3255
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3256
+ pulumi.set(self, "actions", value)
3257
+
3258
+ @property
3259
+ @pulumi.getter(name="appIds")
3260
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3261
+ """
3262
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3263
+ """
3264
+ return pulumi.get(self, "app_ids")
3265
+
3266
+ @app_ids.setter
3267
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3268
+ pulumi.set(self, "app_ids", value)
3269
+
3270
+ @property
3271
+ @pulumi.getter(name="envIds")
3272
+ def env_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3273
+ """
3274
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3275
+ """
3276
+ return pulumi.get(self, "env_ids")
3277
+
3278
+ @env_ids.setter
3279
+ def env_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3280
+ pulumi.set(self, "env_ids", value)
3281
+
3282
+ @property
3283
+ @pulumi.getter
3284
+ def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3285
+ """
3286
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3287
+ """
3288
+ return pulumi.get(self, "filters")
3289
+
3290
+ @filters.setter
3291
+ def filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3292
+ pulumi.set(self, "filters", value)
3293
+
3294
+
3295
+ if not MYPY:
3296
+ class UserGroupPermissionsAppPermissionsPipelineArgsDict(TypedDict):
3297
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3298
+ """
3299
+ The actions allowed to be performed. Valid options are [CREATE READ UPDATE DELETE]
3300
+ """
3301
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3302
+ """
3303
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3304
+ """
3305
+ env_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3306
+ """
3307
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3308
+ """
3309
+ filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3310
+ """
3311
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*PIPELINES, PRODUCTION_PIPELINES.
3312
+ """
3313
+ elif False:
3314
+ UserGroupPermissionsAppPermissionsPipelineArgsDict: TypeAlias = Mapping[str, Any]
3315
+
3316
+ @pulumi.input_type
3317
+ class UserGroupPermissionsAppPermissionsPipelineArgs:
3318
+ def __init__(__self__, *,
3319
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3320
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3321
+ env_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3322
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3323
+ """
3324
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are [CREATE READ UPDATE DELETE]
3325
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3326
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
3327
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*PIPELINES, PRODUCTION_PIPELINES.
3328
+ """
3329
+ pulumi.set(__self__, "actions", actions)
3330
+ if app_ids is not None:
3331
+ pulumi.set(__self__, "app_ids", app_ids)
3332
+ if env_ids is not None:
3333
+ pulumi.set(__self__, "env_ids", env_ids)
3334
+ if filters is not None:
3335
+ pulumi.set(__self__, "filters", filters)
3336
+
3337
+ @property
3338
+ @pulumi.getter
3339
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3340
+ """
3341
+ The actions allowed to be performed. Valid options are [CREATE READ UPDATE DELETE]
3342
+ """
3343
+ return pulumi.get(self, "actions")
3344
+
3345
+ @actions.setter
3346
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3347
+ pulumi.set(self, "actions", value)
3348
+
3349
+ @property
3350
+ @pulumi.getter(name="appIds")
3351
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3352
+ """
3353
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3354
+ """
3355
+ return pulumi.get(self, "app_ids")
3356
+
3357
+ @app_ids.setter
3358
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3359
+ pulumi.set(self, "app_ids", value)
3360
+
3361
+ @property
3362
+ @pulumi.getter(name="envIds")
3363
+ def env_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3364
+ """
3365
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
3366
+ """
3367
+ return pulumi.get(self, "env_ids")
3368
+
3369
+ @env_ids.setter
3370
+ def env_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3371
+ pulumi.set(self, "env_ids", value)
3372
+
3373
+ @property
3374
+ @pulumi.getter
3375
+ def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3376
+ """
3377
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*PIPELINES, PRODUCTION_PIPELINES.
3378
+ """
3379
+ return pulumi.get(self, "filters")
3380
+
3381
+ @filters.setter
3382
+ def filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3383
+ pulumi.set(self, "filters", value)
3384
+
3385
+
3386
+ if not MYPY:
3387
+ class UserGroupPermissionsAppPermissionsProvisionerArgsDict(TypedDict):
3388
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3389
+ """
3390
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3391
+ """
3392
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3393
+ """
3394
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3395
+ """
3396
+ provisioner_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3397
+ """
3398
+ The provisioner IDs to which the permission applies. Leave empty to apply to all provisioners.
3399
+ """
3400
+ elif False:
3401
+ UserGroupPermissionsAppPermissionsProvisionerArgsDict: TypeAlias = Mapping[str, Any]
3402
+
3403
+ @pulumi.input_type
3404
+ class UserGroupPermissionsAppPermissionsProvisionerArgs:
3405
+ def __init__(__self__, *,
3406
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3407
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3408
+ provisioner_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3409
+ """
3410
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3411
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3412
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] provisioner_ids: The provisioner IDs to which the permission applies. Leave empty to apply to all provisioners.
3413
+ """
3414
+ pulumi.set(__self__, "actions", actions)
3415
+ if app_ids is not None:
3416
+ pulumi.set(__self__, "app_ids", app_ids)
3417
+ if provisioner_ids is not None:
3418
+ pulumi.set(__self__, "provisioner_ids", provisioner_ids)
3419
+
3420
+ @property
3421
+ @pulumi.getter
3422
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3423
+ """
3424
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3425
+ """
3426
+ return pulumi.get(self, "actions")
3427
+
3428
+ @actions.setter
3429
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3430
+ pulumi.set(self, "actions", value)
3431
+
3432
+ @property
3433
+ @pulumi.getter(name="appIds")
3434
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3435
+ """
3436
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3437
+ """
3438
+ return pulumi.get(self, "app_ids")
3439
+
3440
+ @app_ids.setter
3441
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3442
+ pulumi.set(self, "app_ids", value)
3443
+
3444
+ @property
3445
+ @pulumi.getter(name="provisionerIds")
3446
+ def provisioner_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3447
+ """
3448
+ The provisioner IDs to which the permission applies. Leave empty to apply to all provisioners.
3449
+ """
3450
+ return pulumi.get(self, "provisioner_ids")
3451
+
3452
+ @provisioner_ids.setter
3453
+ def provisioner_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3454
+ pulumi.set(self, "provisioner_ids", value)
3455
+
3456
+
3457
+ if not MYPY:
3458
+ class UserGroupPermissionsAppPermissionsServiceArgsDict(TypedDict):
3459
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3460
+ """
3461
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3462
+ """
3463
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3464
+ """
3465
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3466
+ """
3467
+ service_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3468
+ """
3469
+ The service IDs to which the permission applies. Leave empty to apply to all services.
3470
+ """
3471
+ elif False:
3472
+ UserGroupPermissionsAppPermissionsServiceArgsDict: TypeAlias = Mapping[str, Any]
3473
+
3474
+ @pulumi.input_type
3475
+ class UserGroupPermissionsAppPermissionsServiceArgs:
3476
+ def __init__(__self__, *,
3477
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3478
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3479
+ service_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3480
+ """
3481
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3482
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3483
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] service_ids: The service IDs to which the permission applies. Leave empty to apply to all services.
3484
+ """
3485
+ pulumi.set(__self__, "actions", actions)
3486
+ if app_ids is not None:
3487
+ pulumi.set(__self__, "app_ids", app_ids)
3488
+ if service_ids is not None:
3489
+ pulumi.set(__self__, "service_ids", service_ids)
3490
+
3491
+ @property
3492
+ @pulumi.getter
3493
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3494
+ """
3495
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3496
+ """
3497
+ return pulumi.get(self, "actions")
3498
+
3499
+ @actions.setter
3500
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3501
+ pulumi.set(self, "actions", value)
3502
+
3503
+ @property
3504
+ @pulumi.getter(name="appIds")
3505
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3506
+ """
3507
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3508
+ """
3509
+ return pulumi.get(self, "app_ids")
3510
+
3511
+ @app_ids.setter
3512
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3513
+ pulumi.set(self, "app_ids", value)
3514
+
3515
+ @property
3516
+ @pulumi.getter(name="serviceIds")
3517
+ def service_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3518
+ """
3519
+ The service IDs to which the permission applies. Leave empty to apply to all services.
3520
+ """
3521
+ return pulumi.get(self, "service_ids")
3522
+
3523
+ @service_ids.setter
3524
+ def service_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3525
+ pulumi.set(self, "service_ids", value)
3526
+
3527
+
3528
+ if not MYPY:
3529
+ class UserGroupPermissionsAppPermissionsTemplateArgsDict(TypedDict):
3530
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3531
+ """
3532
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3533
+ """
3534
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3535
+ """
3536
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3537
+ """
3538
+ template_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3539
+ """
3540
+ The template IDs to which the permission applies. Leave empty to apply to all environments.
3541
+ """
3542
+ elif False:
3543
+ UserGroupPermissionsAppPermissionsTemplateArgsDict: TypeAlias = Mapping[str, Any]
3544
+
3545
+ @pulumi.input_type
3546
+ class UserGroupPermissionsAppPermissionsTemplateArgs:
3547
+ def __init__(__self__, *,
3548
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3549
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3550
+ template_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3551
+ """
3552
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3553
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3554
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] template_ids: The template IDs to which the permission applies. Leave empty to apply to all environments.
3555
+ """
3556
+ pulumi.set(__self__, "actions", actions)
3557
+ if app_ids is not None:
3558
+ pulumi.set(__self__, "app_ids", app_ids)
3559
+ if template_ids is not None:
3560
+ pulumi.set(__self__, "template_ids", template_ids)
3561
+
3562
+ @property
3563
+ @pulumi.getter
3564
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3565
+ """
3566
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3567
+ """
3568
+ return pulumi.get(self, "actions")
3569
+
3570
+ @actions.setter
3571
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3572
+ pulumi.set(self, "actions", value)
3573
+
3574
+ @property
3575
+ @pulumi.getter(name="appIds")
3576
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3577
+ """
3578
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3579
+ """
3580
+ return pulumi.get(self, "app_ids")
3581
+
3582
+ @app_ids.setter
3583
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3584
+ pulumi.set(self, "app_ids", value)
3585
+
3586
+ @property
3587
+ @pulumi.getter(name="templateIds")
3588
+ def template_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3589
+ """
3590
+ The template IDs to which the permission applies. Leave empty to apply to all environments.
3591
+ """
3592
+ return pulumi.get(self, "template_ids")
3593
+
3594
+ @template_ids.setter
3595
+ def template_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3596
+ pulumi.set(self, "template_ids", value)
3597
+
3598
+
3599
+ if not MYPY:
3600
+ class UserGroupPermissionsAppPermissionsWorkflowArgsDict(TypedDict):
3601
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]]
3602
+ """
3603
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3604
+ """
3605
+ app_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3606
+ """
3607
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3608
+ """
3609
+ filters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
3610
+ """
3611
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*WORKFLOWS, PRODUCTION*WORKFLOWS, WORKFLOW*TEMPLATES.
3612
+ """
3613
+ elif False:
3614
+ UserGroupPermissionsAppPermissionsWorkflowArgsDict: TypeAlias = Mapping[str, Any]
3615
+
3616
+ @pulumi.input_type
3617
+ class UserGroupPermissionsAppPermissionsWorkflowArgs:
3618
+ def __init__(__self__, *,
3619
+ actions: pulumi.Input[Sequence[pulumi.Input[str]]],
3620
+ app_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
3621
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
3622
+ """
3623
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3624
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
3625
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*WORKFLOWS, PRODUCTION*WORKFLOWS, WORKFLOW*TEMPLATES.
3626
+ """
3627
+ pulumi.set(__self__, "actions", actions)
3628
+ if app_ids is not None:
3629
+ pulumi.set(__self__, "app_ids", app_ids)
3630
+ if filters is not None:
3631
+ pulumi.set(__self__, "filters", filters)
3632
+
3633
+ @property
3634
+ @pulumi.getter
3635
+ def actions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
3636
+ """
3637
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
3638
+ """
3639
+ return pulumi.get(self, "actions")
3640
+
3641
+ @actions.setter
3642
+ def actions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
3643
+ pulumi.set(self, "actions", value)
3644
+
3645
+ @property
3646
+ @pulumi.getter(name="appIds")
3647
+ def app_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3648
+ """
3649
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
3650
+ """
3651
+ return pulumi.get(self, "app_ids")
3652
+
3653
+ @app_ids.setter
3654
+ def app_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3655
+ pulumi.set(self, "app_ids", value)
3656
+
3657
+ @property
3658
+ @pulumi.getter
3659
+ def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
3660
+ """
3661
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*WORKFLOWS, PRODUCTION*WORKFLOWS, WORKFLOW*TEMPLATES.
3662
+ """
3663
+ return pulumi.get(self, "filters")
3664
+
3665
+ @filters.setter
3666
+ def filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
3667
+ pulumi.set(self, "filters", value)
3668
+
3669
+
3670
+ if not MYPY:
3671
+ class UserGroupSamlSettingsArgsDict(TypedDict):
3672
+ group_name: NotRequired[pulumi.Input[str]]
3673
+ """
3674
+ The group name of the SAML user group.
3675
+ """
3676
+ sso_provider_id: NotRequired[pulumi.Input[str]]
3677
+ """
3678
+ The ID of the SSO provider.
3679
+ """
3680
+ elif False:
3681
+ UserGroupSamlSettingsArgsDict: TypeAlias = Mapping[str, Any]
3682
+
3683
+ @pulumi.input_type
3684
+ class UserGroupSamlSettingsArgs:
3685
+ def __init__(__self__, *,
3686
+ group_name: Optional[pulumi.Input[str]] = None,
3687
+ sso_provider_id: Optional[pulumi.Input[str]] = None):
3688
+ """
3689
+ :param pulumi.Input[str] group_name: The group name of the SAML user group.
3690
+ :param pulumi.Input[str] sso_provider_id: The ID of the SSO provider.
3691
+ """
3692
+ if group_name is not None:
3693
+ pulumi.set(__self__, "group_name", group_name)
3694
+ if sso_provider_id is not None:
3695
+ pulumi.set(__self__, "sso_provider_id", sso_provider_id)
3696
+
3697
+ @property
3698
+ @pulumi.getter(name="groupName")
3699
+ def group_name(self) -> Optional[pulumi.Input[str]]:
3700
+ """
3701
+ The group name of the SAML user group.
3702
+ """
3703
+ return pulumi.get(self, "group_name")
3704
+
3705
+ @group_name.setter
3706
+ def group_name(self, value: Optional[pulumi.Input[str]]):
3707
+ pulumi.set(self, "group_name", value)
3708
+
3709
+ @property
3710
+ @pulumi.getter(name="ssoProviderId")
3711
+ def sso_provider_id(self) -> Optional[pulumi.Input[str]]:
3712
+ """
3713
+ The ID of the SSO provider.
3714
+ """
3715
+ return pulumi.get(self, "sso_provider_id")
3716
+
3717
+ @sso_provider_id.setter
3718
+ def sso_provider_id(self, value: Optional[pulumi.Input[str]]):
3719
+ pulumi.set(self, "sso_provider_id", value)
3720
+
3721
+
3722
+ if not MYPY:
3723
+ class GetEncryptedTextUsageScopeArgsDict(TypedDict):
3724
+ application_id: NotRequired[str]
3725
+ """
3726
+ Id of the application to scope to. If empty then this scope applies to all applications.
3727
+ """
3728
+ environment_filter_type: NotRequired[str]
3729
+ """
3730
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3731
+ """
3732
+ environment_id: NotRequired[str]
3733
+ """
3734
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3735
+ """
3736
+ elif False:
3737
+ GetEncryptedTextUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
3738
+
3739
+ @pulumi.input_type
3740
+ class GetEncryptedTextUsageScopeArgs:
3741
+ def __init__(__self__, *,
3742
+ application_id: Optional[str] = None,
3743
+ environment_filter_type: Optional[str] = None,
3744
+ environment_id: Optional[str] = None):
3745
+ """
3746
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
3747
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3748
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3749
+ """
3750
+ if application_id is not None:
3751
+ pulumi.set(__self__, "application_id", application_id)
3752
+ if environment_filter_type is not None:
3753
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
3754
+ if environment_id is not None:
3755
+ pulumi.set(__self__, "environment_id", environment_id)
3756
+
3757
+ @property
3758
+ @pulumi.getter(name="applicationId")
3759
+ def application_id(self) -> Optional[str]:
3760
+ """
3761
+ Id of the application to scope to. If empty then this scope applies to all applications.
3762
+ """
3763
+ return pulumi.get(self, "application_id")
3764
+
3765
+ @application_id.setter
3766
+ def application_id(self, value: Optional[str]):
3767
+ pulumi.set(self, "application_id", value)
3768
+
3769
+ @property
3770
+ @pulumi.getter(name="environmentFilterType")
3771
+ def environment_filter_type(self) -> Optional[str]:
3772
+ """
3773
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3774
+ """
3775
+ return pulumi.get(self, "environment_filter_type")
3776
+
3777
+ @environment_filter_type.setter
3778
+ def environment_filter_type(self, value: Optional[str]):
3779
+ pulumi.set(self, "environment_filter_type", value)
3780
+
3781
+ @property
3782
+ @pulumi.getter(name="environmentId")
3783
+ def environment_id(self) -> Optional[str]:
3784
+ """
3785
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3786
+ """
3787
+ return pulumi.get(self, "environment_id")
3788
+
3789
+ @environment_id.setter
3790
+ def environment_id(self, value: Optional[str]):
3791
+ pulumi.set(self, "environment_id", value)
3792
+
3793
+
3794
+ if not MYPY:
3795
+ class GetEnvironmentVariableOverrideArgsDict(TypedDict):
3796
+ name: str
3797
+ """
3798
+ The name of the variable
3799
+ """
3800
+ service_name: str
3801
+ """
3802
+ The name of the service
3803
+ """
3804
+ type: str
3805
+ """
3806
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
3807
+ """
3808
+ value: str
3809
+ """
3810
+ The value of the service variable
3811
+ """
3812
+ elif False:
3813
+ GetEnvironmentVariableOverrideArgsDict: TypeAlias = Mapping[str, Any]
3814
+
3815
+ @pulumi.input_type
3816
+ class GetEnvironmentVariableOverrideArgs:
3817
+ def __init__(__self__, *,
3818
+ name: str,
3819
+ service_name: str,
3820
+ type: str,
3821
+ value: str):
3822
+ """
3823
+ :param str name: The name of the variable
3824
+ :param str service_name: The name of the service
3825
+ :param str type: The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
3826
+ :param str value: The value of the service variable
3827
+ """
3828
+ pulumi.set(__self__, "name", name)
3829
+ pulumi.set(__self__, "service_name", service_name)
3830
+ pulumi.set(__self__, "type", type)
3831
+ pulumi.set(__self__, "value", value)
3832
+
3833
+ @property
3834
+ @pulumi.getter
3835
+ def name(self) -> str:
3836
+ """
3837
+ The name of the variable
3838
+ """
3839
+ return pulumi.get(self, "name")
3840
+
3841
+ @name.setter
3842
+ def name(self, value: str):
3843
+ pulumi.set(self, "name", value)
3844
+
3845
+ @property
3846
+ @pulumi.getter(name="serviceName")
3847
+ def service_name(self) -> str:
3848
+ """
3849
+ The name of the service
3850
+ """
3851
+ return pulumi.get(self, "service_name")
3852
+
3853
+ @service_name.setter
3854
+ def service_name(self, value: str):
3855
+ pulumi.set(self, "service_name", value)
3856
+
3857
+ @property
3858
+ @pulumi.getter
3859
+ def type(self) -> str:
3860
+ """
3861
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
3862
+ """
3863
+ return pulumi.get(self, "type")
3864
+
3865
+ @type.setter
3866
+ def type(self, value: str):
3867
+ pulumi.set(self, "type", value)
3868
+
3869
+ @property
3870
+ @pulumi.getter
3871
+ def value(self) -> str:
3872
+ """
3873
+ The value of the service variable
3874
+ """
3875
+ return pulumi.get(self, "value")
3876
+
3877
+ @value.setter
3878
+ def value(self, value: str):
3879
+ pulumi.set(self, "value", value)
3880
+
3881
+
3882
+ if not MYPY:
3883
+ class GetSecretManagerUsageScopeArgsDict(TypedDict):
3884
+ application_id: NotRequired[str]
3885
+ """
3886
+ Id of the application to scope to. If empty then this scope applies to all applications.
3887
+ """
3888
+ environment_filter_type: NotRequired[str]
3889
+ """
3890
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3891
+ """
3892
+ environment_id: NotRequired[str]
3893
+ """
3894
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3895
+ """
3896
+ elif False:
3897
+ GetSecretManagerUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
3898
+
3899
+ @pulumi.input_type
3900
+ class GetSecretManagerUsageScopeArgs:
3901
+ def __init__(__self__, *,
3902
+ application_id: Optional[str] = None,
3903
+ environment_filter_type: Optional[str] = None,
3904
+ environment_id: Optional[str] = None):
3905
+ """
3906
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
3907
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3908
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3909
+ """
3910
+ if application_id is not None:
3911
+ pulumi.set(__self__, "application_id", application_id)
3912
+ if environment_filter_type is not None:
3913
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
3914
+ if environment_id is not None:
3915
+ pulumi.set(__self__, "environment_id", environment_id)
3916
+
3917
+ @property
3918
+ @pulumi.getter(name="applicationId")
3919
+ def application_id(self) -> Optional[str]:
3920
+ """
3921
+ Id of the application to scope to. If empty then this scope applies to all applications.
3922
+ """
3923
+ return pulumi.get(self, "application_id")
3924
+
3925
+ @application_id.setter
3926
+ def application_id(self, value: Optional[str]):
3927
+ pulumi.set(self, "application_id", value)
3928
+
3929
+ @property
3930
+ @pulumi.getter(name="environmentFilterType")
3931
+ def environment_filter_type(self) -> Optional[str]:
3932
+ """
3933
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3934
+ """
3935
+ return pulumi.get(self, "environment_filter_type")
3936
+
3937
+ @environment_filter_type.setter
3938
+ def environment_filter_type(self, value: Optional[str]):
3939
+ pulumi.set(self, "environment_filter_type", value)
3940
+
3941
+ @property
3942
+ @pulumi.getter(name="environmentId")
3943
+ def environment_id(self) -> Optional[str]:
3944
+ """
3945
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3946
+ """
3947
+ return pulumi.get(self, "environment_id")
3948
+
3949
+ @environment_id.setter
3950
+ def environment_id(self, value: Optional[str]):
3951
+ pulumi.set(self, "environment_id", value)
3952
+
3953
+
3954
+ if not MYPY:
3955
+ class GetSshCredentialUsageScopeArgsDict(TypedDict):
3956
+ application_id: NotRequired[str]
3957
+ """
3958
+ Id of the application to scope to. If empty then this scope applies to all applications.
3959
+ """
3960
+ environment_filter_type: NotRequired[str]
3961
+ """
3962
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3963
+ """
3964
+ environment_id: NotRequired[str]
3965
+ """
3966
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3967
+ """
3968
+ elif False:
3969
+ GetSshCredentialUsageScopeArgsDict: TypeAlias = Mapping[str, Any]
3970
+
3971
+ @pulumi.input_type
3972
+ class GetSshCredentialUsageScopeArgs:
3973
+ def __init__(__self__, *,
3974
+ application_id: Optional[str] = None,
3975
+ environment_filter_type: Optional[str] = None,
3976
+ environment_id: Optional[str] = None):
3977
+ """
3978
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
3979
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3980
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3981
+ """
3982
+ if application_id is not None:
3983
+ pulumi.set(__self__, "application_id", application_id)
3984
+ if environment_filter_type is not None:
3985
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
3986
+ if environment_id is not None:
3987
+ pulumi.set(__self__, "environment_id", environment_id)
3988
+
3989
+ @property
3990
+ @pulumi.getter(name="applicationId")
3991
+ def application_id(self) -> Optional[str]:
3992
+ """
3993
+ Id of the application to scope to. If empty then this scope applies to all applications.
3994
+ """
3995
+ return pulumi.get(self, "application_id")
3996
+
3997
+ @application_id.setter
3998
+ def application_id(self, value: Optional[str]):
3999
+ pulumi.set(self, "application_id", value)
4000
+
4001
+ @property
4002
+ @pulumi.getter(name="environmentFilterType")
4003
+ def environment_filter_type(self) -> Optional[str]:
4004
+ """
4005
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
4006
+ """
4007
+ return pulumi.get(self, "environment_filter_type")
4008
+
4009
+ @environment_filter_type.setter
4010
+ def environment_filter_type(self, value: Optional[str]):
4011
+ pulumi.set(self, "environment_filter_type", value)
4012
+
4013
+ @property
4014
+ @pulumi.getter(name="environmentId")
4015
+ def environment_id(self) -> Optional[str]:
4016
+ """
4017
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
4018
+ """
4019
+ return pulumi.get(self, "environment_id")
4020
+
4021
+ @environment_id.setter
4022
+ def environment_id(self, value: Optional[str]):
4023
+ pulumi.set(self, "environment_id", value)
4024
+
4025
+