pulumi-mongodbatlas 4.2.0__py3-none-any.whl → 4.2.0a1768501011__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.
- pulumi_mongodbatlas/__init__.py +0 -75
- pulumi_mongodbatlas/_inputs.py +12 -366
- pulumi_mongodbatlas/api_key_project_assignment.py +2 -16
- pulumi_mongodbatlas/get_access_list_api_key.py +14 -19
- pulumi_mongodbatlas/get_access_list_api_keys.py +14 -13
- pulumi_mongodbatlas/get_api_key_project_assignment.py +2 -16
- pulumi_mongodbatlas/get_api_key_project_assignments.py +2 -16
- pulumi_mongodbatlas/get_maintenance_window.py +1 -1
- pulumi_mongodbatlas/get_project_ip_access_list.py +65 -63
- pulumi_mongodbatlas/get_stream_connection.py +2 -46
- pulumi_mongodbatlas/maintenance_window.py +21 -21
- pulumi_mongodbatlas/outputs.py +94 -1126
- pulumi_mongodbatlas/project_ip_access_list.py +100 -71
- pulumi_mongodbatlas/pulumi-plugin.json +1 -1
- pulumi_mongodbatlas/stream_connection.py +7 -185
- {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/METADATA +1 -1
- {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/RECORD +19 -38
- {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/WHEEL +1 -1
- pulumi_mongodbatlas/get_project_service_account.py +0 -185
- pulumi_mongodbatlas/get_project_service_account_access_list_entries.py +0 -195
- pulumi_mongodbatlas/get_project_service_account_access_list_entry.py +0 -276
- pulumi_mongodbatlas/get_project_service_account_secret.py +0 -244
- pulumi_mongodbatlas/get_project_service_accounts.py +0 -109
- pulumi_mongodbatlas/get_service_account.py +0 -185
- pulumi_mongodbatlas/get_service_account_access_list_entries.py +0 -195
- pulumi_mongodbatlas/get_service_account_access_list_entry.py +0 -276
- pulumi_mongodbatlas/get_service_account_project_assignment.py +0 -176
- pulumi_mongodbatlas/get_service_account_project_assignments.py +0 -177
- pulumi_mongodbatlas/get_service_account_secret.py +0 -244
- pulumi_mongodbatlas/get_service_accounts.py +0 -109
- pulumi_mongodbatlas/project_service_account.py +0 -444
- pulumi_mongodbatlas/project_service_account_access_list_entry.py +0 -490
- pulumi_mongodbatlas/project_service_account_secret.py +0 -491
- pulumi_mongodbatlas/service_account.py +0 -444
- pulumi_mongodbatlas/service_account_access_list_entry.py +0 -490
- pulumi_mongodbatlas/service_account_project_assignment.py +0 -314
- pulumi_mongodbatlas/service_account_secret.py +0 -491
- {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/top_level.txt +0 -0
|
@@ -33,9 +33,9 @@ class MaintenanceWindowArgs:
|
|
|
33
33
|
:param pulumi.Input[_builtins.int] day_of_week: Day of the week when you would like the maintenance window to start as a 1-based integer: Su=1, M=2, T=3, W=4, T=5, F=6, Sa=7.
|
|
34
34
|
:param pulumi.Input[_builtins.int] hour_of_day: Hour of the day when you would like the maintenance window to start. This parameter uses the 24-hour clock, where midnight is 0, noon is 12. Uses the project's configured timezone.
|
|
35
35
|
:param pulumi.Input[_builtins.str] project_id: The unique identifier of the project for the Maintenance Window.
|
|
36
|
-
:param pulumi.Input[_builtins.bool] auto_defer:
|
|
37
|
-
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled:
|
|
38
|
-
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance
|
|
36
|
+
:param pulumi.Input[_builtins.bool] auto_defer: Defer any scheduled maintenance for the given project for one week.
|
|
37
|
+
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled: Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
38
|
+
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance for the given project for one week.
|
|
39
39
|
:param pulumi.Input['MaintenanceWindowProtectedHoursArgs'] protected_hours: Defines the time period during which there will be no standard updates to the clusters. See Protected Hours.
|
|
40
40
|
"""
|
|
41
41
|
pulumi.set(__self__, "day_of_week", day_of_week)
|
|
@@ -90,7 +90,7 @@ class MaintenanceWindowArgs:
|
|
|
90
90
|
@pulumi.getter(name="autoDefer")
|
|
91
91
|
def auto_defer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
92
92
|
"""
|
|
93
|
-
|
|
93
|
+
Defer any scheduled maintenance for the given project for one week.
|
|
94
94
|
"""
|
|
95
95
|
return pulumi.get(self, "auto_defer")
|
|
96
96
|
|
|
@@ -102,7 +102,7 @@ class MaintenanceWindowArgs:
|
|
|
102
102
|
@pulumi.getter(name="autoDeferOnceEnabled")
|
|
103
103
|
def auto_defer_once_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
104
104
|
"""
|
|
105
|
-
|
|
105
|
+
Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
106
106
|
"""
|
|
107
107
|
return pulumi.get(self, "auto_defer_once_enabled")
|
|
108
108
|
|
|
@@ -114,7 +114,7 @@ class MaintenanceWindowArgs:
|
|
|
114
114
|
@pulumi.getter
|
|
115
115
|
def defer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
116
116
|
"""
|
|
117
|
-
Defer the next scheduled maintenance
|
|
117
|
+
Defer the next scheduled maintenance for the given project for one week.
|
|
118
118
|
"""
|
|
119
119
|
return pulumi.get(self, "defer")
|
|
120
120
|
|
|
@@ -150,10 +150,10 @@ class _MaintenanceWindowState:
|
|
|
150
150
|
time_zone_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
151
151
|
"""
|
|
152
152
|
Input properties used for looking up and filtering MaintenanceWindow resources.
|
|
153
|
-
:param pulumi.Input[_builtins.bool] auto_defer:
|
|
154
|
-
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled:
|
|
153
|
+
:param pulumi.Input[_builtins.bool] auto_defer: Defer any scheduled maintenance for the given project for one week.
|
|
154
|
+
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled: Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
155
155
|
:param pulumi.Input[_builtins.int] day_of_week: Day of the week when you would like the maintenance window to start as a 1-based integer: Su=1, M=2, T=3, W=4, T=5, F=6, Sa=7.
|
|
156
|
-
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance
|
|
156
|
+
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance for the given project for one week.
|
|
157
157
|
:param pulumi.Input[_builtins.int] hour_of_day: Hour of the day when you would like the maintenance window to start. This parameter uses the 24-hour clock, where midnight is 0, noon is 12. Uses the project's configured timezone.
|
|
158
158
|
:param pulumi.Input[_builtins.int] number_of_deferrals: Number of times the current maintenance event for this project has been deferred, there can be a maximum of 2 deferrals.
|
|
159
159
|
:param pulumi.Input[_builtins.str] project_id: The unique identifier of the project for the Maintenance Window.
|
|
@@ -186,7 +186,7 @@ class _MaintenanceWindowState:
|
|
|
186
186
|
@pulumi.getter(name="autoDefer")
|
|
187
187
|
def auto_defer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
188
188
|
"""
|
|
189
|
-
|
|
189
|
+
Defer any scheduled maintenance for the given project for one week.
|
|
190
190
|
"""
|
|
191
191
|
return pulumi.get(self, "auto_defer")
|
|
192
192
|
|
|
@@ -198,7 +198,7 @@ class _MaintenanceWindowState:
|
|
|
198
198
|
@pulumi.getter(name="autoDeferOnceEnabled")
|
|
199
199
|
def auto_defer_once_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
200
200
|
"""
|
|
201
|
-
|
|
201
|
+
Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
202
202
|
"""
|
|
203
203
|
return pulumi.get(self, "auto_defer_once_enabled")
|
|
204
204
|
|
|
@@ -222,7 +222,7 @@ class _MaintenanceWindowState:
|
|
|
222
222
|
@pulumi.getter
|
|
223
223
|
def defer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
224
224
|
"""
|
|
225
|
-
Defer the next scheduled maintenance
|
|
225
|
+
Defer the next scheduled maintenance for the given project for one week.
|
|
226
226
|
"""
|
|
227
227
|
return pulumi.get(self, "defer")
|
|
228
228
|
|
|
@@ -373,10 +373,10 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
|
373
373
|
|
|
374
374
|
:param str resource_name: The name of the resource.
|
|
375
375
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
376
|
-
:param pulumi.Input[_builtins.bool] auto_defer:
|
|
377
|
-
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled:
|
|
376
|
+
:param pulumi.Input[_builtins.bool] auto_defer: Defer any scheduled maintenance for the given project for one week.
|
|
377
|
+
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled: Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
378
378
|
:param pulumi.Input[_builtins.int] day_of_week: Day of the week when you would like the maintenance window to start as a 1-based integer: Su=1, M=2, T=3, W=4, T=5, F=6, Sa=7.
|
|
379
|
-
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance
|
|
379
|
+
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance for the given project for one week.
|
|
380
380
|
:param pulumi.Input[_builtins.int] hour_of_day: Hour of the day when you would like the maintenance window to start. This parameter uses the 24-hour clock, where midnight is 0, noon is 12. Uses the project's configured timezone.
|
|
381
381
|
:param pulumi.Input[_builtins.str] project_id: The unique identifier of the project for the Maintenance Window.
|
|
382
382
|
:param pulumi.Input[Union['MaintenanceWindowProtectedHoursArgs', 'MaintenanceWindowProtectedHoursArgsDict']] protected_hours: Defines the time period during which there will be no standard updates to the clusters. See Protected Hours.
|
|
@@ -515,10 +515,10 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
|
515
515
|
:param str resource_name: The unique name of the resulting resource.
|
|
516
516
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
517
517
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
518
|
-
:param pulumi.Input[_builtins.bool] auto_defer:
|
|
519
|
-
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled:
|
|
518
|
+
:param pulumi.Input[_builtins.bool] auto_defer: Defer any scheduled maintenance for the given project for one week.
|
|
519
|
+
:param pulumi.Input[_builtins.bool] auto_defer_once_enabled: Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
520
520
|
:param pulumi.Input[_builtins.int] day_of_week: Day of the week when you would like the maintenance window to start as a 1-based integer: Su=1, M=2, T=3, W=4, T=5, F=6, Sa=7.
|
|
521
|
-
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance
|
|
521
|
+
:param pulumi.Input[_builtins.bool] defer: Defer the next scheduled maintenance for the given project for one week.
|
|
522
522
|
:param pulumi.Input[_builtins.int] hour_of_day: Hour of the day when you would like the maintenance window to start. This parameter uses the 24-hour clock, where midnight is 0, noon is 12. Uses the project's configured timezone.
|
|
523
523
|
:param pulumi.Input[_builtins.int] number_of_deferrals: Number of times the current maintenance event for this project has been deferred, there can be a maximum of 2 deferrals.
|
|
524
524
|
:param pulumi.Input[_builtins.str] project_id: The unique identifier of the project for the Maintenance Window.
|
|
@@ -546,7 +546,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
|
546
546
|
@pulumi.getter(name="autoDefer")
|
|
547
547
|
def auto_defer(self) -> pulumi.Output[_builtins.bool]:
|
|
548
548
|
"""
|
|
549
|
-
|
|
549
|
+
Defer any scheduled maintenance for the given project for one week.
|
|
550
550
|
"""
|
|
551
551
|
return pulumi.get(self, "auto_defer")
|
|
552
552
|
|
|
@@ -554,7 +554,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
|
554
554
|
@pulumi.getter(name="autoDeferOnceEnabled")
|
|
555
555
|
def auto_defer_once_enabled(self) -> pulumi.Output[_builtins.bool]:
|
|
556
556
|
"""
|
|
557
|
-
|
|
557
|
+
Flag that indicates whether you want to defer all maintenance windows one week they would be triggered.
|
|
558
558
|
"""
|
|
559
559
|
return pulumi.get(self, "auto_defer_once_enabled")
|
|
560
560
|
|
|
@@ -570,7 +570,7 @@ class MaintenanceWindow(pulumi.CustomResource):
|
|
|
570
570
|
@pulumi.getter
|
|
571
571
|
def defer(self) -> pulumi.Output[_builtins.bool]:
|
|
572
572
|
"""
|
|
573
|
-
Defer the next scheduled maintenance
|
|
573
|
+
Defer the next scheduled maintenance for the given project for one week.
|
|
574
574
|
"""
|
|
575
575
|
return pulumi.get(self, "defer")
|
|
576
576
|
|