pulumi-rancher2 5.3.0a1707547530__tar.gz → 10.4.0a1765584608__tar.gz

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.
Files changed (125) hide show
  1. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/PKG-INFO +7 -6
  2. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/README.md +2 -2
  3. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/__init__.py +6 -141
  4. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/_inputs.py +38254 -0
  5. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/_utilities.py +50 -10
  6. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/app_v2.py +994 -0
  7. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_active_directory.py +587 -583
  8. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_adfs.py +247 -241
  9. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_azure_ad.py +281 -241
  10. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_free_ipa.py +575 -569
  11. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_github.py +179 -173
  12. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_keycloak.py +264 -258
  13. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_okta.py +247 -241
  14. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_open_ldap.py +575 -569
  15. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/auth_config_ping.py +264 -258
  16. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/bootstrap.py +162 -223
  17. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/catalog_v2.py +995 -0
  18. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/certificate.py +144 -138
  19. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/cloud_credential.py +207 -193
  20. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/cluster.py +2699 -0
  21. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/cluster_driver.py +218 -174
  22. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/cluster_role_template_binding.py +165 -157
  23. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/cluster_sync.py +210 -290
  24. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/cluster_template.py +203 -193
  25. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/cluster_v2.py +891 -0
  26. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/config/__init__.py +2 -1
  27. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/config/__init__.pyi +7 -2
  28. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/config/vars.py +16 -11
  29. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/config_map_v2.py +138 -132
  30. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/custom_user_token.py +241 -231
  31. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/etcd_backup.py +165 -157
  32. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/feature.py +82 -72
  33. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_catalog_v2.py +131 -48
  34. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_certificate.py +59 -39
  35. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cloud_credential.py +29 -19
  36. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cluster.py +109 -152
  37. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cluster_driver.py +55 -37
  38. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cluster_role_template_binding.py +61 -43
  39. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cluster_template.py +52 -35
  40. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_cluster_v2.py +72 -62
  41. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_config_map_v2.py +54 -37
  42. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_etcd_backup.py +48 -32
  43. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_global_role.py +77 -29
  44. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_global_role_binding.py +47 -33
  45. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_namespace.py +46 -31
  46. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_node_driver.py +58 -39
  47. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_node_pool.py +67 -46
  48. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_node_template.py +69 -46
  49. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/get_pod_security_admission_configuration_template.py +192 -0
  50. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_principal.py +31 -21
  51. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_project.py +52 -60
  52. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_project_role_template_binding.py +57 -39
  53. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_registry.py +58 -38
  54. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_role_template.py +85 -43
  55. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_secret.py +59 -39
  56. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_secret_v2.py +57 -39
  57. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_setting.py +26 -17
  58. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_storage_class_v2.py +58 -39
  59. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/get_user.py +66 -36
  60. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/global_role.py +543 -0
  61. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/global_role_binding.py +116 -106
  62. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/machine_config_v2.py +297 -244
  63. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/namespace.py +202 -192
  64. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/node_driver.py +199 -191
  65. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/node_pool.py +320 -216
  66. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/node_template.py +529 -493
  67. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/outputs.py +17928 -22546
  68. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/pod_security_admission_configuration_template.py +467 -0
  69. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/project.py +615 -0
  70. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/project_role_template_binding.py +168 -160
  71. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/provider.py +126 -103
  72. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/pulumi-plugin.json +5 -0
  73. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/registry.py +148 -138
  74. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/role_template.py +837 -0
  75. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2/secret.py +537 -0
  76. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/secret_v2.py +155 -149
  77. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/setting.py +84 -74
  78. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/storage_class_v2.py +189 -183
  79. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/token.py +173 -193
  80. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/user.py +178 -119
  81. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2.egg-info/PKG-INFO +7 -6
  82. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2.egg-info/SOURCES.txt +2 -26
  83. pulumi_rancher2-10.4.0a1765584608/pulumi_rancher2.egg-info/requires.txt +6 -0
  84. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pyproject.toml +3 -3
  85. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/_inputs.py +0 -33468
  86. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/active_directory.py +0 -1723
  87. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/app.py +0 -932
  88. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/app_v2.py +0 -947
  89. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/catalog.py +0 -811
  90. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/catalog_v2.py +0 -801
  91. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster.py +0 -2839
  92. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster_alert_group.py +0 -570
  93. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster_alert_rule.py +0 -818
  94. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster_alter_group.py +0 -574
  95. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster_alter_rule.py +0 -810
  96. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/cluster_v2.py +0 -932
  97. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_app.py +0 -270
  98. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_catalog.py +0 -259
  99. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_cluster_alert_group.py +0 -210
  100. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_cluster_alter_rule.py +0 -280
  101. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_global_dns_provider.py +0 -181
  102. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_multi_cluster_app.py +0 -271
  103. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_notifier.py +0 -260
  104. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_pod_security_policy_template.py +0 -506
  105. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_project_alert_group.py +0 -210
  106. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_project_alert_rule.py +0 -267
  107. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/get_role_tempalte.py +0 -264
  108. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/global_dns.py +0 -582
  109. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/global_dns_provider.py +0 -523
  110. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/global_role.py +0 -460
  111. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/multi_cluster_app.py +0 -930
  112. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/notifier.py +0 -762
  113. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/pod_security_policy_template.py +0 -1644
  114. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/project.py +0 -792
  115. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/project_alert_group.py +0 -568
  116. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/project_alert_rule.py +0 -813
  117. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/pulumi-plugin.json +0 -4
  118. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/role_tempalte.py +0 -786
  119. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/role_template.py +0 -782
  120. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2/secret.py +0 -457
  121. pulumi_rancher2-5.3.0a1707547530/pulumi_rancher2.egg-info/requires.txt +0 -3
  122. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2/py.typed +0 -0
  123. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2.egg-info/dependency_links.txt +0 -0
  124. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/pulumi_rancher2.egg-info/top_level.txt +0 -0
  125. {pulumi_rancher2-5.3.0a1707547530 → pulumi_rancher2-10.4.0a1765584608}/setup.cfg +0 -0
@@ -1,23 +1,24 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pulumi_rancher2
3
- Version: 5.3.0a1707547530
3
+ Version: 10.4.0a1765584608
4
4
  Summary: A Pulumi package for creating and managing rancher2 resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-rancher2
8
8
  Keywords: pulumi,rancher2
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.0.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-rancher2/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-rancher2/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
17
18
  [![NPM version](https://badge.fury.io/js/%40pulumi%2Francher2.svg)](https://www.npmjs.com/package/@pulumi/rancher2)
18
19
  [![Python version](https://badge.fury.io/py/pulumi-rancher2.svg)](https://pypi.org/project/pulumi-rancher2)
19
20
  [![NuGet version](https://badge.fury.io/nu/pulumi.rancher2.svg)](https://badge.fury.io/nu/pulumi.rancher2)
20
- [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-rancher2/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-rancher2/sdk/v5/go)
21
+ [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-rancher2/sdk/v9/go)](https://pkg.go.dev/github.com/pulumi/pulumi-rancher2/sdk/v9/go)
21
22
  [![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-rancher2/blob/master/LICENSE)
22
23
 
23
24
  # Rancher2 Resource Provider
@@ -49,7 +50,7 @@ To use from Python, install using `pip`:
49
50
 
50
51
  To use from Go, use `go get` to grab the latest version of the library
51
52
 
52
- $ go get github.com/pulumi/pulumi-rancher2/sdk/v5
53
+ $ go get github.com/pulumi/pulumi-rancher2/sdk/v9
53
54
 
54
55
  ### .NET
55
56
 
@@ -3,7 +3,7 @@
3
3
  [![NPM version](https://badge.fury.io/js/%40pulumi%2Francher2.svg)](https://www.npmjs.com/package/@pulumi/rancher2)
4
4
  [![Python version](https://badge.fury.io/py/pulumi-rancher2.svg)](https://pypi.org/project/pulumi-rancher2)
5
5
  [![NuGet version](https://badge.fury.io/nu/pulumi.rancher2.svg)](https://badge.fury.io/nu/pulumi.rancher2)
6
- [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-rancher2/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-rancher2/sdk/v5/go)
6
+ [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-rancher2/sdk/v9/go)](https://pkg.go.dev/github.com/pulumi/pulumi-rancher2/sdk/v9/go)
7
7
  [![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-rancher2/blob/master/LICENSE)
8
8
 
9
9
  # Rancher2 Resource Provider
@@ -35,7 +35,7 @@ To use from Python, install using `pip`:
35
35
 
36
36
  To use from Go, use `go get` to grab the latest version of the library
37
37
 
38
- $ go get github.com/pulumi/pulumi-rancher2/sdk/v5
38
+ $ go get github.com/pulumi/pulumi-rancher2/sdk/v9
39
39
 
40
40
  ### .NET
41
41
 
@@ -1,12 +1,11 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins as _builtins
5
6
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
8
- from .active_directory import *
9
- from .app import *
10
9
  from .app_v2 import *
11
10
  from .auth_config_active_directory import *
12
11
  from .auth_config_adfs import *
@@ -18,15 +17,10 @@ from .auth_config_okta import *
18
17
  from .auth_config_open_ldap import *
19
18
  from .auth_config_ping import *
20
19
  from .bootstrap import *
21
- from .catalog import *
22
20
  from .catalog_v2 import *
23
21
  from .certificate import *
24
22
  from .cloud_credential import *
25
23
  from .cluster import *
26
- from .cluster_alert_group import *
27
- from .cluster_alert_rule import *
28
- from .cluster_alter_group import *
29
- from .cluster_alter_rule import *
30
24
  from .cluster_driver import *
31
25
  from .cluster_role_template_binding import *
32
26
  from .cluster_sync import *
@@ -36,62 +30,45 @@ from .config_map_v2 import *
36
30
  from .custom_user_token import *
37
31
  from .etcd_backup import *
38
32
  from .feature import *
39
- from .get_app import *
40
- from .get_catalog import *
41
33
  from .get_catalog_v2 import *
42
34
  from .get_certificate import *
43
35
  from .get_cloud_credential import *
44
36
  from .get_cluster import *
45
- from .get_cluster_alert_group import *
46
- from .get_cluster_alter_rule import *
47
37
  from .get_cluster_driver import *
48
38
  from .get_cluster_role_template_binding import *
49
39
  from .get_cluster_template import *
50
40
  from .get_cluster_v2 import *
51
41
  from .get_config_map_v2 import *
52
42
  from .get_etcd_backup import *
53
- from .get_global_dns_provider import *
54
43
  from .get_global_role import *
55
44
  from .get_global_role_binding import *
56
- from .get_multi_cluster_app import *
57
45
  from .get_namespace import *
58
46
  from .get_node_driver import *
59
47
  from .get_node_pool import *
60
48
  from .get_node_template import *
61
- from .get_notifier import *
62
- from .get_pod_security_policy_template import *
49
+ from .get_pod_security_admission_configuration_template import *
63
50
  from .get_principal import *
64
51
  from .get_project import *
65
- from .get_project_alert_group import *
66
- from .get_project_alert_rule import *
67
52
  from .get_project_role_template_binding import *
68
53
  from .get_registry import *
69
- from .get_role_tempalte import *
70
54
  from .get_role_template import *
71
55
  from .get_secret import *
72
56
  from .get_secret_v2 import *
73
57
  from .get_setting import *
74
58
  from .get_storage_class_v2 import *
75
59
  from .get_user import *
76
- from .global_dns import *
77
- from .global_dns_provider import *
78
60
  from .global_role import *
79
61
  from .global_role_binding import *
80
62
  from .machine_config_v2 import *
81
- from .multi_cluster_app import *
82
63
  from .namespace import *
83
64
  from .node_driver import *
84
65
  from .node_pool import *
85
66
  from .node_template import *
86
- from .notifier import *
87
- from .pod_security_policy_template import *
67
+ from .pod_security_admission_configuration_template import *
88
68
  from .project import *
89
- from .project_alert_group import *
90
- from .project_alert_rule import *
91
69
  from .project_role_template_binding import *
92
70
  from .provider import *
93
71
  from .registry import *
94
- from .role_tempalte import *
95
72
  from .role_template import *
96
73
  from .secret import *
97
74
  from .secret_v2 import *
@@ -112,22 +89,6 @@ else:
112
89
  _utilities.register(
113
90
  resource_modules="""
114
91
  [
115
- {
116
- "pkg": "rancher2",
117
- "mod": "index/activeDirectory",
118
- "fqn": "pulumi_rancher2",
119
- "classes": {
120
- "rancher2:index/activeDirectory:ActiveDirectory": "ActiveDirectory"
121
- }
122
- },
123
- {
124
- "pkg": "rancher2",
125
- "mod": "index/app",
126
- "fqn": "pulumi_rancher2",
127
- "classes": {
128
- "rancher2:index/app:App": "App"
129
- }
130
- },
131
92
  {
132
93
  "pkg": "rancher2",
133
94
  "mod": "index/appV2",
@@ -216,14 +177,6 @@ _utilities.register(
216
177
  "rancher2:index/bootstrap:Bootstrap": "Bootstrap"
217
178
  }
218
179
  },
219
- {
220
- "pkg": "rancher2",
221
- "mod": "index/catalog",
222
- "fqn": "pulumi_rancher2",
223
- "classes": {
224
- "rancher2:index/catalog:Catalog": "Catalog"
225
- }
226
- },
227
180
  {
228
181
  "pkg": "rancher2",
229
182
  "mod": "index/catalogV2",
@@ -256,38 +209,6 @@ _utilities.register(
256
209
  "rancher2:index/cluster:Cluster": "Cluster"
257
210
  }
258
211
  },
259
- {
260
- "pkg": "rancher2",
261
- "mod": "index/clusterAlertGroup",
262
- "fqn": "pulumi_rancher2",
263
- "classes": {
264
- "rancher2:index/clusterAlertGroup:ClusterAlertGroup": "ClusterAlertGroup"
265
- }
266
- },
267
- {
268
- "pkg": "rancher2",
269
- "mod": "index/clusterAlertRule",
270
- "fqn": "pulumi_rancher2",
271
- "classes": {
272
- "rancher2:index/clusterAlertRule:ClusterAlertRule": "ClusterAlertRule"
273
- }
274
- },
275
- {
276
- "pkg": "rancher2",
277
- "mod": "index/clusterAlterGroup",
278
- "fqn": "pulumi_rancher2",
279
- "classes": {
280
- "rancher2:index/clusterAlterGroup:ClusterAlterGroup": "ClusterAlterGroup"
281
- }
282
- },
283
- {
284
- "pkg": "rancher2",
285
- "mod": "index/clusterAlterRule",
286
- "fqn": "pulumi_rancher2",
287
- "classes": {
288
- "rancher2:index/clusterAlterRule:ClusterAlterRule": "ClusterAlterRule"
289
- }
290
- },
291
212
  {
292
213
  "pkg": "rancher2",
293
214
  "mod": "index/clusterDriver",
@@ -360,22 +281,6 @@ _utilities.register(
360
281
  "rancher2:index/feature:Feature": "Feature"
361
282
  }
362
283
  },
363
- {
364
- "pkg": "rancher2",
365
- "mod": "index/globalDns",
366
- "fqn": "pulumi_rancher2",
367
- "classes": {
368
- "rancher2:index/globalDns:GlobalDns": "GlobalDns"
369
- }
370
- },
371
- {
372
- "pkg": "rancher2",
373
- "mod": "index/globalDnsProvider",
374
- "fqn": "pulumi_rancher2",
375
- "classes": {
376
- "rancher2:index/globalDnsProvider:GlobalDnsProvider": "GlobalDnsProvider"
377
- }
378
- },
379
284
  {
380
285
  "pkg": "rancher2",
381
286
  "mod": "index/globalRole",
@@ -400,14 +305,6 @@ _utilities.register(
400
305
  "rancher2:index/machineConfigV2:MachineConfigV2": "MachineConfigV2"
401
306
  }
402
307
  },
403
- {
404
- "pkg": "rancher2",
405
- "mod": "index/multiClusterApp",
406
- "fqn": "pulumi_rancher2",
407
- "classes": {
408
- "rancher2:index/multiClusterApp:MultiClusterApp": "MultiClusterApp"
409
- }
410
- },
411
308
  {
412
309
  "pkg": "rancher2",
413
310
  "mod": "index/namespace",
@@ -442,18 +339,10 @@ _utilities.register(
442
339
  },
443
340
  {
444
341
  "pkg": "rancher2",
445
- "mod": "index/notifier",
446
- "fqn": "pulumi_rancher2",
447
- "classes": {
448
- "rancher2:index/notifier:Notifier": "Notifier"
449
- }
450
- },
451
- {
452
- "pkg": "rancher2",
453
- "mod": "index/podSecurityPolicyTemplate",
342
+ "mod": "index/podSecurityAdmissionConfigurationTemplate",
454
343
  "fqn": "pulumi_rancher2",
455
344
  "classes": {
456
- "rancher2:index/podSecurityPolicyTemplate:PodSecurityPolicyTemplate": "PodSecurityPolicyTemplate"
345
+ "rancher2:index/podSecurityAdmissionConfigurationTemplate:PodSecurityAdmissionConfigurationTemplate": "PodSecurityAdmissionConfigurationTemplate"
457
346
  }
458
347
  },
459
348
  {
@@ -464,22 +353,6 @@ _utilities.register(
464
353
  "rancher2:index/project:Project": "Project"
465
354
  }
466
355
  },
467
- {
468
- "pkg": "rancher2",
469
- "mod": "index/projectAlertGroup",
470
- "fqn": "pulumi_rancher2",
471
- "classes": {
472
- "rancher2:index/projectAlertGroup:ProjectAlertGroup": "ProjectAlertGroup"
473
- }
474
- },
475
- {
476
- "pkg": "rancher2",
477
- "mod": "index/projectAlertRule",
478
- "fqn": "pulumi_rancher2",
479
- "classes": {
480
- "rancher2:index/projectAlertRule:ProjectAlertRule": "ProjectAlertRule"
481
- }
482
- },
483
356
  {
484
357
  "pkg": "rancher2",
485
358
  "mod": "index/projectRoleTemplateBinding",
@@ -496,14 +369,6 @@ _utilities.register(
496
369
  "rancher2:index/registry:Registry": "Registry"
497
370
  }
498
371
  },
499
- {
500
- "pkg": "rancher2",
501
- "mod": "index/roleTempalte",
502
- "fqn": "pulumi_rancher2",
503
- "classes": {
504
- "rancher2:index/roleTempalte:RoleTempalte": "RoleTempalte"
505
- }
506
- },
507
372
  {
508
373
  "pkg": "rancher2",
509
374
  "mod": "index/roleTemplate",