pulumi-mongodbatlas 4.1.0a1767140082__py3-none-any.whl → 4.2.0__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.
Files changed (44) hide show
  1. pulumi_mongodbatlas/__init__.py +75 -0
  2. pulumi_mongodbatlas/_inputs.py +423 -49
  3. pulumi_mongodbatlas/advanced_cluster.py +7 -7
  4. pulumi_mongodbatlas/api_key_project_assignment.py +16 -2
  5. pulumi_mongodbatlas/get_access_list_api_key.py +19 -14
  6. pulumi_mongodbatlas/get_access_list_api_keys.py +13 -14
  7. pulumi_mongodbatlas/get_api_key_project_assignment.py +16 -2
  8. pulumi_mongodbatlas/get_api_key_project_assignments.py +16 -2
  9. pulumi_mongodbatlas/get_maintenance_window.py +1 -1
  10. pulumi_mongodbatlas/get_project_ip_access_list.py +63 -65
  11. pulumi_mongodbatlas/get_project_service_account.py +185 -0
  12. pulumi_mongodbatlas/get_project_service_account_access_list_entries.py +195 -0
  13. pulumi_mongodbatlas/get_project_service_account_access_list_entry.py +276 -0
  14. pulumi_mongodbatlas/get_project_service_account_secret.py +244 -0
  15. pulumi_mongodbatlas/get_project_service_accounts.py +109 -0
  16. pulumi_mongodbatlas/get_search_index.py +15 -1
  17. pulumi_mongodbatlas/get_service_account.py +185 -0
  18. pulumi_mongodbatlas/get_service_account_access_list_entries.py +195 -0
  19. pulumi_mongodbatlas/get_service_account_access_list_entry.py +276 -0
  20. pulumi_mongodbatlas/get_service_account_project_assignment.py +176 -0
  21. pulumi_mongodbatlas/get_service_account_project_assignments.py +177 -0
  22. pulumi_mongodbatlas/get_service_account_secret.py +244 -0
  23. pulumi_mongodbatlas/get_service_accounts.py +109 -0
  24. pulumi_mongodbatlas/get_stream_connection.py +46 -2
  25. pulumi_mongodbatlas/get_stream_processor.py +16 -3
  26. pulumi_mongodbatlas/get_stream_processors.py +4 -2
  27. pulumi_mongodbatlas/maintenance_window.py +21 -21
  28. pulumi_mongodbatlas/outputs.py +1186 -120
  29. pulumi_mongodbatlas/project_ip_access_list.py +71 -87
  30. pulumi_mongodbatlas/project_service_account.py +444 -0
  31. pulumi_mongodbatlas/project_service_account_access_list_entry.py +490 -0
  32. pulumi_mongodbatlas/project_service_account_secret.py +491 -0
  33. pulumi_mongodbatlas/pulumi-plugin.json +1 -1
  34. pulumi_mongodbatlas/search_index.py +47 -0
  35. pulumi_mongodbatlas/service_account.py +444 -0
  36. pulumi_mongodbatlas/service_account_access_list_entry.py +490 -0
  37. pulumi_mongodbatlas/service_account_project_assignment.py +314 -0
  38. pulumi_mongodbatlas/service_account_secret.py +491 -0
  39. pulumi_mongodbatlas/stream_connection.py +185 -7
  40. pulumi_mongodbatlas/stream_processor.py +51 -2
  41. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/METADATA +1 -1
  42. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/RECORD +44 -25
  43. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/WHEEL +1 -1
  44. {pulumi_mongodbatlas-4.1.0a1767140082.dist-info → pulumi_mongodbatlas-4.2.0.dist-info}/top_level.txt +0 -0
@@ -120,6 +120,11 @@ from .get_project_api_keys import *
120
120
  from .get_project_invitation import *
121
121
  from .get_project_ip_access_list import *
122
122
  from .get_project_ip_addresses import *
123
+ from .get_project_service_account import *
124
+ from .get_project_service_account_access_list_entries import *
125
+ from .get_project_service_account_access_list_entry import *
126
+ from .get_project_service_account_secret import *
127
+ from .get_project_service_accounts import *
123
128
  from .get_projects import *
124
129
  from .get_push_based_log_export import *
125
130
  from .get_resource_policies import *
@@ -130,6 +135,13 @@ from .get_search_index import *
130
135
  from .get_search_indexes import *
131
136
  from .get_serverless_instance import *
132
137
  from .get_serverless_instances import *
138
+ from .get_service_account import *
139
+ from .get_service_account_access_list_entries import *
140
+ from .get_service_account_access_list_entry import *
141
+ from .get_service_account_project_assignment import *
142
+ from .get_service_account_project_assignments import *
143
+ from .get_service_account_secret import *
144
+ from .get_service_accounts import *
133
145
  from .get_shared_tier_restore_job import *
134
146
  from .get_shared_tier_restore_jobs import *
135
147
  from .get_shared_tier_snapshot import *
@@ -168,12 +180,19 @@ from .project import *
168
180
  from .project_api_key import *
169
181
  from .project_invitation import *
170
182
  from .project_ip_access_list import *
183
+ from .project_service_account import *
184
+ from .project_service_account_access_list_entry import *
185
+ from .project_service_account_secret import *
171
186
  from .provider import *
172
187
  from .push_based_log_export import *
173
188
  from .resource_policy import *
174
189
  from .search_deployment import *
175
190
  from .search_index import *
176
191
  from .serverless_instance import *
192
+ from .service_account import *
193
+ from .service_account_access_list_entry import *
194
+ from .service_account_project_assignment import *
195
+ from .service_account_secret import *
177
196
  from .stream_connection import *
178
197
  from .stream_instance import *
179
198
  from .stream_privatelink_endpoint import *
@@ -588,6 +607,30 @@ _utilities.register(
588
607
  "mongodbatlas:index/projectIpAccessList:ProjectIpAccessList": "ProjectIpAccessList"
589
608
  }
590
609
  },
610
+ {
611
+ "pkg": "mongodbatlas",
612
+ "mod": "index/projectServiceAccount",
613
+ "fqn": "pulumi_mongodbatlas",
614
+ "classes": {
615
+ "mongodbatlas:index/projectServiceAccount:ProjectServiceAccount": "ProjectServiceAccount"
616
+ }
617
+ },
618
+ {
619
+ "pkg": "mongodbatlas",
620
+ "mod": "index/projectServiceAccountAccessListEntry",
621
+ "fqn": "pulumi_mongodbatlas",
622
+ "classes": {
623
+ "mongodbatlas:index/projectServiceAccountAccessListEntry:ProjectServiceAccountAccessListEntry": "ProjectServiceAccountAccessListEntry"
624
+ }
625
+ },
626
+ {
627
+ "pkg": "mongodbatlas",
628
+ "mod": "index/projectServiceAccountSecret",
629
+ "fqn": "pulumi_mongodbatlas",
630
+ "classes": {
631
+ "mongodbatlas:index/projectServiceAccountSecret:ProjectServiceAccountSecret": "ProjectServiceAccountSecret"
632
+ }
633
+ },
591
634
  {
592
635
  "pkg": "mongodbatlas",
593
636
  "mod": "index/pushBasedLogExport",
@@ -628,6 +671,38 @@ _utilities.register(
628
671
  "mongodbatlas:index/serverlessInstance:ServerlessInstance": "ServerlessInstance"
629
672
  }
630
673
  },
674
+ {
675
+ "pkg": "mongodbatlas",
676
+ "mod": "index/serviceAccount",
677
+ "fqn": "pulumi_mongodbatlas",
678
+ "classes": {
679
+ "mongodbatlas:index/serviceAccount:ServiceAccount": "ServiceAccount"
680
+ }
681
+ },
682
+ {
683
+ "pkg": "mongodbatlas",
684
+ "mod": "index/serviceAccountAccessListEntry",
685
+ "fqn": "pulumi_mongodbatlas",
686
+ "classes": {
687
+ "mongodbatlas:index/serviceAccountAccessListEntry:ServiceAccountAccessListEntry": "ServiceAccountAccessListEntry"
688
+ }
689
+ },
690
+ {
691
+ "pkg": "mongodbatlas",
692
+ "mod": "index/serviceAccountProjectAssignment",
693
+ "fqn": "pulumi_mongodbatlas",
694
+ "classes": {
695
+ "mongodbatlas:index/serviceAccountProjectAssignment:ServiceAccountProjectAssignment": "ServiceAccountProjectAssignment"
696
+ }
697
+ },
698
+ {
699
+ "pkg": "mongodbatlas",
700
+ "mod": "index/serviceAccountSecret",
701
+ "fqn": "pulumi_mongodbatlas",
702
+ "classes": {
703
+ "mongodbatlas:index/serviceAccountSecret:ServiceAccountSecret": "ServiceAccountSecret"
704
+ }
705
+ },
631
706
  {
632
707
  "pkg": "mongodbatlas",
633
708
  "mod": "index/streamConnection",