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,3306 @@
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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'EncryptedTextUsageScope',
20
+ 'EnvironmentVariableOverride',
21
+ 'GitConnectorCommitDetails',
22
+ 'GitConnectorUsageScope',
23
+ 'InfrastructureDefinitionAwsAmi',
24
+ 'InfrastructureDefinitionAwsEcs',
25
+ 'InfrastructureDefinitionAwsLambda',
26
+ 'InfrastructureDefinitionAwsSsh',
27
+ 'InfrastructureDefinitionAwsSshTag',
28
+ 'InfrastructureDefinitionAwsWinrm',
29
+ 'InfrastructureDefinitionAzureVmss',
30
+ 'InfrastructureDefinitionAzureWebapp',
31
+ 'InfrastructureDefinitionCustom',
32
+ 'InfrastructureDefinitionCustomVariable',
33
+ 'InfrastructureDefinitionDatacenterSsh',
34
+ 'InfrastructureDefinitionDatacenterWinrm',
35
+ 'InfrastructureDefinitionKubernetes',
36
+ 'InfrastructureDefinitionKubernetesGcp',
37
+ 'InfrastructureDefinitionTanzu',
38
+ 'PlatformCcmFiltersFilterProperties',
39
+ 'SshCredentialKerberosAuthentication',
40
+ 'SshCredentialKerberosAuthenticationTgtGenerationMethod',
41
+ 'SshCredentialSshAuthentication',
42
+ 'SshCredentialSshAuthenticationInlineSsh',
43
+ 'SshCredentialSshAuthenticationServerPassword',
44
+ 'SshCredentialSshAuthenticationSshKeyFile',
45
+ 'SshCredentialUsageScope',
46
+ 'UserGroupLdapSettings',
47
+ 'UserGroupNotificationSettings',
48
+ 'UserGroupPermissions',
49
+ 'UserGroupPermissionsAppPermissions',
50
+ 'UserGroupPermissionsAppPermissionsAll',
51
+ 'UserGroupPermissionsAppPermissionsDeployment',
52
+ 'UserGroupPermissionsAppPermissionsEnvironment',
53
+ 'UserGroupPermissionsAppPermissionsPipeline',
54
+ 'UserGroupPermissionsAppPermissionsProvisioner',
55
+ 'UserGroupPermissionsAppPermissionsService',
56
+ 'UserGroupPermissionsAppPermissionsTemplate',
57
+ 'UserGroupPermissionsAppPermissionsWorkflow',
58
+ 'UserGroupSamlSettings',
59
+ 'GetEncryptedTextUsageScopeResult',
60
+ 'GetEnvironmentVariableOverrideResult',
61
+ 'GetGitConnectorCommitDetailResult',
62
+ 'GetSecretManagerUsageScopeResult',
63
+ 'GetSshCredentialUsageScopeResult',
64
+ 'GetTriggerConditionResult',
65
+ 'GetTriggerConditionOnWebhookResult',
66
+ 'GetTriggerConditionOnWebhookWebhookDetailResult',
67
+ ]
68
+
69
+ @pulumi.output_type
70
+ class EncryptedTextUsageScope(dict):
71
+ @staticmethod
72
+ def __key_warning(key: str):
73
+ suggest = None
74
+ if key == "applicationId":
75
+ suggest = "application_id"
76
+ elif key == "environmentFilterType":
77
+ suggest = "environment_filter_type"
78
+ elif key == "environmentId":
79
+ suggest = "environment_id"
80
+
81
+ if suggest:
82
+ pulumi.log.warn(f"Key '{key}' not found in EncryptedTextUsageScope. Access the value via the '{suggest}' property getter instead.")
83
+
84
+ def __getitem__(self, key: str) -> Any:
85
+ EncryptedTextUsageScope.__key_warning(key)
86
+ return super().__getitem__(key)
87
+
88
+ def get(self, key: str, default = None) -> Any:
89
+ EncryptedTextUsageScope.__key_warning(key)
90
+ return super().get(key, default)
91
+
92
+ def __init__(__self__, *,
93
+ application_id: Optional[str] = None,
94
+ environment_filter_type: Optional[str] = None,
95
+ environment_id: Optional[str] = None):
96
+ """
97
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
98
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
99
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
100
+ """
101
+ if application_id is not None:
102
+ pulumi.set(__self__, "application_id", application_id)
103
+ if environment_filter_type is not None:
104
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
105
+ if environment_id is not None:
106
+ pulumi.set(__self__, "environment_id", environment_id)
107
+
108
+ @property
109
+ @pulumi.getter(name="applicationId")
110
+ def application_id(self) -> Optional[str]:
111
+ """
112
+ Id of the application to scope to. If empty then this scope applies to all applications.
113
+ """
114
+ return pulumi.get(self, "application_id")
115
+
116
+ @property
117
+ @pulumi.getter(name="environmentFilterType")
118
+ def environment_filter_type(self) -> Optional[str]:
119
+ """
120
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
121
+ """
122
+ return pulumi.get(self, "environment_filter_type")
123
+
124
+ @property
125
+ @pulumi.getter(name="environmentId")
126
+ def environment_id(self) -> Optional[str]:
127
+ """
128
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
129
+ """
130
+ return pulumi.get(self, "environment_id")
131
+
132
+
133
+ @pulumi.output_type
134
+ class EnvironmentVariableOverride(dict):
135
+ @staticmethod
136
+ def __key_warning(key: str):
137
+ suggest = None
138
+ if key == "serviceName":
139
+ suggest = "service_name"
140
+
141
+ if suggest:
142
+ pulumi.log.warn(f"Key '{key}' not found in EnvironmentVariableOverride. Access the value via the '{suggest}' property getter instead.")
143
+
144
+ def __getitem__(self, key: str) -> Any:
145
+ EnvironmentVariableOverride.__key_warning(key)
146
+ return super().__getitem__(key)
147
+
148
+ def get(self, key: str, default = None) -> Any:
149
+ EnvironmentVariableOverride.__key_warning(key)
150
+ return super().get(key, default)
151
+
152
+ def __init__(__self__, *,
153
+ name: str,
154
+ type: str,
155
+ value: str,
156
+ service_name: Optional[str] = None):
157
+ """
158
+ :param str name: The name of the variable
159
+ :param str type: The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
160
+ :param str value: The value of the service variable
161
+ :param str service_name: The name of the service
162
+ """
163
+ pulumi.set(__self__, "name", name)
164
+ pulumi.set(__self__, "type", type)
165
+ pulumi.set(__self__, "value", value)
166
+ if service_name is not None:
167
+ pulumi.set(__self__, "service_name", service_name)
168
+
169
+ @property
170
+ @pulumi.getter
171
+ def name(self) -> str:
172
+ """
173
+ The name of the variable
174
+ """
175
+ return pulumi.get(self, "name")
176
+
177
+ @property
178
+ @pulumi.getter
179
+ def type(self) -> str:
180
+ """
181
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
182
+ """
183
+ return pulumi.get(self, "type")
184
+
185
+ @property
186
+ @pulumi.getter
187
+ def value(self) -> str:
188
+ """
189
+ The value of the service variable
190
+ """
191
+ return pulumi.get(self, "value")
192
+
193
+ @property
194
+ @pulumi.getter(name="serviceName")
195
+ def service_name(self) -> Optional[str]:
196
+ """
197
+ The name of the service
198
+ """
199
+ return pulumi.get(self, "service_name")
200
+
201
+
202
+ @pulumi.output_type
203
+ class GitConnectorCommitDetails(dict):
204
+ @staticmethod
205
+ def __key_warning(key: str):
206
+ suggest = None
207
+ if key == "authorEmailId":
208
+ suggest = "author_email_id"
209
+ elif key == "authorName":
210
+ suggest = "author_name"
211
+
212
+ if suggest:
213
+ pulumi.log.warn(f"Key '{key}' not found in GitConnectorCommitDetails. Access the value via the '{suggest}' property getter instead.")
214
+
215
+ def __getitem__(self, key: str) -> Any:
216
+ GitConnectorCommitDetails.__key_warning(key)
217
+ return super().__getitem__(key)
218
+
219
+ def get(self, key: str, default = None) -> Any:
220
+ GitConnectorCommitDetails.__key_warning(key)
221
+ return super().get(key, default)
222
+
223
+ def __init__(__self__, *,
224
+ author_email_id: Optional[str] = None,
225
+ author_name: Optional[str] = None,
226
+ message: Optional[str] = None):
227
+ """
228
+ :param str author_email_id: The email id of the author
229
+ :param str author_name: The name of the author
230
+ :param str message: Commit message
231
+ """
232
+ if author_email_id is not None:
233
+ pulumi.set(__self__, "author_email_id", author_email_id)
234
+ if author_name is not None:
235
+ pulumi.set(__self__, "author_name", author_name)
236
+ if message is not None:
237
+ pulumi.set(__self__, "message", message)
238
+
239
+ @property
240
+ @pulumi.getter(name="authorEmailId")
241
+ def author_email_id(self) -> Optional[str]:
242
+ """
243
+ The email id of the author
244
+ """
245
+ return pulumi.get(self, "author_email_id")
246
+
247
+ @property
248
+ @pulumi.getter(name="authorName")
249
+ def author_name(self) -> Optional[str]:
250
+ """
251
+ The name of the author
252
+ """
253
+ return pulumi.get(self, "author_name")
254
+
255
+ @property
256
+ @pulumi.getter
257
+ def message(self) -> Optional[str]:
258
+ """
259
+ Commit message
260
+ """
261
+ return pulumi.get(self, "message")
262
+
263
+
264
+ @pulumi.output_type
265
+ class GitConnectorUsageScope(dict):
266
+ @staticmethod
267
+ def __key_warning(key: str):
268
+ suggest = None
269
+ if key == "applicationId":
270
+ suggest = "application_id"
271
+ elif key == "environmentFilterType":
272
+ suggest = "environment_filter_type"
273
+ elif key == "environmentId":
274
+ suggest = "environment_id"
275
+
276
+ if suggest:
277
+ pulumi.log.warn(f"Key '{key}' not found in GitConnectorUsageScope. Access the value via the '{suggest}' property getter instead.")
278
+
279
+ def __getitem__(self, key: str) -> Any:
280
+ GitConnectorUsageScope.__key_warning(key)
281
+ return super().__getitem__(key)
282
+
283
+ def get(self, key: str, default = None) -> Any:
284
+ GitConnectorUsageScope.__key_warning(key)
285
+ return super().get(key, default)
286
+
287
+ def __init__(__self__, *,
288
+ application_id: Optional[str] = None,
289
+ environment_filter_type: Optional[str] = None,
290
+ environment_id: Optional[str] = None):
291
+ """
292
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
293
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
294
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
295
+ """
296
+ if application_id is not None:
297
+ pulumi.set(__self__, "application_id", application_id)
298
+ if environment_filter_type is not None:
299
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
300
+ if environment_id is not None:
301
+ pulumi.set(__self__, "environment_id", environment_id)
302
+
303
+ @property
304
+ @pulumi.getter(name="applicationId")
305
+ def application_id(self) -> Optional[str]:
306
+ """
307
+ Id of the application to scope to. If empty then this scope applies to all applications.
308
+ """
309
+ return pulumi.get(self, "application_id")
310
+
311
+ @property
312
+ @pulumi.getter(name="environmentFilterType")
313
+ def environment_filter_type(self) -> Optional[str]:
314
+ """
315
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
316
+ """
317
+ return pulumi.get(self, "environment_filter_type")
318
+
319
+ @property
320
+ @pulumi.getter(name="environmentId")
321
+ def environment_id(self) -> Optional[str]:
322
+ """
323
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
324
+ """
325
+ return pulumi.get(self, "environment_id")
326
+
327
+
328
+ @pulumi.output_type
329
+ class InfrastructureDefinitionAwsAmi(dict):
330
+ @staticmethod
331
+ def __key_warning(key: str):
332
+ suggest = None
333
+ if key == "amiDeploymentType":
334
+ suggest = "ami_deployment_type"
335
+ elif key == "cloudProviderName":
336
+ suggest = "cloud_provider_name"
337
+ elif key == "asgIdentifiesWorkload":
338
+ suggest = "asg_identifies_workload"
339
+ elif key == "autoscalingGroupName":
340
+ suggest = "autoscaling_group_name"
341
+ elif key == "classicLoadbalancers":
342
+ suggest = "classic_loadbalancers"
343
+ elif key == "hostnameConvention":
344
+ suggest = "hostname_convention"
345
+ elif key == "spotinstCloudProviderName":
346
+ suggest = "spotinst_cloud_provider_name"
347
+ elif key == "spotinstConfigJson":
348
+ suggest = "spotinst_config_json"
349
+ elif key == "stageClassicLoadbalancers":
350
+ suggest = "stage_classic_loadbalancers"
351
+ elif key == "stageTargetGroupArns":
352
+ suggest = "stage_target_group_arns"
353
+ elif key == "targetGroupArns":
354
+ suggest = "target_group_arns"
355
+ elif key == "useTrafficShift":
356
+ suggest = "use_traffic_shift"
357
+
358
+ if suggest:
359
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAwsAmi. Access the value via the '{suggest}' property getter instead.")
360
+
361
+ def __getitem__(self, key: str) -> Any:
362
+ InfrastructureDefinitionAwsAmi.__key_warning(key)
363
+ return super().__getitem__(key)
364
+
365
+ def get(self, key: str, default = None) -> Any:
366
+ InfrastructureDefinitionAwsAmi.__key_warning(key)
367
+ return super().get(key, default)
368
+
369
+ def __init__(__self__, *,
370
+ ami_deployment_type: str,
371
+ cloud_provider_name: str,
372
+ region: str,
373
+ asg_identifies_workload: Optional[bool] = None,
374
+ autoscaling_group_name: Optional[str] = None,
375
+ classic_loadbalancers: Optional[Sequence[str]] = None,
376
+ hostname_convention: Optional[str] = None,
377
+ spotinst_cloud_provider_name: Optional[str] = None,
378
+ spotinst_config_json: Optional[str] = None,
379
+ stage_classic_loadbalancers: Optional[Sequence[str]] = None,
380
+ stage_target_group_arns: Optional[Sequence[str]] = None,
381
+ target_group_arns: Optional[Sequence[str]] = None,
382
+ use_traffic_shift: Optional[bool] = None):
383
+ """
384
+ :param str ami_deployment_type: The ami deployment type to use. Valid options are AWS_ASG, SPOTINST
385
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
386
+ :param str region: The region to deploy to.
387
+ :param bool asg_identifies_workload: Flag to indicate whether the autoscaling group identifies the workload.
388
+ :param str autoscaling_group_name: The name of the autoscaling group.
389
+ :param Sequence[str] classic_loadbalancers: The classic load balancers to use.
390
+ :param str hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
391
+ :param str spotinst_cloud_provider_name: The name of the SpotInst cloud provider to connect with.
392
+ :param str spotinst_config_json: The SpotInst configuration to use.
393
+ :param Sequence[str] stage_classic_loadbalancers: The staging classic load balancers to use.
394
+ :param Sequence[str] stage_target_group_arns: The staging classic load balancers to use.
395
+ :param Sequence[str] target_group_arns: The ARN's of the target groups.
396
+ :param bool use_traffic_shift: Flag to enable traffic shifting.
397
+ """
398
+ pulumi.set(__self__, "ami_deployment_type", ami_deployment_type)
399
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
400
+ pulumi.set(__self__, "region", region)
401
+ if asg_identifies_workload is not None:
402
+ pulumi.set(__self__, "asg_identifies_workload", asg_identifies_workload)
403
+ if autoscaling_group_name is not None:
404
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
405
+ if classic_loadbalancers is not None:
406
+ pulumi.set(__self__, "classic_loadbalancers", classic_loadbalancers)
407
+ if hostname_convention is not None:
408
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
409
+ if spotinst_cloud_provider_name is not None:
410
+ pulumi.set(__self__, "spotinst_cloud_provider_name", spotinst_cloud_provider_name)
411
+ if spotinst_config_json is not None:
412
+ pulumi.set(__self__, "spotinst_config_json", spotinst_config_json)
413
+ if stage_classic_loadbalancers is not None:
414
+ pulumi.set(__self__, "stage_classic_loadbalancers", stage_classic_loadbalancers)
415
+ if stage_target_group_arns is not None:
416
+ pulumi.set(__self__, "stage_target_group_arns", stage_target_group_arns)
417
+ if target_group_arns is not None:
418
+ pulumi.set(__self__, "target_group_arns", target_group_arns)
419
+ if use_traffic_shift is not None:
420
+ pulumi.set(__self__, "use_traffic_shift", use_traffic_shift)
421
+
422
+ @property
423
+ @pulumi.getter(name="amiDeploymentType")
424
+ def ami_deployment_type(self) -> str:
425
+ """
426
+ The ami deployment type to use. Valid options are AWS_ASG, SPOTINST
427
+ """
428
+ return pulumi.get(self, "ami_deployment_type")
429
+
430
+ @property
431
+ @pulumi.getter(name="cloudProviderName")
432
+ def cloud_provider_name(self) -> str:
433
+ """
434
+ The name of the cloud provider to connect with.
435
+ """
436
+ return pulumi.get(self, "cloud_provider_name")
437
+
438
+ @property
439
+ @pulumi.getter
440
+ def region(self) -> str:
441
+ """
442
+ The region to deploy to.
443
+ """
444
+ return pulumi.get(self, "region")
445
+
446
+ @property
447
+ @pulumi.getter(name="asgIdentifiesWorkload")
448
+ def asg_identifies_workload(self) -> Optional[bool]:
449
+ """
450
+ Flag to indicate whether the autoscaling group identifies the workload.
451
+ """
452
+ return pulumi.get(self, "asg_identifies_workload")
453
+
454
+ @property
455
+ @pulumi.getter(name="autoscalingGroupName")
456
+ def autoscaling_group_name(self) -> Optional[str]:
457
+ """
458
+ The name of the autoscaling group.
459
+ """
460
+ return pulumi.get(self, "autoscaling_group_name")
461
+
462
+ @property
463
+ @pulumi.getter(name="classicLoadbalancers")
464
+ def classic_loadbalancers(self) -> Optional[Sequence[str]]:
465
+ """
466
+ The classic load balancers to use.
467
+ """
468
+ return pulumi.get(self, "classic_loadbalancers")
469
+
470
+ @property
471
+ @pulumi.getter(name="hostnameConvention")
472
+ def hostname_convention(self) -> Optional[str]:
473
+ """
474
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
475
+ """
476
+ return pulumi.get(self, "hostname_convention")
477
+
478
+ @property
479
+ @pulumi.getter(name="spotinstCloudProviderName")
480
+ def spotinst_cloud_provider_name(self) -> Optional[str]:
481
+ """
482
+ The name of the SpotInst cloud provider to connect with.
483
+ """
484
+ return pulumi.get(self, "spotinst_cloud_provider_name")
485
+
486
+ @property
487
+ @pulumi.getter(name="spotinstConfigJson")
488
+ def spotinst_config_json(self) -> Optional[str]:
489
+ """
490
+ The SpotInst configuration to use.
491
+ """
492
+ return pulumi.get(self, "spotinst_config_json")
493
+
494
+ @property
495
+ @pulumi.getter(name="stageClassicLoadbalancers")
496
+ def stage_classic_loadbalancers(self) -> Optional[Sequence[str]]:
497
+ """
498
+ The staging classic load balancers to use.
499
+ """
500
+ return pulumi.get(self, "stage_classic_loadbalancers")
501
+
502
+ @property
503
+ @pulumi.getter(name="stageTargetGroupArns")
504
+ def stage_target_group_arns(self) -> Optional[Sequence[str]]:
505
+ """
506
+ The staging classic load balancers to use.
507
+ """
508
+ return pulumi.get(self, "stage_target_group_arns")
509
+
510
+ @property
511
+ @pulumi.getter(name="targetGroupArns")
512
+ def target_group_arns(self) -> Optional[Sequence[str]]:
513
+ """
514
+ The ARN's of the target groups.
515
+ """
516
+ return pulumi.get(self, "target_group_arns")
517
+
518
+ @property
519
+ @pulumi.getter(name="useTrafficShift")
520
+ def use_traffic_shift(self) -> Optional[bool]:
521
+ """
522
+ Flag to enable traffic shifting.
523
+ """
524
+ return pulumi.get(self, "use_traffic_shift")
525
+
526
+
527
+ @pulumi.output_type
528
+ class InfrastructureDefinitionAwsEcs(dict):
529
+ @staticmethod
530
+ def __key_warning(key: str):
531
+ suggest = None
532
+ if key == "cloudProviderName":
533
+ suggest = "cloud_provider_name"
534
+ elif key == "clusterName":
535
+ suggest = "cluster_name"
536
+ elif key == "launchType":
537
+ suggest = "launch_type"
538
+ elif key == "assignPublicIp":
539
+ suggest = "assign_public_ip"
540
+ elif key == "executionRole":
541
+ suggest = "execution_role"
542
+ elif key == "securityGroupIds":
543
+ suggest = "security_group_ids"
544
+ elif key == "subnetIds":
545
+ suggest = "subnet_ids"
546
+ elif key == "vpcId":
547
+ suggest = "vpc_id"
548
+
549
+ if suggest:
550
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAwsEcs. Access the value via the '{suggest}' property getter instead.")
551
+
552
+ def __getitem__(self, key: str) -> Any:
553
+ InfrastructureDefinitionAwsEcs.__key_warning(key)
554
+ return super().__getitem__(key)
555
+
556
+ def get(self, key: str, default = None) -> Any:
557
+ InfrastructureDefinitionAwsEcs.__key_warning(key)
558
+ return super().get(key, default)
559
+
560
+ def __init__(__self__, *,
561
+ cloud_provider_name: str,
562
+ cluster_name: str,
563
+ launch_type: str,
564
+ region: str,
565
+ assign_public_ip: Optional[bool] = None,
566
+ execution_role: Optional[str] = None,
567
+ security_group_ids: Optional[Sequence[str]] = None,
568
+ subnet_ids: Optional[Sequence[str]] = None,
569
+ vpc_id: Optional[str] = None):
570
+ """
571
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
572
+ :param str cluster_name: The name of the ECS cluster to use.
573
+ :param str launch_type: The type of launch configuration to use. Valid options are FARGATE
574
+ :param str region: The region to deploy to.
575
+ :param bool assign_public_ip: Flag to assign a public IP address.
576
+ :param str execution_role: The ARN of the role to use for execution.
577
+ :param Sequence[str] security_group_ids: The security group ids to apply to the ecs service.
578
+ :param Sequence[str] subnet_ids: The subnet ids to apply to the ecs service.
579
+ :param str vpc_id: The VPC ids to use when selecting the instances.
580
+ """
581
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
582
+ pulumi.set(__self__, "cluster_name", cluster_name)
583
+ pulumi.set(__self__, "launch_type", launch_type)
584
+ pulumi.set(__self__, "region", region)
585
+ if assign_public_ip is not None:
586
+ pulumi.set(__self__, "assign_public_ip", assign_public_ip)
587
+ if execution_role is not None:
588
+ pulumi.set(__self__, "execution_role", execution_role)
589
+ if security_group_ids is not None:
590
+ pulumi.set(__self__, "security_group_ids", security_group_ids)
591
+ if subnet_ids is not None:
592
+ pulumi.set(__self__, "subnet_ids", subnet_ids)
593
+ if vpc_id is not None:
594
+ pulumi.set(__self__, "vpc_id", vpc_id)
595
+
596
+ @property
597
+ @pulumi.getter(name="cloudProviderName")
598
+ def cloud_provider_name(self) -> str:
599
+ """
600
+ The name of the cloud provider to connect with.
601
+ """
602
+ return pulumi.get(self, "cloud_provider_name")
603
+
604
+ @property
605
+ @pulumi.getter(name="clusterName")
606
+ def cluster_name(self) -> str:
607
+ """
608
+ The name of the ECS cluster to use.
609
+ """
610
+ return pulumi.get(self, "cluster_name")
611
+
612
+ @property
613
+ @pulumi.getter(name="launchType")
614
+ def launch_type(self) -> str:
615
+ """
616
+ The type of launch configuration to use. Valid options are FARGATE
617
+ """
618
+ return pulumi.get(self, "launch_type")
619
+
620
+ @property
621
+ @pulumi.getter
622
+ def region(self) -> str:
623
+ """
624
+ The region to deploy to.
625
+ """
626
+ return pulumi.get(self, "region")
627
+
628
+ @property
629
+ @pulumi.getter(name="assignPublicIp")
630
+ def assign_public_ip(self) -> Optional[bool]:
631
+ """
632
+ Flag to assign a public IP address.
633
+ """
634
+ return pulumi.get(self, "assign_public_ip")
635
+
636
+ @property
637
+ @pulumi.getter(name="executionRole")
638
+ def execution_role(self) -> Optional[str]:
639
+ """
640
+ The ARN of the role to use for execution.
641
+ """
642
+ return pulumi.get(self, "execution_role")
643
+
644
+ @property
645
+ @pulumi.getter(name="securityGroupIds")
646
+ def security_group_ids(self) -> Optional[Sequence[str]]:
647
+ """
648
+ The security group ids to apply to the ecs service.
649
+ """
650
+ return pulumi.get(self, "security_group_ids")
651
+
652
+ @property
653
+ @pulumi.getter(name="subnetIds")
654
+ def subnet_ids(self) -> Optional[Sequence[str]]:
655
+ """
656
+ The subnet ids to apply to the ecs service.
657
+ """
658
+ return pulumi.get(self, "subnet_ids")
659
+
660
+ @property
661
+ @pulumi.getter(name="vpcId")
662
+ def vpc_id(self) -> Optional[str]:
663
+ """
664
+ The VPC ids to use when selecting the instances.
665
+ """
666
+ return pulumi.get(self, "vpc_id")
667
+
668
+
669
+ @pulumi.output_type
670
+ class InfrastructureDefinitionAwsLambda(dict):
671
+ @staticmethod
672
+ def __key_warning(key: str):
673
+ suggest = None
674
+ if key == "cloudProviderName":
675
+ suggest = "cloud_provider_name"
676
+ elif key == "iamRole":
677
+ suggest = "iam_role"
678
+ elif key == "securityGroupIds":
679
+ suggest = "security_group_ids"
680
+ elif key == "subnetIds":
681
+ suggest = "subnet_ids"
682
+ elif key == "vpcId":
683
+ suggest = "vpc_id"
684
+
685
+ if suggest:
686
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAwsLambda. Access the value via the '{suggest}' property getter instead.")
687
+
688
+ def __getitem__(self, key: str) -> Any:
689
+ InfrastructureDefinitionAwsLambda.__key_warning(key)
690
+ return super().__getitem__(key)
691
+
692
+ def get(self, key: str, default = None) -> Any:
693
+ InfrastructureDefinitionAwsLambda.__key_warning(key)
694
+ return super().get(key, default)
695
+
696
+ def __init__(__self__, *,
697
+ cloud_provider_name: str,
698
+ region: str,
699
+ iam_role: Optional[str] = None,
700
+ security_group_ids: Optional[Sequence[str]] = None,
701
+ subnet_ids: Optional[Sequence[str]] = None,
702
+ vpc_id: Optional[str] = None):
703
+ """
704
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
705
+ :param str region: The region to deploy to.
706
+ :param str iam_role: The IAM role to use.
707
+ :param Sequence[str] security_group_ids: The security group ids to apply to the ecs service.
708
+ :param Sequence[str] subnet_ids: The subnet ids to apply to the ecs service.
709
+ :param str vpc_id: The VPC ids to use when selecting the instances.
710
+ """
711
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
712
+ pulumi.set(__self__, "region", region)
713
+ if iam_role is not None:
714
+ pulumi.set(__self__, "iam_role", iam_role)
715
+ if security_group_ids is not None:
716
+ pulumi.set(__self__, "security_group_ids", security_group_ids)
717
+ if subnet_ids is not None:
718
+ pulumi.set(__self__, "subnet_ids", subnet_ids)
719
+ if vpc_id is not None:
720
+ pulumi.set(__self__, "vpc_id", vpc_id)
721
+
722
+ @property
723
+ @pulumi.getter(name="cloudProviderName")
724
+ def cloud_provider_name(self) -> str:
725
+ """
726
+ The name of the cloud provider to connect with.
727
+ """
728
+ return pulumi.get(self, "cloud_provider_name")
729
+
730
+ @property
731
+ @pulumi.getter
732
+ def region(self) -> str:
733
+ """
734
+ The region to deploy to.
735
+ """
736
+ return pulumi.get(self, "region")
737
+
738
+ @property
739
+ @pulumi.getter(name="iamRole")
740
+ def iam_role(self) -> Optional[str]:
741
+ """
742
+ The IAM role to use.
743
+ """
744
+ return pulumi.get(self, "iam_role")
745
+
746
+ @property
747
+ @pulumi.getter(name="securityGroupIds")
748
+ def security_group_ids(self) -> Optional[Sequence[str]]:
749
+ """
750
+ The security group ids to apply to the ecs service.
751
+ """
752
+ return pulumi.get(self, "security_group_ids")
753
+
754
+ @property
755
+ @pulumi.getter(name="subnetIds")
756
+ def subnet_ids(self) -> Optional[Sequence[str]]:
757
+ """
758
+ The subnet ids to apply to the ecs service.
759
+ """
760
+ return pulumi.get(self, "subnet_ids")
761
+
762
+ @property
763
+ @pulumi.getter(name="vpcId")
764
+ def vpc_id(self) -> Optional[str]:
765
+ """
766
+ The VPC ids to use when selecting the instances.
767
+ """
768
+ return pulumi.get(self, "vpc_id")
769
+
770
+
771
+ @pulumi.output_type
772
+ class InfrastructureDefinitionAwsSsh(dict):
773
+ @staticmethod
774
+ def __key_warning(key: str):
775
+ suggest = None
776
+ if key == "cloudProviderName":
777
+ suggest = "cloud_provider_name"
778
+ elif key == "hostConnectionType":
779
+ suggest = "host_connection_type"
780
+ elif key == "autoscalingGroupName":
781
+ suggest = "autoscaling_group_name"
782
+ elif key == "desiredCapacity":
783
+ suggest = "desired_capacity"
784
+ elif key == "hostConnectionAttrsName":
785
+ suggest = "host_connection_attrs_name"
786
+ elif key == "hostnameConvention":
787
+ suggest = "hostname_convention"
788
+ elif key == "loadbalancerName":
789
+ suggest = "loadbalancer_name"
790
+ elif key == "vpcIds":
791
+ suggest = "vpc_ids"
792
+
793
+ if suggest:
794
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAwsSsh. Access the value via the '{suggest}' property getter instead.")
795
+
796
+ def __getitem__(self, key: str) -> Any:
797
+ InfrastructureDefinitionAwsSsh.__key_warning(key)
798
+ return super().__getitem__(key)
799
+
800
+ def get(self, key: str, default = None) -> Any:
801
+ InfrastructureDefinitionAwsSsh.__key_warning(key)
802
+ return super().get(key, default)
803
+
804
+ def __init__(__self__, *,
805
+ cloud_provider_name: str,
806
+ host_connection_type: str,
807
+ region: str,
808
+ autoscaling_group_name: Optional[str] = None,
809
+ desired_capacity: Optional[int] = None,
810
+ host_connection_attrs_name: Optional[str] = None,
811
+ hostname_convention: Optional[str] = None,
812
+ loadbalancer_name: Optional[str] = None,
813
+ tags: Optional[Sequence['outputs.InfrastructureDefinitionAwsSshTag']] = None,
814
+ vpc_ids: Optional[Sequence[str]] = None):
815
+ """
816
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
817
+ :param str host_connection_type: The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
818
+ :param str region: The region to deploy to.
819
+ :param str autoscaling_group_name: The name of the autoscaling group.
820
+ :param int desired_capacity: The desired capacity of the auto scaling group.
821
+ :param str host_connection_attrs_name: The name of the host connection attributes to use.
822
+ :param str hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
823
+ :param str loadbalancer_name: The name of the load balancer to use.
824
+ :param Sequence['InfrastructureDefinitionAwsSshTagArgs'] tags: The tags to use when selecting the instances.
825
+ :param Sequence[str] vpc_ids: The VPC ids to use when selecting the instances.
826
+ """
827
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
828
+ pulumi.set(__self__, "host_connection_type", host_connection_type)
829
+ pulumi.set(__self__, "region", region)
830
+ if autoscaling_group_name is not None:
831
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
832
+ if desired_capacity is not None:
833
+ pulumi.set(__self__, "desired_capacity", desired_capacity)
834
+ if host_connection_attrs_name is not None:
835
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
836
+ if hostname_convention is not None:
837
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
838
+ if loadbalancer_name is not None:
839
+ pulumi.set(__self__, "loadbalancer_name", loadbalancer_name)
840
+ if tags is not None:
841
+ pulumi.set(__self__, "tags", tags)
842
+ if vpc_ids is not None:
843
+ pulumi.set(__self__, "vpc_ids", vpc_ids)
844
+
845
+ @property
846
+ @pulumi.getter(name="cloudProviderName")
847
+ def cloud_provider_name(self) -> str:
848
+ """
849
+ The name of the cloud provider to connect with.
850
+ """
851
+ return pulumi.get(self, "cloud_provider_name")
852
+
853
+ @property
854
+ @pulumi.getter(name="hostConnectionType")
855
+ def host_connection_type(self) -> str:
856
+ """
857
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
858
+ """
859
+ return pulumi.get(self, "host_connection_type")
860
+
861
+ @property
862
+ @pulumi.getter
863
+ def region(self) -> str:
864
+ """
865
+ The region to deploy to.
866
+ """
867
+ return pulumi.get(self, "region")
868
+
869
+ @property
870
+ @pulumi.getter(name="autoscalingGroupName")
871
+ def autoscaling_group_name(self) -> Optional[str]:
872
+ """
873
+ The name of the autoscaling group.
874
+ """
875
+ return pulumi.get(self, "autoscaling_group_name")
876
+
877
+ @property
878
+ @pulumi.getter(name="desiredCapacity")
879
+ def desired_capacity(self) -> Optional[int]:
880
+ """
881
+ The desired capacity of the auto scaling group.
882
+ """
883
+ return pulumi.get(self, "desired_capacity")
884
+
885
+ @property
886
+ @pulumi.getter(name="hostConnectionAttrsName")
887
+ def host_connection_attrs_name(self) -> Optional[str]:
888
+ """
889
+ The name of the host connection attributes to use.
890
+ """
891
+ return pulumi.get(self, "host_connection_attrs_name")
892
+
893
+ @property
894
+ @pulumi.getter(name="hostnameConvention")
895
+ def hostname_convention(self) -> Optional[str]:
896
+ """
897
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
898
+ """
899
+ return pulumi.get(self, "hostname_convention")
900
+
901
+ @property
902
+ @pulumi.getter(name="loadbalancerName")
903
+ def loadbalancer_name(self) -> Optional[str]:
904
+ """
905
+ The name of the load balancer to use.
906
+ """
907
+ return pulumi.get(self, "loadbalancer_name")
908
+
909
+ @property
910
+ @pulumi.getter
911
+ def tags(self) -> Optional[Sequence['outputs.InfrastructureDefinitionAwsSshTag']]:
912
+ """
913
+ The tags to use when selecting the instances.
914
+ """
915
+ return pulumi.get(self, "tags")
916
+
917
+ @property
918
+ @pulumi.getter(name="vpcIds")
919
+ def vpc_ids(self) -> Optional[Sequence[str]]:
920
+ """
921
+ The VPC ids to use when selecting the instances.
922
+ """
923
+ return pulumi.get(self, "vpc_ids")
924
+
925
+
926
+ @pulumi.output_type
927
+ class InfrastructureDefinitionAwsSshTag(dict):
928
+ def __init__(__self__, *,
929
+ key: str,
930
+ value: str):
931
+ """
932
+ :param str key: The key of the tag.
933
+ :param str value: The value of the tag.
934
+ """
935
+ pulumi.set(__self__, "key", key)
936
+ pulumi.set(__self__, "value", value)
937
+
938
+ @property
939
+ @pulumi.getter
940
+ def key(self) -> str:
941
+ """
942
+ The key of the tag.
943
+ """
944
+ return pulumi.get(self, "key")
945
+
946
+ @property
947
+ @pulumi.getter
948
+ def value(self) -> str:
949
+ """
950
+ The value of the tag.
951
+ """
952
+ return pulumi.get(self, "value")
953
+
954
+
955
+ @pulumi.output_type
956
+ class InfrastructureDefinitionAwsWinrm(dict):
957
+ @staticmethod
958
+ def __key_warning(key: str):
959
+ suggest = None
960
+ if key == "autoscalingGroupName":
961
+ suggest = "autoscaling_group_name"
962
+ elif key == "cloudProviderName":
963
+ suggest = "cloud_provider_name"
964
+ elif key == "hostConnectionAttrsName":
965
+ suggest = "host_connection_attrs_name"
966
+ elif key == "hostConnectionType":
967
+ suggest = "host_connection_type"
968
+ elif key == "desiredCapacity":
969
+ suggest = "desired_capacity"
970
+ elif key == "hostnameConvention":
971
+ suggest = "hostname_convention"
972
+ elif key == "loadbalancerName":
973
+ suggest = "loadbalancer_name"
974
+
975
+ if suggest:
976
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAwsWinrm. Access the value via the '{suggest}' property getter instead.")
977
+
978
+ def __getitem__(self, key: str) -> Any:
979
+ InfrastructureDefinitionAwsWinrm.__key_warning(key)
980
+ return super().__getitem__(key)
981
+
982
+ def get(self, key: str, default = None) -> Any:
983
+ InfrastructureDefinitionAwsWinrm.__key_warning(key)
984
+ return super().get(key, default)
985
+
986
+ def __init__(__self__, *,
987
+ autoscaling_group_name: str,
988
+ cloud_provider_name: str,
989
+ host_connection_attrs_name: str,
990
+ host_connection_type: str,
991
+ region: str,
992
+ desired_capacity: Optional[int] = None,
993
+ hostname_convention: Optional[str] = None,
994
+ loadbalancer_name: Optional[str] = None):
995
+ """
996
+ :param str autoscaling_group_name: The name of the autoscaling group.
997
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
998
+ :param str host_connection_attrs_name: The name of the host connection attributes to use.
999
+ :param str host_connection_type: The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1000
+ :param str region: The region to deploy to.
1001
+ :param int desired_capacity: The desired capacity of the autoscaling group.
1002
+ :param str hostname_convention: The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1003
+ :param str loadbalancer_name: The name of the load balancer to use.
1004
+ """
1005
+ pulumi.set(__self__, "autoscaling_group_name", autoscaling_group_name)
1006
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1007
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
1008
+ pulumi.set(__self__, "host_connection_type", host_connection_type)
1009
+ pulumi.set(__self__, "region", region)
1010
+ if desired_capacity is not None:
1011
+ pulumi.set(__self__, "desired_capacity", desired_capacity)
1012
+ if hostname_convention is not None:
1013
+ pulumi.set(__self__, "hostname_convention", hostname_convention)
1014
+ if loadbalancer_name is not None:
1015
+ pulumi.set(__self__, "loadbalancer_name", loadbalancer_name)
1016
+
1017
+ @property
1018
+ @pulumi.getter(name="autoscalingGroupName")
1019
+ def autoscaling_group_name(self) -> str:
1020
+ """
1021
+ The name of the autoscaling group.
1022
+ """
1023
+ return pulumi.get(self, "autoscaling_group_name")
1024
+
1025
+ @property
1026
+ @pulumi.getter(name="cloudProviderName")
1027
+ def cloud_provider_name(self) -> str:
1028
+ """
1029
+ The name of the cloud provider to connect with.
1030
+ """
1031
+ return pulumi.get(self, "cloud_provider_name")
1032
+
1033
+ @property
1034
+ @pulumi.getter(name="hostConnectionAttrsName")
1035
+ def host_connection_attrs_name(self) -> str:
1036
+ """
1037
+ The name of the host connection attributes to use.
1038
+ """
1039
+ return pulumi.get(self, "host_connection_attrs_name")
1040
+
1041
+ @property
1042
+ @pulumi.getter(name="hostConnectionType")
1043
+ def host_connection_type(self) -> str:
1044
+ """
1045
+ The type of host connection to use. Valid options are PRIVATE*DNS, PUBLIC*DNS, PRIVATE*IP, PUBLIC*IP
1046
+ """
1047
+ return pulumi.get(self, "host_connection_type")
1048
+
1049
+ @property
1050
+ @pulumi.getter
1051
+ def region(self) -> str:
1052
+ """
1053
+ The region to deploy to.
1054
+ """
1055
+ return pulumi.get(self, "region")
1056
+
1057
+ @property
1058
+ @pulumi.getter(name="desiredCapacity")
1059
+ def desired_capacity(self) -> Optional[int]:
1060
+ """
1061
+ The desired capacity of the autoscaling group.
1062
+ """
1063
+ return pulumi.get(self, "desired_capacity")
1064
+
1065
+ @property
1066
+ @pulumi.getter(name="hostnameConvention")
1067
+ def hostname_convention(self) -> Optional[str]:
1068
+ """
1069
+ The naming convention to use for the hostname. Defaults to ${host.ec2Instance.privateDnsName.split('.')[0]}
1070
+ """
1071
+ return pulumi.get(self, "hostname_convention")
1072
+
1073
+ @property
1074
+ @pulumi.getter(name="loadbalancerName")
1075
+ def loadbalancer_name(self) -> Optional[str]:
1076
+ """
1077
+ The name of the load balancer to use.
1078
+ """
1079
+ return pulumi.get(self, "loadbalancer_name")
1080
+
1081
+
1082
+ @pulumi.output_type
1083
+ class InfrastructureDefinitionAzureVmss(dict):
1084
+ @staticmethod
1085
+ def __key_warning(key: str):
1086
+ suggest = None
1087
+ if key == "authType":
1088
+ suggest = "auth_type"
1089
+ elif key == "baseName":
1090
+ suggest = "base_name"
1091
+ elif key == "cloudProviderName":
1092
+ suggest = "cloud_provider_name"
1093
+ elif key == "deploymentType":
1094
+ suggest = "deployment_type"
1095
+ elif key == "resourceGroupName":
1096
+ suggest = "resource_group_name"
1097
+ elif key == "subscriptionId":
1098
+ suggest = "subscription_id"
1099
+ elif key == "hostConnectionAttrsName":
1100
+ suggest = "host_connection_attrs_name"
1101
+
1102
+ if suggest:
1103
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAzureVmss. Access the value via the '{suggest}' property getter instead.")
1104
+
1105
+ def __getitem__(self, key: str) -> Any:
1106
+ InfrastructureDefinitionAzureVmss.__key_warning(key)
1107
+ return super().__getitem__(key)
1108
+
1109
+ def get(self, key: str, default = None) -> Any:
1110
+ InfrastructureDefinitionAzureVmss.__key_warning(key)
1111
+ return super().get(key, default)
1112
+
1113
+ def __init__(__self__, *,
1114
+ auth_type: str,
1115
+ base_name: str,
1116
+ cloud_provider_name: str,
1117
+ deployment_type: str,
1118
+ resource_group_name: str,
1119
+ subscription_id: str,
1120
+ username: str,
1121
+ host_connection_attrs_name: Optional[str] = None):
1122
+ """
1123
+ :param str auth_type: The type of authentication to use. Valid options are SSH*PUBLIC*KEY.
1124
+ :param str base_name: Base name.
1125
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1126
+ :param str deployment_type: The type of deployment. Valid options are NATIVE_VMSS
1127
+ :param str resource_group_name: The name of the resource group.
1128
+ :param str subscription_id: The unique id of the azure subscription.
1129
+ :param str username: The username to connect with.
1130
+ :param str host_connection_attrs_name: The name of the host connection attributes to use.
1131
+ """
1132
+ pulumi.set(__self__, "auth_type", auth_type)
1133
+ pulumi.set(__self__, "base_name", base_name)
1134
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1135
+ pulumi.set(__self__, "deployment_type", deployment_type)
1136
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
1137
+ pulumi.set(__self__, "subscription_id", subscription_id)
1138
+ pulumi.set(__self__, "username", username)
1139
+ if host_connection_attrs_name is not None:
1140
+ pulumi.set(__self__, "host_connection_attrs_name", host_connection_attrs_name)
1141
+
1142
+ @property
1143
+ @pulumi.getter(name="authType")
1144
+ def auth_type(self) -> str:
1145
+ """
1146
+ The type of authentication to use. Valid options are SSH*PUBLIC*KEY.
1147
+ """
1148
+ return pulumi.get(self, "auth_type")
1149
+
1150
+ @property
1151
+ @pulumi.getter(name="baseName")
1152
+ def base_name(self) -> str:
1153
+ """
1154
+ Base name.
1155
+ """
1156
+ return pulumi.get(self, "base_name")
1157
+
1158
+ @property
1159
+ @pulumi.getter(name="cloudProviderName")
1160
+ def cloud_provider_name(self) -> str:
1161
+ """
1162
+ The name of the cloud provider to connect with.
1163
+ """
1164
+ return pulumi.get(self, "cloud_provider_name")
1165
+
1166
+ @property
1167
+ @pulumi.getter(name="deploymentType")
1168
+ def deployment_type(self) -> str:
1169
+ """
1170
+ The type of deployment. Valid options are NATIVE_VMSS
1171
+ """
1172
+ return pulumi.get(self, "deployment_type")
1173
+
1174
+ @property
1175
+ @pulumi.getter(name="resourceGroupName")
1176
+ def resource_group_name(self) -> str:
1177
+ """
1178
+ The name of the resource group.
1179
+ """
1180
+ return pulumi.get(self, "resource_group_name")
1181
+
1182
+ @property
1183
+ @pulumi.getter(name="subscriptionId")
1184
+ def subscription_id(self) -> str:
1185
+ """
1186
+ The unique id of the azure subscription.
1187
+ """
1188
+ return pulumi.get(self, "subscription_id")
1189
+
1190
+ @property
1191
+ @pulumi.getter
1192
+ def username(self) -> str:
1193
+ """
1194
+ The username to connect with.
1195
+ """
1196
+ return pulumi.get(self, "username")
1197
+
1198
+ @property
1199
+ @pulumi.getter(name="hostConnectionAttrsName")
1200
+ def host_connection_attrs_name(self) -> Optional[str]:
1201
+ """
1202
+ The name of the host connection attributes to use.
1203
+ """
1204
+ return pulumi.get(self, "host_connection_attrs_name")
1205
+
1206
+
1207
+ @pulumi.output_type
1208
+ class InfrastructureDefinitionAzureWebapp(dict):
1209
+ @staticmethod
1210
+ def __key_warning(key: str):
1211
+ suggest = None
1212
+ if key == "cloudProviderName":
1213
+ suggest = "cloud_provider_name"
1214
+ elif key == "resourceGroup":
1215
+ suggest = "resource_group"
1216
+ elif key == "subscriptionId":
1217
+ suggest = "subscription_id"
1218
+
1219
+ if suggest:
1220
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionAzureWebapp. Access the value via the '{suggest}' property getter instead.")
1221
+
1222
+ def __getitem__(self, key: str) -> Any:
1223
+ InfrastructureDefinitionAzureWebapp.__key_warning(key)
1224
+ return super().__getitem__(key)
1225
+
1226
+ def get(self, key: str, default = None) -> Any:
1227
+ InfrastructureDefinitionAzureWebapp.__key_warning(key)
1228
+ return super().get(key, default)
1229
+
1230
+ def __init__(__self__, *,
1231
+ cloud_provider_name: str,
1232
+ resource_group: str,
1233
+ subscription_id: str):
1234
+ """
1235
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1236
+ :param str resource_group: The name of the resource group.
1237
+ :param str subscription_id: The unique id of the azure subscription.
1238
+ """
1239
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1240
+ pulumi.set(__self__, "resource_group", resource_group)
1241
+ pulumi.set(__self__, "subscription_id", subscription_id)
1242
+
1243
+ @property
1244
+ @pulumi.getter(name="cloudProviderName")
1245
+ def cloud_provider_name(self) -> str:
1246
+ """
1247
+ The name of the cloud provider to connect with.
1248
+ """
1249
+ return pulumi.get(self, "cloud_provider_name")
1250
+
1251
+ @property
1252
+ @pulumi.getter(name="resourceGroup")
1253
+ def resource_group(self) -> str:
1254
+ """
1255
+ The name of the resource group.
1256
+ """
1257
+ return pulumi.get(self, "resource_group")
1258
+
1259
+ @property
1260
+ @pulumi.getter(name="subscriptionId")
1261
+ def subscription_id(self) -> str:
1262
+ """
1263
+ The unique id of the azure subscription.
1264
+ """
1265
+ return pulumi.get(self, "subscription_id")
1266
+
1267
+
1268
+ @pulumi.output_type
1269
+ class InfrastructureDefinitionCustom(dict):
1270
+ @staticmethod
1271
+ def __key_warning(key: str):
1272
+ suggest = None
1273
+ if key == "deploymentTypeTemplateVersion":
1274
+ suggest = "deployment_type_template_version"
1275
+
1276
+ if suggest:
1277
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionCustom. Access the value via the '{suggest}' property getter instead.")
1278
+
1279
+ def __getitem__(self, key: str) -> Any:
1280
+ InfrastructureDefinitionCustom.__key_warning(key)
1281
+ return super().__getitem__(key)
1282
+
1283
+ def get(self, key: str, default = None) -> Any:
1284
+ InfrastructureDefinitionCustom.__key_warning(key)
1285
+ return super().get(key, default)
1286
+
1287
+ def __init__(__self__, *,
1288
+ deployment_type_template_version: str,
1289
+ variables: Optional[Sequence['outputs.InfrastructureDefinitionCustomVariable']] = None):
1290
+ """
1291
+ :param str deployment_type_template_version: The template version
1292
+ :param Sequence['InfrastructureDefinitionCustomVariableArgs'] variables: Variables to be used in the service
1293
+ """
1294
+ pulumi.set(__self__, "deployment_type_template_version", deployment_type_template_version)
1295
+ if variables is not None:
1296
+ pulumi.set(__self__, "variables", variables)
1297
+
1298
+ @property
1299
+ @pulumi.getter(name="deploymentTypeTemplateVersion")
1300
+ def deployment_type_template_version(self) -> str:
1301
+ """
1302
+ The template version
1303
+ """
1304
+ return pulumi.get(self, "deployment_type_template_version")
1305
+
1306
+ @property
1307
+ @pulumi.getter
1308
+ def variables(self) -> Optional[Sequence['outputs.InfrastructureDefinitionCustomVariable']]:
1309
+ """
1310
+ Variables to be used in the service
1311
+ """
1312
+ return pulumi.get(self, "variables")
1313
+
1314
+
1315
+ @pulumi.output_type
1316
+ class InfrastructureDefinitionCustomVariable(dict):
1317
+ def __init__(__self__, *,
1318
+ name: str,
1319
+ value: str):
1320
+ """
1321
+ :param str name: Name of the variable
1322
+ :param str value: Value of the variable
1323
+ """
1324
+ pulumi.set(__self__, "name", name)
1325
+ pulumi.set(__self__, "value", value)
1326
+
1327
+ @property
1328
+ @pulumi.getter
1329
+ def name(self) -> str:
1330
+ """
1331
+ Name of the variable
1332
+ """
1333
+ return pulumi.get(self, "name")
1334
+
1335
+ @property
1336
+ @pulumi.getter
1337
+ def value(self) -> str:
1338
+ """
1339
+ Value of the variable
1340
+ """
1341
+ return pulumi.get(self, "value")
1342
+
1343
+
1344
+ @pulumi.output_type
1345
+ class InfrastructureDefinitionDatacenterSsh(dict):
1346
+ @staticmethod
1347
+ def __key_warning(key: str):
1348
+ suggest = None
1349
+ if key == "cloudProviderName":
1350
+ suggest = "cloud_provider_name"
1351
+ elif key == "hostConnectionAttributesName":
1352
+ suggest = "host_connection_attributes_name"
1353
+
1354
+ if suggest:
1355
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionDatacenterSsh. Access the value via the '{suggest}' property getter instead.")
1356
+
1357
+ def __getitem__(self, key: str) -> Any:
1358
+ InfrastructureDefinitionDatacenterSsh.__key_warning(key)
1359
+ return super().__getitem__(key)
1360
+
1361
+ def get(self, key: str, default = None) -> Any:
1362
+ InfrastructureDefinitionDatacenterSsh.__key_warning(key)
1363
+ return super().get(key, default)
1364
+
1365
+ def __init__(__self__, *,
1366
+ cloud_provider_name: str,
1367
+ host_connection_attributes_name: str,
1368
+ hostnames: Sequence[str]):
1369
+ """
1370
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1371
+ :param str host_connection_attributes_name: The name of the SSH connection attributes to use.
1372
+ :param Sequence[str] hostnames: A list of hosts to deploy to.
1373
+ """
1374
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1375
+ pulumi.set(__self__, "host_connection_attributes_name", host_connection_attributes_name)
1376
+ pulumi.set(__self__, "hostnames", hostnames)
1377
+
1378
+ @property
1379
+ @pulumi.getter(name="cloudProviderName")
1380
+ def cloud_provider_name(self) -> str:
1381
+ """
1382
+ The name of the cloud provider to connect with.
1383
+ """
1384
+ return pulumi.get(self, "cloud_provider_name")
1385
+
1386
+ @property
1387
+ @pulumi.getter(name="hostConnectionAttributesName")
1388
+ def host_connection_attributes_name(self) -> str:
1389
+ """
1390
+ The name of the SSH connection attributes to use.
1391
+ """
1392
+ return pulumi.get(self, "host_connection_attributes_name")
1393
+
1394
+ @property
1395
+ @pulumi.getter
1396
+ def hostnames(self) -> Sequence[str]:
1397
+ """
1398
+ A list of hosts to deploy to.
1399
+ """
1400
+ return pulumi.get(self, "hostnames")
1401
+
1402
+
1403
+ @pulumi.output_type
1404
+ class InfrastructureDefinitionDatacenterWinrm(dict):
1405
+ @staticmethod
1406
+ def __key_warning(key: str):
1407
+ suggest = None
1408
+ if key == "cloudProviderName":
1409
+ suggest = "cloud_provider_name"
1410
+ elif key == "winrmConnectionAttributesName":
1411
+ suggest = "winrm_connection_attributes_name"
1412
+
1413
+ if suggest:
1414
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionDatacenterWinrm. Access the value via the '{suggest}' property getter instead.")
1415
+
1416
+ def __getitem__(self, key: str) -> Any:
1417
+ InfrastructureDefinitionDatacenterWinrm.__key_warning(key)
1418
+ return super().__getitem__(key)
1419
+
1420
+ def get(self, key: str, default = None) -> Any:
1421
+ InfrastructureDefinitionDatacenterWinrm.__key_warning(key)
1422
+ return super().get(key, default)
1423
+
1424
+ def __init__(__self__, *,
1425
+ cloud_provider_name: str,
1426
+ hostnames: Sequence[str],
1427
+ winrm_connection_attributes_name: str):
1428
+ """
1429
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1430
+ :param Sequence[str] hostnames: A list of hosts to deploy to.
1431
+ :param str winrm_connection_attributes_name: The name of the WinRM connection attributes to use.
1432
+ """
1433
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1434
+ pulumi.set(__self__, "hostnames", hostnames)
1435
+ pulumi.set(__self__, "winrm_connection_attributes_name", winrm_connection_attributes_name)
1436
+
1437
+ @property
1438
+ @pulumi.getter(name="cloudProviderName")
1439
+ def cloud_provider_name(self) -> str:
1440
+ """
1441
+ The name of the cloud provider to connect with.
1442
+ """
1443
+ return pulumi.get(self, "cloud_provider_name")
1444
+
1445
+ @property
1446
+ @pulumi.getter
1447
+ def hostnames(self) -> Sequence[str]:
1448
+ """
1449
+ A list of hosts to deploy to.
1450
+ """
1451
+ return pulumi.get(self, "hostnames")
1452
+
1453
+ @property
1454
+ @pulumi.getter(name="winrmConnectionAttributesName")
1455
+ def winrm_connection_attributes_name(self) -> str:
1456
+ """
1457
+ The name of the WinRM connection attributes to use.
1458
+ """
1459
+ return pulumi.get(self, "winrm_connection_attributes_name")
1460
+
1461
+
1462
+ @pulumi.output_type
1463
+ class InfrastructureDefinitionKubernetes(dict):
1464
+ @staticmethod
1465
+ def __key_warning(key: str):
1466
+ suggest = None
1467
+ if key == "cloudProviderName":
1468
+ suggest = "cloud_provider_name"
1469
+ elif key == "releaseName":
1470
+ suggest = "release_name"
1471
+
1472
+ if suggest:
1473
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionKubernetes. Access the value via the '{suggest}' property getter instead.")
1474
+
1475
+ def __getitem__(self, key: str) -> Any:
1476
+ InfrastructureDefinitionKubernetes.__key_warning(key)
1477
+ return super().__getitem__(key)
1478
+
1479
+ def get(self, key: str, default = None) -> Any:
1480
+ InfrastructureDefinitionKubernetes.__key_warning(key)
1481
+ return super().get(key, default)
1482
+
1483
+ def __init__(__self__, *,
1484
+ cloud_provider_name: str,
1485
+ namespace: str,
1486
+ release_name: str):
1487
+ """
1488
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1489
+ :param str namespace: The namespace in Kubernetes to deploy to.
1490
+ :param 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}
1491
+ """
1492
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1493
+ pulumi.set(__self__, "namespace", namespace)
1494
+ pulumi.set(__self__, "release_name", release_name)
1495
+
1496
+ @property
1497
+ @pulumi.getter(name="cloudProviderName")
1498
+ def cloud_provider_name(self) -> str:
1499
+ """
1500
+ The name of the cloud provider to connect with.
1501
+ """
1502
+ return pulumi.get(self, "cloud_provider_name")
1503
+
1504
+ @property
1505
+ @pulumi.getter
1506
+ def namespace(self) -> str:
1507
+ """
1508
+ The namespace in Kubernetes to deploy to.
1509
+ """
1510
+ return pulumi.get(self, "namespace")
1511
+
1512
+ @property
1513
+ @pulumi.getter(name="releaseName")
1514
+ def release_name(self) -> str:
1515
+ """
1516
+ 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}
1517
+ """
1518
+ return pulumi.get(self, "release_name")
1519
+
1520
+
1521
+ @pulumi.output_type
1522
+ class InfrastructureDefinitionKubernetesGcp(dict):
1523
+ @staticmethod
1524
+ def __key_warning(key: str):
1525
+ suggest = None
1526
+ if key == "cloudProviderName":
1527
+ suggest = "cloud_provider_name"
1528
+ elif key == "clusterName":
1529
+ suggest = "cluster_name"
1530
+ elif key == "releaseName":
1531
+ suggest = "release_name"
1532
+
1533
+ if suggest:
1534
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionKubernetesGcp. Access the value via the '{suggest}' property getter instead.")
1535
+
1536
+ def __getitem__(self, key: str) -> Any:
1537
+ InfrastructureDefinitionKubernetesGcp.__key_warning(key)
1538
+ return super().__getitem__(key)
1539
+
1540
+ def get(self, key: str, default = None) -> Any:
1541
+ InfrastructureDefinitionKubernetesGcp.__key_warning(key)
1542
+ return super().get(key, default)
1543
+
1544
+ def __init__(__self__, *,
1545
+ cloud_provider_name: str,
1546
+ cluster_name: str,
1547
+ namespace: str,
1548
+ release_name: str):
1549
+ """
1550
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1551
+ :param str cluster_name: The name of the cluster being deployed to.
1552
+ :param str namespace: The namespace in Kubernetes to deploy to.
1553
+ :param str release_name: The naming convention of the release.
1554
+ """
1555
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1556
+ pulumi.set(__self__, "cluster_name", cluster_name)
1557
+ pulumi.set(__self__, "namespace", namespace)
1558
+ pulumi.set(__self__, "release_name", release_name)
1559
+
1560
+ @property
1561
+ @pulumi.getter(name="cloudProviderName")
1562
+ def cloud_provider_name(self) -> str:
1563
+ """
1564
+ The name of the cloud provider to connect with.
1565
+ """
1566
+ return pulumi.get(self, "cloud_provider_name")
1567
+
1568
+ @property
1569
+ @pulumi.getter(name="clusterName")
1570
+ def cluster_name(self) -> str:
1571
+ """
1572
+ The name of the cluster being deployed to.
1573
+ """
1574
+ return pulumi.get(self, "cluster_name")
1575
+
1576
+ @property
1577
+ @pulumi.getter
1578
+ def namespace(self) -> str:
1579
+ """
1580
+ The namespace in Kubernetes to deploy to.
1581
+ """
1582
+ return pulumi.get(self, "namespace")
1583
+
1584
+ @property
1585
+ @pulumi.getter(name="releaseName")
1586
+ def release_name(self) -> str:
1587
+ """
1588
+ The naming convention of the release.
1589
+ """
1590
+ return pulumi.get(self, "release_name")
1591
+
1592
+
1593
+ @pulumi.output_type
1594
+ class InfrastructureDefinitionTanzu(dict):
1595
+ @staticmethod
1596
+ def __key_warning(key: str):
1597
+ suggest = None
1598
+ if key == "cloudProviderName":
1599
+ suggest = "cloud_provider_name"
1600
+
1601
+ if suggest:
1602
+ pulumi.log.warn(f"Key '{key}' not found in InfrastructureDefinitionTanzu. Access the value via the '{suggest}' property getter instead.")
1603
+
1604
+ def __getitem__(self, key: str) -> Any:
1605
+ InfrastructureDefinitionTanzu.__key_warning(key)
1606
+ return super().__getitem__(key)
1607
+
1608
+ def get(self, key: str, default = None) -> Any:
1609
+ InfrastructureDefinitionTanzu.__key_warning(key)
1610
+ return super().get(key, default)
1611
+
1612
+ def __init__(__self__, *,
1613
+ cloud_provider_name: str,
1614
+ organization: str,
1615
+ space: str):
1616
+ """
1617
+ :param str cloud_provider_name: The name of the cloud provider to connect with.
1618
+ :param str organization: The PCF organization to use.
1619
+ :param str space: The PCF space to deploy to.
1620
+ """
1621
+ pulumi.set(__self__, "cloud_provider_name", cloud_provider_name)
1622
+ pulumi.set(__self__, "organization", organization)
1623
+ pulumi.set(__self__, "space", space)
1624
+
1625
+ @property
1626
+ @pulumi.getter(name="cloudProviderName")
1627
+ def cloud_provider_name(self) -> str:
1628
+ """
1629
+ The name of the cloud provider to connect with.
1630
+ """
1631
+ return pulumi.get(self, "cloud_provider_name")
1632
+
1633
+ @property
1634
+ @pulumi.getter
1635
+ def organization(self) -> str:
1636
+ """
1637
+ The PCF organization to use.
1638
+ """
1639
+ return pulumi.get(self, "organization")
1640
+
1641
+ @property
1642
+ @pulumi.getter
1643
+ def space(self) -> str:
1644
+ """
1645
+ The PCF space to deploy to.
1646
+ """
1647
+ return pulumi.get(self, "space")
1648
+
1649
+
1650
+ @pulumi.output_type
1651
+ class PlatformCcmFiltersFilterProperties(dict):
1652
+ @staticmethod
1653
+ def __key_warning(key: str):
1654
+ suggest = None
1655
+ if key == "filterType":
1656
+ suggest = "filter_type"
1657
+
1658
+ if suggest:
1659
+ pulumi.log.warn(f"Key '{key}' not found in PlatformCcmFiltersFilterProperties. Access the value via the '{suggest}' property getter instead.")
1660
+
1661
+ def __getitem__(self, key: str) -> Any:
1662
+ PlatformCcmFiltersFilterProperties.__key_warning(key)
1663
+ return super().__getitem__(key)
1664
+
1665
+ def get(self, key: str, default = None) -> Any:
1666
+ PlatformCcmFiltersFilterProperties.__key_warning(key)
1667
+ return super().get(key, default)
1668
+
1669
+ def __init__(__self__, *,
1670
+ filter_type: str,
1671
+ tags: Optional[Sequence[str]] = None):
1672
+ """
1673
+ :param str filter_type: Type of CCM filters.
1674
+ :param Sequence[str] tags: Tags to associate with the resource. Tags should be in the form `name:value`.
1675
+ """
1676
+ pulumi.set(__self__, "filter_type", filter_type)
1677
+ if tags is not None:
1678
+ pulumi.set(__self__, "tags", tags)
1679
+
1680
+ @property
1681
+ @pulumi.getter(name="filterType")
1682
+ def filter_type(self) -> str:
1683
+ """
1684
+ Type of CCM filters.
1685
+ """
1686
+ return pulumi.get(self, "filter_type")
1687
+
1688
+ @property
1689
+ @pulumi.getter
1690
+ def tags(self) -> Optional[Sequence[str]]:
1691
+ """
1692
+ Tags to associate with the resource. Tags should be in the form `name:value`.
1693
+ """
1694
+ return pulumi.get(self, "tags")
1695
+
1696
+
1697
+ @pulumi.output_type
1698
+ class SshCredentialKerberosAuthentication(dict):
1699
+ @staticmethod
1700
+ def __key_warning(key: str):
1701
+ suggest = None
1702
+ if key == "tgtGenerationMethod":
1703
+ suggest = "tgt_generation_method"
1704
+
1705
+ if suggest:
1706
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialKerberosAuthentication. Access the value via the '{suggest}' property getter instead.")
1707
+
1708
+ def __getitem__(self, key: str) -> Any:
1709
+ SshCredentialKerberosAuthentication.__key_warning(key)
1710
+ return super().__getitem__(key)
1711
+
1712
+ def get(self, key: str, default = None) -> Any:
1713
+ SshCredentialKerberosAuthentication.__key_warning(key)
1714
+ return super().get(key, default)
1715
+
1716
+ def __init__(__self__, *,
1717
+ port: int,
1718
+ principal: str,
1719
+ realm: str,
1720
+ tgt_generation_method: Optional['outputs.SshCredentialKerberosAuthenticationTgtGenerationMethod'] = None):
1721
+ """
1722
+ :param int port: Port to use for Kerberos authentication
1723
+ :param str principal: Name of the principal for authentication
1724
+ :param str realm: Realm associated with the Kerberos authentication
1725
+ :param 'SshCredentialKerberosAuthenticationTgtGenerationMethodArgs' tgt_generation_method: TGT generation method
1726
+ """
1727
+ pulumi.set(__self__, "port", port)
1728
+ pulumi.set(__self__, "principal", principal)
1729
+ pulumi.set(__self__, "realm", realm)
1730
+ if tgt_generation_method is not None:
1731
+ pulumi.set(__self__, "tgt_generation_method", tgt_generation_method)
1732
+
1733
+ @property
1734
+ @pulumi.getter
1735
+ def port(self) -> int:
1736
+ """
1737
+ Port to use for Kerberos authentication
1738
+ """
1739
+ return pulumi.get(self, "port")
1740
+
1741
+ @property
1742
+ @pulumi.getter
1743
+ def principal(self) -> str:
1744
+ """
1745
+ Name of the principal for authentication
1746
+ """
1747
+ return pulumi.get(self, "principal")
1748
+
1749
+ @property
1750
+ @pulumi.getter
1751
+ def realm(self) -> str:
1752
+ """
1753
+ Realm associated with the Kerberos authentication
1754
+ """
1755
+ return pulumi.get(self, "realm")
1756
+
1757
+ @property
1758
+ @pulumi.getter(name="tgtGenerationMethod")
1759
+ def tgt_generation_method(self) -> Optional['outputs.SshCredentialKerberosAuthenticationTgtGenerationMethod']:
1760
+ """
1761
+ TGT generation method
1762
+ """
1763
+ return pulumi.get(self, "tgt_generation_method")
1764
+
1765
+
1766
+ @pulumi.output_type
1767
+ class SshCredentialKerberosAuthenticationTgtGenerationMethod(dict):
1768
+ @staticmethod
1769
+ def __key_warning(key: str):
1770
+ suggest = None
1771
+ if key == "kerberosPasswordId":
1772
+ suggest = "kerberos_password_id"
1773
+ elif key == "keyTabFilePath":
1774
+ suggest = "key_tab_file_path"
1775
+
1776
+ if suggest:
1777
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialKerberosAuthenticationTgtGenerationMethod. Access the value via the '{suggest}' property getter instead.")
1778
+
1779
+ def __getitem__(self, key: str) -> Any:
1780
+ SshCredentialKerberosAuthenticationTgtGenerationMethod.__key_warning(key)
1781
+ return super().__getitem__(key)
1782
+
1783
+ def get(self, key: str, default = None) -> Any:
1784
+ SshCredentialKerberosAuthenticationTgtGenerationMethod.__key_warning(key)
1785
+ return super().get(key, default)
1786
+
1787
+ def __init__(__self__, *,
1788
+ kerberos_password_id: Optional[str] = None,
1789
+ key_tab_file_path: Optional[str] = None):
1790
+ """
1791
+ :param str kerberos_password_id: The id of the encrypted text secret
1792
+ :param str key_tab_file_path: The path to the key tab file
1793
+ """
1794
+ if kerberos_password_id is not None:
1795
+ pulumi.set(__self__, "kerberos_password_id", kerberos_password_id)
1796
+ if key_tab_file_path is not None:
1797
+ pulumi.set(__self__, "key_tab_file_path", key_tab_file_path)
1798
+
1799
+ @property
1800
+ @pulumi.getter(name="kerberosPasswordId")
1801
+ def kerberos_password_id(self) -> Optional[str]:
1802
+ """
1803
+ The id of the encrypted text secret
1804
+ """
1805
+ return pulumi.get(self, "kerberos_password_id")
1806
+
1807
+ @property
1808
+ @pulumi.getter(name="keyTabFilePath")
1809
+ def key_tab_file_path(self) -> Optional[str]:
1810
+ """
1811
+ The path to the key tab file
1812
+ """
1813
+ return pulumi.get(self, "key_tab_file_path")
1814
+
1815
+
1816
+ @pulumi.output_type
1817
+ class SshCredentialSshAuthentication(dict):
1818
+ @staticmethod
1819
+ def __key_warning(key: str):
1820
+ suggest = None
1821
+ if key == "inlineSsh":
1822
+ suggest = "inline_ssh"
1823
+ elif key == "serverPassword":
1824
+ suggest = "server_password"
1825
+ elif key == "sshKeyFile":
1826
+ suggest = "ssh_key_file"
1827
+
1828
+ if suggest:
1829
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialSshAuthentication. Access the value via the '{suggest}' property getter instead.")
1830
+
1831
+ def __getitem__(self, key: str) -> Any:
1832
+ SshCredentialSshAuthentication.__key_warning(key)
1833
+ return super().__getitem__(key)
1834
+
1835
+ def get(self, key: str, default = None) -> Any:
1836
+ SshCredentialSshAuthentication.__key_warning(key)
1837
+ return super().get(key, default)
1838
+
1839
+ def __init__(__self__, *,
1840
+ port: int,
1841
+ username: str,
1842
+ inline_ssh: Optional['outputs.SshCredentialSshAuthenticationInlineSsh'] = None,
1843
+ server_password: Optional['outputs.SshCredentialSshAuthenticationServerPassword'] = None,
1844
+ ssh_key_file: Optional['outputs.SshCredentialSshAuthenticationSshKeyFile'] = None):
1845
+ """
1846
+ :param int port: The port to connect to
1847
+ :param str username: The username to use when connecting to ssh
1848
+ :param 'SshCredentialSshAuthenticationInlineSshArgs' inline_ssh: Inline SSH authentication configuration. Only ond of `passphrase_secret_id` or `ssh_key_file_id` should be used
1849
+ :param 'SshCredentialSshAuthenticationServerPasswordArgs' server_password: Server password authentication configuration
1850
+ :param 'SshCredentialSshAuthenticationSshKeyFileArgs' ssh_key_file: Use ssh key file for authentication
1851
+ """
1852
+ pulumi.set(__self__, "port", port)
1853
+ pulumi.set(__self__, "username", username)
1854
+ if inline_ssh is not None:
1855
+ pulumi.set(__self__, "inline_ssh", inline_ssh)
1856
+ if server_password is not None:
1857
+ pulumi.set(__self__, "server_password", server_password)
1858
+ if ssh_key_file is not None:
1859
+ pulumi.set(__self__, "ssh_key_file", ssh_key_file)
1860
+
1861
+ @property
1862
+ @pulumi.getter
1863
+ def port(self) -> int:
1864
+ """
1865
+ The port to connect to
1866
+ """
1867
+ return pulumi.get(self, "port")
1868
+
1869
+ @property
1870
+ @pulumi.getter
1871
+ def username(self) -> str:
1872
+ """
1873
+ The username to use when connecting to ssh
1874
+ """
1875
+ return pulumi.get(self, "username")
1876
+
1877
+ @property
1878
+ @pulumi.getter(name="inlineSsh")
1879
+ def inline_ssh(self) -> Optional['outputs.SshCredentialSshAuthenticationInlineSsh']:
1880
+ """
1881
+ Inline SSH authentication configuration. Only ond of `passphrase_secret_id` or `ssh_key_file_id` should be used
1882
+ """
1883
+ return pulumi.get(self, "inline_ssh")
1884
+
1885
+ @property
1886
+ @pulumi.getter(name="serverPassword")
1887
+ def server_password(self) -> Optional['outputs.SshCredentialSshAuthenticationServerPassword']:
1888
+ """
1889
+ Server password authentication configuration
1890
+ """
1891
+ return pulumi.get(self, "server_password")
1892
+
1893
+ @property
1894
+ @pulumi.getter(name="sshKeyFile")
1895
+ def ssh_key_file(self) -> Optional['outputs.SshCredentialSshAuthenticationSshKeyFile']:
1896
+ """
1897
+ Use ssh key file for authentication
1898
+ """
1899
+ return pulumi.get(self, "ssh_key_file")
1900
+
1901
+
1902
+ @pulumi.output_type
1903
+ class SshCredentialSshAuthenticationInlineSsh(dict):
1904
+ @staticmethod
1905
+ def __key_warning(key: str):
1906
+ suggest = None
1907
+ if key == "sshKeyFileId":
1908
+ suggest = "ssh_key_file_id"
1909
+ elif key == "passphraseSecretId":
1910
+ suggest = "passphrase_secret_id"
1911
+
1912
+ if suggest:
1913
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialSshAuthenticationInlineSsh. Access the value via the '{suggest}' property getter instead.")
1914
+
1915
+ def __getitem__(self, key: str) -> Any:
1916
+ SshCredentialSshAuthenticationInlineSsh.__key_warning(key)
1917
+ return super().__getitem__(key)
1918
+
1919
+ def get(self, key: str, default = None) -> Any:
1920
+ SshCredentialSshAuthenticationInlineSsh.__key_warning(key)
1921
+ return super().get(key, default)
1922
+
1923
+ def __init__(__self__, *,
1924
+ ssh_key_file_id: str,
1925
+ passphrase_secret_id: Optional[str] = None):
1926
+ """
1927
+ :param str ssh_key_file_id: The id of the secret containing the SSH key
1928
+ :param str passphrase_secret_id: The id of the encrypted secret to use
1929
+ """
1930
+ pulumi.set(__self__, "ssh_key_file_id", ssh_key_file_id)
1931
+ if passphrase_secret_id is not None:
1932
+ pulumi.set(__self__, "passphrase_secret_id", passphrase_secret_id)
1933
+
1934
+ @property
1935
+ @pulumi.getter(name="sshKeyFileId")
1936
+ def ssh_key_file_id(self) -> str:
1937
+ """
1938
+ The id of the secret containing the SSH key
1939
+ """
1940
+ return pulumi.get(self, "ssh_key_file_id")
1941
+
1942
+ @property
1943
+ @pulumi.getter(name="passphraseSecretId")
1944
+ def passphrase_secret_id(self) -> Optional[str]:
1945
+ """
1946
+ The id of the encrypted secret to use
1947
+ """
1948
+ return pulumi.get(self, "passphrase_secret_id")
1949
+
1950
+
1951
+ @pulumi.output_type
1952
+ class SshCredentialSshAuthenticationServerPassword(dict):
1953
+ @staticmethod
1954
+ def __key_warning(key: str):
1955
+ suggest = None
1956
+ if key == "passwordSecretId":
1957
+ suggest = "password_secret_id"
1958
+
1959
+ if suggest:
1960
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialSshAuthenticationServerPassword. Access the value via the '{suggest}' property getter instead.")
1961
+
1962
+ def __getitem__(self, key: str) -> Any:
1963
+ SshCredentialSshAuthenticationServerPassword.__key_warning(key)
1964
+ return super().__getitem__(key)
1965
+
1966
+ def get(self, key: str, default = None) -> Any:
1967
+ SshCredentialSshAuthenticationServerPassword.__key_warning(key)
1968
+ return super().get(key, default)
1969
+
1970
+ def __init__(__self__, *,
1971
+ password_secret_id: str):
1972
+ """
1973
+ :param str password_secret_id: The id of the encrypted secret
1974
+ """
1975
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
1976
+
1977
+ @property
1978
+ @pulumi.getter(name="passwordSecretId")
1979
+ def password_secret_id(self) -> str:
1980
+ """
1981
+ The id of the encrypted secret
1982
+ """
1983
+ return pulumi.get(self, "password_secret_id")
1984
+
1985
+
1986
+ @pulumi.output_type
1987
+ class SshCredentialSshAuthenticationSshKeyFile(dict):
1988
+ @staticmethod
1989
+ def __key_warning(key: str):
1990
+ suggest = None
1991
+ if key == "passphraseSecretId":
1992
+ suggest = "passphrase_secret_id"
1993
+
1994
+ if suggest:
1995
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialSshAuthenticationSshKeyFile. Access the value via the '{suggest}' property getter instead.")
1996
+
1997
+ def __getitem__(self, key: str) -> Any:
1998
+ SshCredentialSshAuthenticationSshKeyFile.__key_warning(key)
1999
+ return super().__getitem__(key)
2000
+
2001
+ def get(self, key: str, default = None) -> Any:
2002
+ SshCredentialSshAuthenticationSshKeyFile.__key_warning(key)
2003
+ return super().get(key, default)
2004
+
2005
+ def __init__(__self__, *,
2006
+ path: str,
2007
+ passphrase_secret_id: Optional[str] = None):
2008
+ """
2009
+ :param str path: The path to the key file on the delegate
2010
+ :param str passphrase_secret_id: The id of the secret containing the password to use for the ssh key
2011
+ """
2012
+ pulumi.set(__self__, "path", path)
2013
+ if passphrase_secret_id is not None:
2014
+ pulumi.set(__self__, "passphrase_secret_id", passphrase_secret_id)
2015
+
2016
+ @property
2017
+ @pulumi.getter
2018
+ def path(self) -> str:
2019
+ """
2020
+ The path to the key file on the delegate
2021
+ """
2022
+ return pulumi.get(self, "path")
2023
+
2024
+ @property
2025
+ @pulumi.getter(name="passphraseSecretId")
2026
+ def passphrase_secret_id(self) -> Optional[str]:
2027
+ """
2028
+ The id of the secret containing the password to use for the ssh key
2029
+ """
2030
+ return pulumi.get(self, "passphrase_secret_id")
2031
+
2032
+
2033
+ @pulumi.output_type
2034
+ class SshCredentialUsageScope(dict):
2035
+ @staticmethod
2036
+ def __key_warning(key: str):
2037
+ suggest = None
2038
+ if key == "applicationId":
2039
+ suggest = "application_id"
2040
+ elif key == "environmentFilterType":
2041
+ suggest = "environment_filter_type"
2042
+ elif key == "environmentId":
2043
+ suggest = "environment_id"
2044
+
2045
+ if suggest:
2046
+ pulumi.log.warn(f"Key '{key}' not found in SshCredentialUsageScope. Access the value via the '{suggest}' property getter instead.")
2047
+
2048
+ def __getitem__(self, key: str) -> Any:
2049
+ SshCredentialUsageScope.__key_warning(key)
2050
+ return super().__getitem__(key)
2051
+
2052
+ def get(self, key: str, default = None) -> Any:
2053
+ SshCredentialUsageScope.__key_warning(key)
2054
+ return super().get(key, default)
2055
+
2056
+ def __init__(__self__, *,
2057
+ application_id: Optional[str] = None,
2058
+ environment_filter_type: Optional[str] = None,
2059
+ environment_id: Optional[str] = None):
2060
+ """
2061
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
2062
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2063
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2064
+ """
2065
+ if application_id is not None:
2066
+ pulumi.set(__self__, "application_id", application_id)
2067
+ if environment_filter_type is not None:
2068
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
2069
+ if environment_id is not None:
2070
+ pulumi.set(__self__, "environment_id", environment_id)
2071
+
2072
+ @property
2073
+ @pulumi.getter(name="applicationId")
2074
+ def application_id(self) -> Optional[str]:
2075
+ """
2076
+ Id of the application to scope to. If empty then this scope applies to all applications.
2077
+ """
2078
+ return pulumi.get(self, "application_id")
2079
+
2080
+ @property
2081
+ @pulumi.getter(name="environmentFilterType")
2082
+ def environment_filter_type(self) -> Optional[str]:
2083
+ """
2084
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2085
+ """
2086
+ return pulumi.get(self, "environment_filter_type")
2087
+
2088
+ @property
2089
+ @pulumi.getter(name="environmentId")
2090
+ def environment_id(self) -> Optional[str]:
2091
+ """
2092
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2093
+ """
2094
+ return pulumi.get(self, "environment_id")
2095
+
2096
+
2097
+ @pulumi.output_type
2098
+ class UserGroupLdapSettings(dict):
2099
+ @staticmethod
2100
+ def __key_warning(key: str):
2101
+ suggest = None
2102
+ if key == "groupDn":
2103
+ suggest = "group_dn"
2104
+ elif key == "groupName":
2105
+ suggest = "group_name"
2106
+ elif key == "ssoProviderId":
2107
+ suggest = "sso_provider_id"
2108
+
2109
+ if suggest:
2110
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupLdapSettings. Access the value via the '{suggest}' property getter instead.")
2111
+
2112
+ def __getitem__(self, key: str) -> Any:
2113
+ UserGroupLdapSettings.__key_warning(key)
2114
+ return super().__getitem__(key)
2115
+
2116
+ def get(self, key: str, default = None) -> Any:
2117
+ UserGroupLdapSettings.__key_warning(key)
2118
+ return super().get(key, default)
2119
+
2120
+ def __init__(__self__, *,
2121
+ group_dn: Optional[str] = None,
2122
+ group_name: Optional[str] = None,
2123
+ sso_provider_id: Optional[str] = None):
2124
+ """
2125
+ :param str group_dn: The group DN of the LDAP user group.
2126
+ :param str group_name: The group name of the LDAP user group.
2127
+ :param str sso_provider_id: The ID of the SSO provider.
2128
+ """
2129
+ if group_dn is not None:
2130
+ pulumi.set(__self__, "group_dn", group_dn)
2131
+ if group_name is not None:
2132
+ pulumi.set(__self__, "group_name", group_name)
2133
+ if sso_provider_id is not None:
2134
+ pulumi.set(__self__, "sso_provider_id", sso_provider_id)
2135
+
2136
+ @property
2137
+ @pulumi.getter(name="groupDn")
2138
+ def group_dn(self) -> Optional[str]:
2139
+ """
2140
+ The group DN of the LDAP user group.
2141
+ """
2142
+ return pulumi.get(self, "group_dn")
2143
+
2144
+ @property
2145
+ @pulumi.getter(name="groupName")
2146
+ def group_name(self) -> Optional[str]:
2147
+ """
2148
+ The group name of the LDAP user group.
2149
+ """
2150
+ return pulumi.get(self, "group_name")
2151
+
2152
+ @property
2153
+ @pulumi.getter(name="ssoProviderId")
2154
+ def sso_provider_id(self) -> Optional[str]:
2155
+ """
2156
+ The ID of the SSO provider.
2157
+ """
2158
+ return pulumi.get(self, "sso_provider_id")
2159
+
2160
+
2161
+ @pulumi.output_type
2162
+ class UserGroupNotificationSettings(dict):
2163
+ @staticmethod
2164
+ def __key_warning(key: str):
2165
+ suggest = None
2166
+ if key == "groupEmailAddresses":
2167
+ suggest = "group_email_addresses"
2168
+ elif key == "microsoftTeamsWebhookUrl":
2169
+ suggest = "microsoft_teams_webhook_url"
2170
+ elif key == "sendMailToNewMembers":
2171
+ suggest = "send_mail_to_new_members"
2172
+ elif key == "sendNotificationsToMembers":
2173
+ suggest = "send_notifications_to_members"
2174
+ elif key == "slackChannel":
2175
+ suggest = "slack_channel"
2176
+ elif key == "slackWebhookUrl":
2177
+ suggest = "slack_webhook_url"
2178
+
2179
+ if suggest:
2180
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupNotificationSettings. Access the value via the '{suggest}' property getter instead.")
2181
+
2182
+ def __getitem__(self, key: str) -> Any:
2183
+ UserGroupNotificationSettings.__key_warning(key)
2184
+ return super().__getitem__(key)
2185
+
2186
+ def get(self, key: str, default = None) -> Any:
2187
+ UserGroupNotificationSettings.__key_warning(key)
2188
+ return super().get(key, default)
2189
+
2190
+ def __init__(__self__, *,
2191
+ group_email_addresses: Optional[Sequence[str]] = None,
2192
+ microsoft_teams_webhook_url: Optional[str] = None,
2193
+ send_mail_to_new_members: Optional[bool] = None,
2194
+ send_notifications_to_members: Optional[bool] = None,
2195
+ slack_channel: Optional[str] = None,
2196
+ slack_webhook_url: Optional[str] = None):
2197
+ """
2198
+ :param Sequence[str] group_email_addresses: The email addresses of the user group.
2199
+ :param str microsoft_teams_webhook_url: The Microsoft Teams webhook URL of the user group.
2200
+ :param bool send_mail_to_new_members: Indicates whether an email is sent when a new user is added to the group.
2201
+ :param bool send_notifications_to_members: Enable this setting to have notifications sent to the members of this group.
2202
+ :param str slack_channel: The Slack channel to send notifications to.
2203
+ :param str slack_webhook_url: The Slack webhook URL to send notifications to.
2204
+ """
2205
+ if group_email_addresses is not None:
2206
+ pulumi.set(__self__, "group_email_addresses", group_email_addresses)
2207
+ if microsoft_teams_webhook_url is not None:
2208
+ pulumi.set(__self__, "microsoft_teams_webhook_url", microsoft_teams_webhook_url)
2209
+ if send_mail_to_new_members is not None:
2210
+ pulumi.set(__self__, "send_mail_to_new_members", send_mail_to_new_members)
2211
+ if send_notifications_to_members is not None:
2212
+ pulumi.set(__self__, "send_notifications_to_members", send_notifications_to_members)
2213
+ if slack_channel is not None:
2214
+ pulumi.set(__self__, "slack_channel", slack_channel)
2215
+ if slack_webhook_url is not None:
2216
+ pulumi.set(__self__, "slack_webhook_url", slack_webhook_url)
2217
+
2218
+ @property
2219
+ @pulumi.getter(name="groupEmailAddresses")
2220
+ def group_email_addresses(self) -> Optional[Sequence[str]]:
2221
+ """
2222
+ The email addresses of the user group.
2223
+ """
2224
+ return pulumi.get(self, "group_email_addresses")
2225
+
2226
+ @property
2227
+ @pulumi.getter(name="microsoftTeamsWebhookUrl")
2228
+ def microsoft_teams_webhook_url(self) -> Optional[str]:
2229
+ """
2230
+ The Microsoft Teams webhook URL of the user group.
2231
+ """
2232
+ return pulumi.get(self, "microsoft_teams_webhook_url")
2233
+
2234
+ @property
2235
+ @pulumi.getter(name="sendMailToNewMembers")
2236
+ def send_mail_to_new_members(self) -> Optional[bool]:
2237
+ """
2238
+ Indicates whether an email is sent when a new user is added to the group.
2239
+ """
2240
+ return pulumi.get(self, "send_mail_to_new_members")
2241
+
2242
+ @property
2243
+ @pulumi.getter(name="sendNotificationsToMembers")
2244
+ def send_notifications_to_members(self) -> Optional[bool]:
2245
+ """
2246
+ Enable this setting to have notifications sent to the members of this group.
2247
+ """
2248
+ return pulumi.get(self, "send_notifications_to_members")
2249
+
2250
+ @property
2251
+ @pulumi.getter(name="slackChannel")
2252
+ def slack_channel(self) -> Optional[str]:
2253
+ """
2254
+ The Slack channel to send notifications to.
2255
+ """
2256
+ return pulumi.get(self, "slack_channel")
2257
+
2258
+ @property
2259
+ @pulumi.getter(name="slackWebhookUrl")
2260
+ def slack_webhook_url(self) -> Optional[str]:
2261
+ """
2262
+ The Slack webhook URL to send notifications to.
2263
+ """
2264
+ return pulumi.get(self, "slack_webhook_url")
2265
+
2266
+
2267
+ @pulumi.output_type
2268
+ class UserGroupPermissions(dict):
2269
+ @staticmethod
2270
+ def __key_warning(key: str):
2271
+ suggest = None
2272
+ if key == "accountPermissions":
2273
+ suggest = "account_permissions"
2274
+ elif key == "appPermissions":
2275
+ suggest = "app_permissions"
2276
+
2277
+ if suggest:
2278
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissions. Access the value via the '{suggest}' property getter instead.")
2279
+
2280
+ def __getitem__(self, key: str) -> Any:
2281
+ UserGroupPermissions.__key_warning(key)
2282
+ return super().__getitem__(key)
2283
+
2284
+ def get(self, key: str, default = None) -> Any:
2285
+ UserGroupPermissions.__key_warning(key)
2286
+ return super().get(key, default)
2287
+
2288
+ def __init__(__self__, *,
2289
+ account_permissions: Optional[Sequence[str]] = None,
2290
+ app_permissions: Optional['outputs.UserGroupPermissionsAppPermissions'] = None):
2291
+ """
2292
+ :param Sequence[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
2293
+ :param 'UserGroupPermissionsAppPermissionsArgs' app_permissions: Application specific permissions
2294
+ """
2295
+ if account_permissions is not None:
2296
+ pulumi.set(__self__, "account_permissions", account_permissions)
2297
+ if app_permissions is not None:
2298
+ pulumi.set(__self__, "app_permissions", app_permissions)
2299
+
2300
+ @property
2301
+ @pulumi.getter(name="accountPermissions")
2302
+ def account_permissions(self) -> Optional[Sequence[str]]:
2303
+ """
2304
+ 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
2305
+ """
2306
+ return pulumi.get(self, "account_permissions")
2307
+
2308
+ @property
2309
+ @pulumi.getter(name="appPermissions")
2310
+ def app_permissions(self) -> Optional['outputs.UserGroupPermissionsAppPermissions']:
2311
+ """
2312
+ Application specific permissions
2313
+ """
2314
+ return pulumi.get(self, "app_permissions")
2315
+
2316
+
2317
+ @pulumi.output_type
2318
+ class UserGroupPermissionsAppPermissions(dict):
2319
+ def __init__(__self__, *,
2320
+ alls: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsAll']] = None,
2321
+ deployments: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsDeployment']] = None,
2322
+ environments: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsEnvironment']] = None,
2323
+ pipelines: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsPipeline']] = None,
2324
+ provisioners: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsProvisioner']] = None,
2325
+ services: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsService']] = None,
2326
+ templates: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsTemplate']] = None,
2327
+ workflows: Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsWorkflow']] = None):
2328
+ """
2329
+ :param Sequence['UserGroupPermissionsAppPermissionsAllArgs'] alls: The permission to perform actions against all resources.
2330
+ :param Sequence['UserGroupPermissionsAppPermissionsDeploymentArgs'] deployments: Permission configuration to perform actions against deployments.
2331
+ :param Sequence['UserGroupPermissionsAppPermissionsEnvironmentArgs'] environments: Permission configuration to perform actions against workflows.
2332
+ :param Sequence['UserGroupPermissionsAppPermissionsPipelineArgs'] pipelines: Permission configuration to perform actions against pipelines.
2333
+ :param Sequence['UserGroupPermissionsAppPermissionsProvisionerArgs'] provisioners: Permission configuration to perform actions against provisioners.
2334
+ :param Sequence['UserGroupPermissionsAppPermissionsServiceArgs'] services: Permission configuration to perform actions against services.
2335
+ :param Sequence['UserGroupPermissionsAppPermissionsTemplateArgs'] templates: Permission configuration to perform actions against templates.
2336
+ :param Sequence['UserGroupPermissionsAppPermissionsWorkflowArgs'] workflows: Permission configuration to perform actions against workflows.
2337
+ """
2338
+ if alls is not None:
2339
+ pulumi.set(__self__, "alls", alls)
2340
+ if deployments is not None:
2341
+ pulumi.set(__self__, "deployments", deployments)
2342
+ if environments is not None:
2343
+ pulumi.set(__self__, "environments", environments)
2344
+ if pipelines is not None:
2345
+ pulumi.set(__self__, "pipelines", pipelines)
2346
+ if provisioners is not None:
2347
+ pulumi.set(__self__, "provisioners", provisioners)
2348
+ if services is not None:
2349
+ pulumi.set(__self__, "services", services)
2350
+ if templates is not None:
2351
+ pulumi.set(__self__, "templates", templates)
2352
+ if workflows is not None:
2353
+ pulumi.set(__self__, "workflows", workflows)
2354
+
2355
+ @property
2356
+ @pulumi.getter
2357
+ def alls(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsAll']]:
2358
+ """
2359
+ The permission to perform actions against all resources.
2360
+ """
2361
+ return pulumi.get(self, "alls")
2362
+
2363
+ @property
2364
+ @pulumi.getter
2365
+ def deployments(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsDeployment']]:
2366
+ """
2367
+ Permission configuration to perform actions against deployments.
2368
+ """
2369
+ return pulumi.get(self, "deployments")
2370
+
2371
+ @property
2372
+ @pulumi.getter
2373
+ def environments(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsEnvironment']]:
2374
+ """
2375
+ Permission configuration to perform actions against workflows.
2376
+ """
2377
+ return pulumi.get(self, "environments")
2378
+
2379
+ @property
2380
+ @pulumi.getter
2381
+ def pipelines(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsPipeline']]:
2382
+ """
2383
+ Permission configuration to perform actions against pipelines.
2384
+ """
2385
+ return pulumi.get(self, "pipelines")
2386
+
2387
+ @property
2388
+ @pulumi.getter
2389
+ def provisioners(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsProvisioner']]:
2390
+ """
2391
+ Permission configuration to perform actions against provisioners.
2392
+ """
2393
+ return pulumi.get(self, "provisioners")
2394
+
2395
+ @property
2396
+ @pulumi.getter
2397
+ def services(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsService']]:
2398
+ """
2399
+ Permission configuration to perform actions against services.
2400
+ """
2401
+ return pulumi.get(self, "services")
2402
+
2403
+ @property
2404
+ @pulumi.getter
2405
+ def templates(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsTemplate']]:
2406
+ """
2407
+ Permission configuration to perform actions against templates.
2408
+ """
2409
+ return pulumi.get(self, "templates")
2410
+
2411
+ @property
2412
+ @pulumi.getter
2413
+ def workflows(self) -> Optional[Sequence['outputs.UserGroupPermissionsAppPermissionsWorkflow']]:
2414
+ """
2415
+ Permission configuration to perform actions against workflows.
2416
+ """
2417
+ return pulumi.get(self, "workflows")
2418
+
2419
+
2420
+ @pulumi.output_type
2421
+ class UserGroupPermissionsAppPermissionsAll(dict):
2422
+ @staticmethod
2423
+ def __key_warning(key: str):
2424
+ suggest = None
2425
+ if key == "appIds":
2426
+ suggest = "app_ids"
2427
+
2428
+ if suggest:
2429
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsAll. Access the value via the '{suggest}' property getter instead.")
2430
+
2431
+ def __getitem__(self, key: str) -> Any:
2432
+ UserGroupPermissionsAppPermissionsAll.__key_warning(key)
2433
+ return super().__getitem__(key)
2434
+
2435
+ def get(self, key: str, default = None) -> Any:
2436
+ UserGroupPermissionsAppPermissionsAll.__key_warning(key)
2437
+ return super().get(key, default)
2438
+
2439
+ def __init__(__self__, *,
2440
+ actions: Sequence[str],
2441
+ app_ids: Optional[Sequence[str]] = None):
2442
+ """
2443
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK_WORKFLOW
2444
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2445
+ """
2446
+ pulumi.set(__self__, "actions", actions)
2447
+ if app_ids is not None:
2448
+ pulumi.set(__self__, "app_ids", app_ids)
2449
+
2450
+ @property
2451
+ @pulumi.getter
2452
+ def actions(self) -> Sequence[str]:
2453
+ """
2454
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK_WORKFLOW
2455
+ """
2456
+ return pulumi.get(self, "actions")
2457
+
2458
+ @property
2459
+ @pulumi.getter(name="appIds")
2460
+ def app_ids(self) -> Optional[Sequence[str]]:
2461
+ """
2462
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2463
+ """
2464
+ return pulumi.get(self, "app_ids")
2465
+
2466
+
2467
+ @pulumi.output_type
2468
+ class UserGroupPermissionsAppPermissionsDeployment(dict):
2469
+ @staticmethod
2470
+ def __key_warning(key: str):
2471
+ suggest = None
2472
+ if key == "appIds":
2473
+ suggest = "app_ids"
2474
+ elif key == "envIds":
2475
+ suggest = "env_ids"
2476
+
2477
+ if suggest:
2478
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsDeployment. Access the value via the '{suggest}' property getter instead.")
2479
+
2480
+ def __getitem__(self, key: str) -> Any:
2481
+ UserGroupPermissionsAppPermissionsDeployment.__key_warning(key)
2482
+ return super().__getitem__(key)
2483
+
2484
+ def get(self, key: str, default = None) -> Any:
2485
+ UserGroupPermissionsAppPermissionsDeployment.__key_warning(key)
2486
+ return super().get(key, default)
2487
+
2488
+ def __init__(__self__, *,
2489
+ actions: Sequence[str],
2490
+ app_ids: Optional[Sequence[str]] = None,
2491
+ env_ids: Optional[Sequence[str]] = None,
2492
+ filters: Optional[Sequence[str]] = None):
2493
+ """
2494
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are READ, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK*WORKFLOW, ABORT*WORKFLOW
2495
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2496
+ :param Sequence[str] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
2497
+ :param Sequence[str] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2498
+ """
2499
+ pulumi.set(__self__, "actions", actions)
2500
+ if app_ids is not None:
2501
+ pulumi.set(__self__, "app_ids", app_ids)
2502
+ if env_ids is not None:
2503
+ pulumi.set(__self__, "env_ids", env_ids)
2504
+ if filters is not None:
2505
+ pulumi.set(__self__, "filters", filters)
2506
+
2507
+ @property
2508
+ @pulumi.getter
2509
+ def actions(self) -> Sequence[str]:
2510
+ """
2511
+ The actions allowed to be performed. Valid options are READ, EXECUTE*WORKFLOW, EXECUTE*PIPELINE, ROLLBACK*WORKFLOW, ABORT*WORKFLOW
2512
+ """
2513
+ return pulumi.get(self, "actions")
2514
+
2515
+ @property
2516
+ @pulumi.getter(name="appIds")
2517
+ def app_ids(self) -> Optional[Sequence[str]]:
2518
+ """
2519
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2520
+ """
2521
+ return pulumi.get(self, "app_ids")
2522
+
2523
+ @property
2524
+ @pulumi.getter(name="envIds")
2525
+ def env_ids(self) -> Optional[Sequence[str]]:
2526
+ """
2527
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
2528
+ """
2529
+ return pulumi.get(self, "env_ids")
2530
+
2531
+ @property
2532
+ @pulumi.getter
2533
+ def filters(self) -> Optional[Sequence[str]]:
2534
+ """
2535
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2536
+ """
2537
+ return pulumi.get(self, "filters")
2538
+
2539
+
2540
+ @pulumi.output_type
2541
+ class UserGroupPermissionsAppPermissionsEnvironment(dict):
2542
+ @staticmethod
2543
+ def __key_warning(key: str):
2544
+ suggest = None
2545
+ if key == "appIds":
2546
+ suggest = "app_ids"
2547
+ elif key == "envIds":
2548
+ suggest = "env_ids"
2549
+
2550
+ if suggest:
2551
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsEnvironment. Access the value via the '{suggest}' property getter instead.")
2552
+
2553
+ def __getitem__(self, key: str) -> Any:
2554
+ UserGroupPermissionsAppPermissionsEnvironment.__key_warning(key)
2555
+ return super().__getitem__(key)
2556
+
2557
+ def get(self, key: str, default = None) -> Any:
2558
+ UserGroupPermissionsAppPermissionsEnvironment.__key_warning(key)
2559
+ return super().get(key, default)
2560
+
2561
+ def __init__(__self__, *,
2562
+ actions: Sequence[str],
2563
+ app_ids: Optional[Sequence[str]] = None,
2564
+ env_ids: Optional[Sequence[str]] = None,
2565
+ filters: Optional[Sequence[str]] = None):
2566
+ """
2567
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2568
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2569
+ :param Sequence[str] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
2570
+ :param Sequence[str] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2571
+ """
2572
+ pulumi.set(__self__, "actions", actions)
2573
+ if app_ids is not None:
2574
+ pulumi.set(__self__, "app_ids", app_ids)
2575
+ if env_ids is not None:
2576
+ pulumi.set(__self__, "env_ids", env_ids)
2577
+ if filters is not None:
2578
+ pulumi.set(__self__, "filters", filters)
2579
+
2580
+ @property
2581
+ @pulumi.getter
2582
+ def actions(self) -> Sequence[str]:
2583
+ """
2584
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2585
+ """
2586
+ return pulumi.get(self, "actions")
2587
+
2588
+ @property
2589
+ @pulumi.getter(name="appIds")
2590
+ def app_ids(self) -> Optional[Sequence[str]]:
2591
+ """
2592
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2593
+ """
2594
+ return pulumi.get(self, "app_ids")
2595
+
2596
+ @property
2597
+ @pulumi.getter(name="envIds")
2598
+ def env_ids(self) -> Optional[Sequence[str]]:
2599
+ """
2600
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
2601
+ """
2602
+ return pulumi.get(self, "env_ids")
2603
+
2604
+ @property
2605
+ @pulumi.getter
2606
+ def filters(self) -> Optional[Sequence[str]]:
2607
+ """
2608
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2609
+ """
2610
+ return pulumi.get(self, "filters")
2611
+
2612
+
2613
+ @pulumi.output_type
2614
+ class UserGroupPermissionsAppPermissionsPipeline(dict):
2615
+ @staticmethod
2616
+ def __key_warning(key: str):
2617
+ suggest = None
2618
+ if key == "appIds":
2619
+ suggest = "app_ids"
2620
+ elif key == "envIds":
2621
+ suggest = "env_ids"
2622
+
2623
+ if suggest:
2624
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsPipeline. Access the value via the '{suggest}' property getter instead.")
2625
+
2626
+ def __getitem__(self, key: str) -> Any:
2627
+ UserGroupPermissionsAppPermissionsPipeline.__key_warning(key)
2628
+ return super().__getitem__(key)
2629
+
2630
+ def get(self, key: str, default = None) -> Any:
2631
+ UserGroupPermissionsAppPermissionsPipeline.__key_warning(key)
2632
+ return super().get(key, default)
2633
+
2634
+ def __init__(__self__, *,
2635
+ actions: Sequence[str],
2636
+ app_ids: Optional[Sequence[str]] = None,
2637
+ env_ids: Optional[Sequence[str]] = None,
2638
+ filters: Optional[Sequence[str]] = None):
2639
+ """
2640
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are [CREATE READ UPDATE DELETE]
2641
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2642
+ :param Sequence[str] env_ids: The environment IDs to which the permission applies. Leave empty to apply to all environments.
2643
+ :param Sequence[str] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*PIPELINES, PRODUCTION_PIPELINES.
2644
+ """
2645
+ pulumi.set(__self__, "actions", actions)
2646
+ if app_ids is not None:
2647
+ pulumi.set(__self__, "app_ids", app_ids)
2648
+ if env_ids is not None:
2649
+ pulumi.set(__self__, "env_ids", env_ids)
2650
+ if filters is not None:
2651
+ pulumi.set(__self__, "filters", filters)
2652
+
2653
+ @property
2654
+ @pulumi.getter
2655
+ def actions(self) -> Sequence[str]:
2656
+ """
2657
+ The actions allowed to be performed. Valid options are [CREATE READ UPDATE DELETE]
2658
+ """
2659
+ return pulumi.get(self, "actions")
2660
+
2661
+ @property
2662
+ @pulumi.getter(name="appIds")
2663
+ def app_ids(self) -> Optional[Sequence[str]]:
2664
+ """
2665
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2666
+ """
2667
+ return pulumi.get(self, "app_ids")
2668
+
2669
+ @property
2670
+ @pulumi.getter(name="envIds")
2671
+ def env_ids(self) -> Optional[Sequence[str]]:
2672
+ """
2673
+ The environment IDs to which the permission applies. Leave empty to apply to all environments.
2674
+ """
2675
+ return pulumi.get(self, "env_ids")
2676
+
2677
+ @property
2678
+ @pulumi.getter
2679
+ def filters(self) -> Optional[Sequence[str]]:
2680
+ """
2681
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*PIPELINES, PRODUCTION_PIPELINES.
2682
+ """
2683
+ return pulumi.get(self, "filters")
2684
+
2685
+
2686
+ @pulumi.output_type
2687
+ class UserGroupPermissionsAppPermissionsProvisioner(dict):
2688
+ @staticmethod
2689
+ def __key_warning(key: str):
2690
+ suggest = None
2691
+ if key == "appIds":
2692
+ suggest = "app_ids"
2693
+ elif key == "provisionerIds":
2694
+ suggest = "provisioner_ids"
2695
+
2696
+ if suggest:
2697
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsProvisioner. Access the value via the '{suggest}' property getter instead.")
2698
+
2699
+ def __getitem__(self, key: str) -> Any:
2700
+ UserGroupPermissionsAppPermissionsProvisioner.__key_warning(key)
2701
+ return super().__getitem__(key)
2702
+
2703
+ def get(self, key: str, default = None) -> Any:
2704
+ UserGroupPermissionsAppPermissionsProvisioner.__key_warning(key)
2705
+ return super().get(key, default)
2706
+
2707
+ def __init__(__self__, *,
2708
+ actions: Sequence[str],
2709
+ app_ids: Optional[Sequence[str]] = None,
2710
+ provisioner_ids: Optional[Sequence[str]] = None):
2711
+ """
2712
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2713
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2714
+ :param Sequence[str] provisioner_ids: The provisioner IDs to which the permission applies. Leave empty to apply to all provisioners.
2715
+ """
2716
+ pulumi.set(__self__, "actions", actions)
2717
+ if app_ids is not None:
2718
+ pulumi.set(__self__, "app_ids", app_ids)
2719
+ if provisioner_ids is not None:
2720
+ pulumi.set(__self__, "provisioner_ids", provisioner_ids)
2721
+
2722
+ @property
2723
+ @pulumi.getter
2724
+ def actions(self) -> Sequence[str]:
2725
+ """
2726
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2727
+ """
2728
+ return pulumi.get(self, "actions")
2729
+
2730
+ @property
2731
+ @pulumi.getter(name="appIds")
2732
+ def app_ids(self) -> Optional[Sequence[str]]:
2733
+ """
2734
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2735
+ """
2736
+ return pulumi.get(self, "app_ids")
2737
+
2738
+ @property
2739
+ @pulumi.getter(name="provisionerIds")
2740
+ def provisioner_ids(self) -> Optional[Sequence[str]]:
2741
+ """
2742
+ The provisioner IDs to which the permission applies. Leave empty to apply to all provisioners.
2743
+ """
2744
+ return pulumi.get(self, "provisioner_ids")
2745
+
2746
+
2747
+ @pulumi.output_type
2748
+ class UserGroupPermissionsAppPermissionsService(dict):
2749
+ @staticmethod
2750
+ def __key_warning(key: str):
2751
+ suggest = None
2752
+ if key == "appIds":
2753
+ suggest = "app_ids"
2754
+ elif key == "serviceIds":
2755
+ suggest = "service_ids"
2756
+
2757
+ if suggest:
2758
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsService. Access the value via the '{suggest}' property getter instead.")
2759
+
2760
+ def __getitem__(self, key: str) -> Any:
2761
+ UserGroupPermissionsAppPermissionsService.__key_warning(key)
2762
+ return super().__getitem__(key)
2763
+
2764
+ def get(self, key: str, default = None) -> Any:
2765
+ UserGroupPermissionsAppPermissionsService.__key_warning(key)
2766
+ return super().get(key, default)
2767
+
2768
+ def __init__(__self__, *,
2769
+ actions: Sequence[str],
2770
+ app_ids: Optional[Sequence[str]] = None,
2771
+ service_ids: Optional[Sequence[str]] = None):
2772
+ """
2773
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2774
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2775
+ :param Sequence[str] service_ids: The service IDs to which the permission applies. Leave empty to apply to all services.
2776
+ """
2777
+ pulumi.set(__self__, "actions", actions)
2778
+ if app_ids is not None:
2779
+ pulumi.set(__self__, "app_ids", app_ids)
2780
+ if service_ids is not None:
2781
+ pulumi.set(__self__, "service_ids", service_ids)
2782
+
2783
+ @property
2784
+ @pulumi.getter
2785
+ def actions(self) -> Sequence[str]:
2786
+ """
2787
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2788
+ """
2789
+ return pulumi.get(self, "actions")
2790
+
2791
+ @property
2792
+ @pulumi.getter(name="appIds")
2793
+ def app_ids(self) -> Optional[Sequence[str]]:
2794
+ """
2795
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2796
+ """
2797
+ return pulumi.get(self, "app_ids")
2798
+
2799
+ @property
2800
+ @pulumi.getter(name="serviceIds")
2801
+ def service_ids(self) -> Optional[Sequence[str]]:
2802
+ """
2803
+ The service IDs to which the permission applies. Leave empty to apply to all services.
2804
+ """
2805
+ return pulumi.get(self, "service_ids")
2806
+
2807
+
2808
+ @pulumi.output_type
2809
+ class UserGroupPermissionsAppPermissionsTemplate(dict):
2810
+ @staticmethod
2811
+ def __key_warning(key: str):
2812
+ suggest = None
2813
+ if key == "appIds":
2814
+ suggest = "app_ids"
2815
+ elif key == "templateIds":
2816
+ suggest = "template_ids"
2817
+
2818
+ if suggest:
2819
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsTemplate. Access the value via the '{suggest}' property getter instead.")
2820
+
2821
+ def __getitem__(self, key: str) -> Any:
2822
+ UserGroupPermissionsAppPermissionsTemplate.__key_warning(key)
2823
+ return super().__getitem__(key)
2824
+
2825
+ def get(self, key: str, default = None) -> Any:
2826
+ UserGroupPermissionsAppPermissionsTemplate.__key_warning(key)
2827
+ return super().get(key, default)
2828
+
2829
+ def __init__(__self__, *,
2830
+ actions: Sequence[str],
2831
+ app_ids: Optional[Sequence[str]] = None,
2832
+ template_ids: Optional[Sequence[str]] = None):
2833
+ """
2834
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2835
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2836
+ :param Sequence[str] template_ids: The template IDs to which the permission applies. Leave empty to apply to all environments.
2837
+ """
2838
+ pulumi.set(__self__, "actions", actions)
2839
+ if app_ids is not None:
2840
+ pulumi.set(__self__, "app_ids", app_ids)
2841
+ if template_ids is not None:
2842
+ pulumi.set(__self__, "template_ids", template_ids)
2843
+
2844
+ @property
2845
+ @pulumi.getter
2846
+ def actions(self) -> Sequence[str]:
2847
+ """
2848
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2849
+ """
2850
+ return pulumi.get(self, "actions")
2851
+
2852
+ @property
2853
+ @pulumi.getter(name="appIds")
2854
+ def app_ids(self) -> Optional[Sequence[str]]:
2855
+ """
2856
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2857
+ """
2858
+ return pulumi.get(self, "app_ids")
2859
+
2860
+ @property
2861
+ @pulumi.getter(name="templateIds")
2862
+ def template_ids(self) -> Optional[Sequence[str]]:
2863
+ """
2864
+ The template IDs to which the permission applies. Leave empty to apply to all environments.
2865
+ """
2866
+ return pulumi.get(self, "template_ids")
2867
+
2868
+
2869
+ @pulumi.output_type
2870
+ class UserGroupPermissionsAppPermissionsWorkflow(dict):
2871
+ @staticmethod
2872
+ def __key_warning(key: str):
2873
+ suggest = None
2874
+ if key == "appIds":
2875
+ suggest = "app_ids"
2876
+
2877
+ if suggest:
2878
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupPermissionsAppPermissionsWorkflow. Access the value via the '{suggest}' property getter instead.")
2879
+
2880
+ def __getitem__(self, key: str) -> Any:
2881
+ UserGroupPermissionsAppPermissionsWorkflow.__key_warning(key)
2882
+ return super().__getitem__(key)
2883
+
2884
+ def get(self, key: str, default = None) -> Any:
2885
+ UserGroupPermissionsAppPermissionsWorkflow.__key_warning(key)
2886
+ return super().get(key, default)
2887
+
2888
+ def __init__(__self__, *,
2889
+ actions: Sequence[str],
2890
+ app_ids: Optional[Sequence[str]] = None,
2891
+ filters: Optional[Sequence[str]] = None):
2892
+ """
2893
+ :param Sequence[str] actions: The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2894
+ :param Sequence[str] app_ids: The application IDs to which the permission applies. Leave empty to apply to all applications.
2895
+ :param Sequence[str] filters: The filters to apply to the action. Valid options are: NON*PRODUCTION*WORKFLOWS, PRODUCTION*WORKFLOWS, WORKFLOW*TEMPLATES.
2896
+ """
2897
+ pulumi.set(__self__, "actions", actions)
2898
+ if app_ids is not None:
2899
+ pulumi.set(__self__, "app_ids", app_ids)
2900
+ if filters is not None:
2901
+ pulumi.set(__self__, "filters", filters)
2902
+
2903
+ @property
2904
+ @pulumi.getter
2905
+ def actions(self) -> Sequence[str]:
2906
+ """
2907
+ The actions allowed to be performed. Valid options are CREATE, READ, UPDATE, DELETE
2908
+ """
2909
+ return pulumi.get(self, "actions")
2910
+
2911
+ @property
2912
+ @pulumi.getter(name="appIds")
2913
+ def app_ids(self) -> Optional[Sequence[str]]:
2914
+ """
2915
+ The application IDs to which the permission applies. Leave empty to apply to all applications.
2916
+ """
2917
+ return pulumi.get(self, "app_ids")
2918
+
2919
+ @property
2920
+ @pulumi.getter
2921
+ def filters(self) -> Optional[Sequence[str]]:
2922
+ """
2923
+ The filters to apply to the action. Valid options are: NON*PRODUCTION*WORKFLOWS, PRODUCTION*WORKFLOWS, WORKFLOW*TEMPLATES.
2924
+ """
2925
+ return pulumi.get(self, "filters")
2926
+
2927
+
2928
+ @pulumi.output_type
2929
+ class UserGroupSamlSettings(dict):
2930
+ @staticmethod
2931
+ def __key_warning(key: str):
2932
+ suggest = None
2933
+ if key == "groupName":
2934
+ suggest = "group_name"
2935
+ elif key == "ssoProviderId":
2936
+ suggest = "sso_provider_id"
2937
+
2938
+ if suggest:
2939
+ pulumi.log.warn(f"Key '{key}' not found in UserGroupSamlSettings. Access the value via the '{suggest}' property getter instead.")
2940
+
2941
+ def __getitem__(self, key: str) -> Any:
2942
+ UserGroupSamlSettings.__key_warning(key)
2943
+ return super().__getitem__(key)
2944
+
2945
+ def get(self, key: str, default = None) -> Any:
2946
+ UserGroupSamlSettings.__key_warning(key)
2947
+ return super().get(key, default)
2948
+
2949
+ def __init__(__self__, *,
2950
+ group_name: Optional[str] = None,
2951
+ sso_provider_id: Optional[str] = None):
2952
+ """
2953
+ :param str group_name: The group name of the SAML user group.
2954
+ :param str sso_provider_id: The ID of the SSO provider.
2955
+ """
2956
+ if group_name is not None:
2957
+ pulumi.set(__self__, "group_name", group_name)
2958
+ if sso_provider_id is not None:
2959
+ pulumi.set(__self__, "sso_provider_id", sso_provider_id)
2960
+
2961
+ @property
2962
+ @pulumi.getter(name="groupName")
2963
+ def group_name(self) -> Optional[str]:
2964
+ """
2965
+ The group name of the SAML user group.
2966
+ """
2967
+ return pulumi.get(self, "group_name")
2968
+
2969
+ @property
2970
+ @pulumi.getter(name="ssoProviderId")
2971
+ def sso_provider_id(self) -> Optional[str]:
2972
+ """
2973
+ The ID of the SSO provider.
2974
+ """
2975
+ return pulumi.get(self, "sso_provider_id")
2976
+
2977
+
2978
+ @pulumi.output_type
2979
+ class GetEncryptedTextUsageScopeResult(dict):
2980
+ def __init__(__self__, *,
2981
+ application_id: Optional[str] = None,
2982
+ environment_filter_type: Optional[str] = None,
2983
+ environment_id: Optional[str] = None):
2984
+ """
2985
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
2986
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
2987
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
2988
+ """
2989
+ if application_id is not None:
2990
+ pulumi.set(__self__, "application_id", application_id)
2991
+ if environment_filter_type is not None:
2992
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
2993
+ if environment_id is not None:
2994
+ pulumi.set(__self__, "environment_id", environment_id)
2995
+
2996
+ @property
2997
+ @pulumi.getter(name="applicationId")
2998
+ def application_id(self) -> Optional[str]:
2999
+ """
3000
+ Id of the application to scope to. If empty then this scope applies to all applications.
3001
+ """
3002
+ return pulumi.get(self, "application_id")
3003
+
3004
+ @property
3005
+ @pulumi.getter(name="environmentFilterType")
3006
+ def environment_filter_type(self) -> Optional[str]:
3007
+ """
3008
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3009
+ """
3010
+ return pulumi.get(self, "environment_filter_type")
3011
+
3012
+ @property
3013
+ @pulumi.getter(name="environmentId")
3014
+ def environment_id(self) -> Optional[str]:
3015
+ """
3016
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3017
+ """
3018
+ return pulumi.get(self, "environment_id")
3019
+
3020
+
3021
+ @pulumi.output_type
3022
+ class GetEnvironmentVariableOverrideResult(dict):
3023
+ def __init__(__self__, *,
3024
+ name: str,
3025
+ service_name: str,
3026
+ type: str,
3027
+ value: str):
3028
+ """
3029
+ :param str name: The name of the variable
3030
+ :param str service_name: The name of the service
3031
+ :param str type: The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
3032
+ :param str value: The value of the service variable
3033
+ """
3034
+ pulumi.set(__self__, "name", name)
3035
+ pulumi.set(__self__, "service_name", service_name)
3036
+ pulumi.set(__self__, "type", type)
3037
+ pulumi.set(__self__, "value", value)
3038
+
3039
+ @property
3040
+ @pulumi.getter
3041
+ def name(self) -> str:
3042
+ """
3043
+ The name of the variable
3044
+ """
3045
+ return pulumi.get(self, "name")
3046
+
3047
+ @property
3048
+ @pulumi.getter(name="serviceName")
3049
+ def service_name(self) -> str:
3050
+ """
3051
+ The name of the service
3052
+ """
3053
+ return pulumi.get(self, "service_name")
3054
+
3055
+ @property
3056
+ @pulumi.getter
3057
+ def type(self) -> str:
3058
+ """
3059
+ The type of the service variable. Valid values are `TEXT` and `ENCRYPTED_TEXT`
3060
+ """
3061
+ return pulumi.get(self, "type")
3062
+
3063
+ @property
3064
+ @pulumi.getter
3065
+ def value(self) -> str:
3066
+ """
3067
+ The value of the service variable
3068
+ """
3069
+ return pulumi.get(self, "value")
3070
+
3071
+
3072
+ @pulumi.output_type
3073
+ class GetGitConnectorCommitDetailResult(dict):
3074
+ def __init__(__self__, *,
3075
+ author_email_id: str,
3076
+ author_name: str,
3077
+ message: str):
3078
+ """
3079
+ :param str author_email_id: The email id of the author.
3080
+ :param str author_name: The name of the author.
3081
+ :param str message: Commit message.
3082
+ """
3083
+ pulumi.set(__self__, "author_email_id", author_email_id)
3084
+ pulumi.set(__self__, "author_name", author_name)
3085
+ pulumi.set(__self__, "message", message)
3086
+
3087
+ @property
3088
+ @pulumi.getter(name="authorEmailId")
3089
+ def author_email_id(self) -> str:
3090
+ """
3091
+ The email id of the author.
3092
+ """
3093
+ return pulumi.get(self, "author_email_id")
3094
+
3095
+ @property
3096
+ @pulumi.getter(name="authorName")
3097
+ def author_name(self) -> str:
3098
+ """
3099
+ The name of the author.
3100
+ """
3101
+ return pulumi.get(self, "author_name")
3102
+
3103
+ @property
3104
+ @pulumi.getter
3105
+ def message(self) -> str:
3106
+ """
3107
+ Commit message.
3108
+ """
3109
+ return pulumi.get(self, "message")
3110
+
3111
+
3112
+ @pulumi.output_type
3113
+ class GetSecretManagerUsageScopeResult(dict):
3114
+ def __init__(__self__, *,
3115
+ application_id: Optional[str] = None,
3116
+ environment_filter_type: Optional[str] = None,
3117
+ environment_id: Optional[str] = None):
3118
+ """
3119
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
3120
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3121
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3122
+ """
3123
+ if application_id is not None:
3124
+ pulumi.set(__self__, "application_id", application_id)
3125
+ if environment_filter_type is not None:
3126
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
3127
+ if environment_id is not None:
3128
+ pulumi.set(__self__, "environment_id", environment_id)
3129
+
3130
+ @property
3131
+ @pulumi.getter(name="applicationId")
3132
+ def application_id(self) -> Optional[str]:
3133
+ """
3134
+ Id of the application to scope to. If empty then this scope applies to all applications.
3135
+ """
3136
+ return pulumi.get(self, "application_id")
3137
+
3138
+ @property
3139
+ @pulumi.getter(name="environmentFilterType")
3140
+ def environment_filter_type(self) -> Optional[str]:
3141
+ """
3142
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3143
+ """
3144
+ return pulumi.get(self, "environment_filter_type")
3145
+
3146
+ @property
3147
+ @pulumi.getter(name="environmentId")
3148
+ def environment_id(self) -> Optional[str]:
3149
+ """
3150
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3151
+ """
3152
+ return pulumi.get(self, "environment_id")
3153
+
3154
+
3155
+ @pulumi.output_type
3156
+ class GetSshCredentialUsageScopeResult(dict):
3157
+ def __init__(__self__, *,
3158
+ application_id: Optional[str] = None,
3159
+ environment_filter_type: Optional[str] = None,
3160
+ environment_id: Optional[str] = None):
3161
+ """
3162
+ :param str application_id: Id of the application to scope to. If empty then this scope applies to all applications.
3163
+ :param str environment_filter_type: Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3164
+ :param str environment_id: Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3165
+ """
3166
+ if application_id is not None:
3167
+ pulumi.set(__self__, "application_id", application_id)
3168
+ if environment_filter_type is not None:
3169
+ pulumi.set(__self__, "environment_filter_type", environment_filter_type)
3170
+ if environment_id is not None:
3171
+ pulumi.set(__self__, "environment_id", environment_id)
3172
+
3173
+ @property
3174
+ @pulumi.getter(name="applicationId")
3175
+ def application_id(self) -> Optional[str]:
3176
+ """
3177
+ Id of the application to scope to. If empty then this scope applies to all applications.
3178
+ """
3179
+ return pulumi.get(self, "application_id")
3180
+
3181
+ @property
3182
+ @pulumi.getter(name="environmentFilterType")
3183
+ def environment_filter_type(self) -> Optional[str]:
3184
+ """
3185
+ Type of environment filter applied. Cannot be used with `environment_id`. Valid options are NON*PRODUCTION*ENVIRONMENTS, PRODUCTION_ENVIRONMENTS.
3186
+ """
3187
+ return pulumi.get(self, "environment_filter_type")
3188
+
3189
+ @property
3190
+ @pulumi.getter(name="environmentId")
3191
+ def environment_id(self) -> Optional[str]:
3192
+ """
3193
+ Id of the id of the specific environment to scope to. Cannot be used with `environment_filter_type`.
3194
+ """
3195
+ return pulumi.get(self, "environment_id")
3196
+
3197
+
3198
+ @pulumi.output_type
3199
+ class GetTriggerConditionResult(dict):
3200
+ def __init__(__self__, *,
3201
+ on_webhooks: Sequence['outputs.GetTriggerConditionOnWebhookResult'],
3202
+ trigger_condition_type: str):
3203
+ """
3204
+ :param Sequence['GetTriggerConditionOnWebhookArgs'] on_webhooks: On webhook.
3205
+ :param str trigger_condition_type: Trigger condition.
3206
+ """
3207
+ pulumi.set(__self__, "on_webhooks", on_webhooks)
3208
+ pulumi.set(__self__, "trigger_condition_type", trigger_condition_type)
3209
+
3210
+ @property
3211
+ @pulumi.getter(name="onWebhooks")
3212
+ def on_webhooks(self) -> Sequence['outputs.GetTriggerConditionOnWebhookResult']:
3213
+ """
3214
+ On webhook.
3215
+ """
3216
+ return pulumi.get(self, "on_webhooks")
3217
+
3218
+ @property
3219
+ @pulumi.getter(name="triggerConditionType")
3220
+ def trigger_condition_type(self) -> str:
3221
+ """
3222
+ Trigger condition.
3223
+ """
3224
+ return pulumi.get(self, "trigger_condition_type")
3225
+
3226
+
3227
+ @pulumi.output_type
3228
+ class GetTriggerConditionOnWebhookResult(dict):
3229
+ def __init__(__self__, *,
3230
+ webhook_details: Sequence['outputs.GetTriggerConditionOnWebhookWebhookDetailResult']):
3231
+ """
3232
+ :param Sequence['GetTriggerConditionOnWebhookWebhookDetailArgs'] webhook_details: Webhook details.
3233
+ """
3234
+ pulumi.set(__self__, "webhook_details", webhook_details)
3235
+
3236
+ @property
3237
+ @pulumi.getter(name="webhookDetails")
3238
+ def webhook_details(self) -> Sequence['outputs.GetTriggerConditionOnWebhookWebhookDetailResult']:
3239
+ """
3240
+ Webhook details.
3241
+ """
3242
+ return pulumi.get(self, "webhook_details")
3243
+
3244
+
3245
+ @pulumi.output_type
3246
+ class GetTriggerConditionOnWebhookWebhookDetailResult(dict):
3247
+ def __init__(__self__, *,
3248
+ header: str,
3249
+ method: str,
3250
+ payload: str,
3251
+ webhook_token: str,
3252
+ webhook_url: str):
3253
+ """
3254
+ :param str header: Header.
3255
+ :param str method: Method.
3256
+ :param str payload: Payload.
3257
+ :param str webhook_token: Webhook token.
3258
+ :param str webhook_url: Webhook URL.
3259
+ """
3260
+ pulumi.set(__self__, "header", header)
3261
+ pulumi.set(__self__, "method", method)
3262
+ pulumi.set(__self__, "payload", payload)
3263
+ pulumi.set(__self__, "webhook_token", webhook_token)
3264
+ pulumi.set(__self__, "webhook_url", webhook_url)
3265
+
3266
+ @property
3267
+ @pulumi.getter
3268
+ def header(self) -> str:
3269
+ """
3270
+ Header.
3271
+ """
3272
+ return pulumi.get(self, "header")
3273
+
3274
+ @property
3275
+ @pulumi.getter
3276
+ def method(self) -> str:
3277
+ """
3278
+ Method.
3279
+ """
3280
+ return pulumi.get(self, "method")
3281
+
3282
+ @property
3283
+ @pulumi.getter
3284
+ def payload(self) -> str:
3285
+ """
3286
+ Payload.
3287
+ """
3288
+ return pulumi.get(self, "payload")
3289
+
3290
+ @property
3291
+ @pulumi.getter(name="webhookToken")
3292
+ def webhook_token(self) -> str:
3293
+ """
3294
+ Webhook token.
3295
+ """
3296
+ return pulumi.get(self, "webhook_token")
3297
+
3298
+ @property
3299
+ @pulumi.getter(name="webhookUrl")
3300
+ def webhook_url(self) -> str:
3301
+ """
3302
+ Webhook URL.
3303
+ """
3304
+ return pulumi.get(self, "webhook_url")
3305
+
3306
+