pulumi-mongodbatlas 4.0.0__py3-none-any.whl → 4.1.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.
- pulumi_mongodbatlas/_inputs.py +72 -52
- pulumi_mongodbatlas/advanced_cluster.py +7 -7
- pulumi_mongodbatlas/get_search_index.py +15 -1
- pulumi_mongodbatlas/get_stream_processor.py +16 -3
- pulumi_mongodbatlas/get_stream_processors.py +4 -2
- pulumi_mongodbatlas/outputs.py +69 -35
- pulumi_mongodbatlas/project_ip_access_list.py +26 -13
- pulumi_mongodbatlas/pulumi-plugin.json +1 -1
- pulumi_mongodbatlas/search_index.py +47 -0
- pulumi_mongodbatlas/stream_processor.py +51 -2
- {pulumi_mongodbatlas-4.0.0.dist-info → pulumi_mongodbatlas-4.1.0.dist-info}/METADATA +1 -1
- {pulumi_mongodbatlas-4.0.0.dist-info → pulumi_mongodbatlas-4.1.0.dist-info}/RECORD +14 -14
- {pulumi_mongodbatlas-4.0.0.dist-info → pulumi_mongodbatlas-4.1.0.dist-info}/WHEEL +0 -0
- {pulumi_mongodbatlas-4.0.0.dist-info → pulumi_mongodbatlas-4.1.0.dist-info}/top_level.txt +0 -0
|
@@ -27,7 +27,7 @@ class GetStreamProcessorResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getStreamProcessor.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, id=None, instance_name=None, options=None, pipeline=None, processor_name=None, project_id=None, state=None, stats=None, workspace_name=None):
|
|
30
|
+
def __init__(__self__, id=None, instance_name=None, options=None, pipeline=None, processor_name=None, project_id=None, state=None, stats=None, tier=None, workspace_name=None):
|
|
31
31
|
if id and not isinstance(id, str):
|
|
32
32
|
raise TypeError("Expected argument 'id' to be a str")
|
|
33
33
|
pulumi.set(__self__, "id", id)
|
|
@@ -52,6 +52,9 @@ class GetStreamProcessorResult:
|
|
|
52
52
|
if stats and not isinstance(stats, str):
|
|
53
53
|
raise TypeError("Expected argument 'stats' to be a str")
|
|
54
54
|
pulumi.set(__self__, "stats", stats)
|
|
55
|
+
if tier and not isinstance(tier, str):
|
|
56
|
+
raise TypeError("Expected argument 'tier' to be a str")
|
|
57
|
+
pulumi.set(__self__, "tier", tier)
|
|
55
58
|
if workspace_name and not isinstance(workspace_name, str):
|
|
56
59
|
raise TypeError("Expected argument 'workspace_name' to be a str")
|
|
57
60
|
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
@@ -103,6 +106,11 @@ class GetStreamProcessorResult:
|
|
|
103
106
|
def stats(self) -> _builtins.str:
|
|
104
107
|
return pulumi.get(self, "stats")
|
|
105
108
|
|
|
109
|
+
@_builtins.property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def tier(self) -> _builtins.str:
|
|
112
|
+
return pulumi.get(self, "tier")
|
|
113
|
+
|
|
106
114
|
@_builtins.property
|
|
107
115
|
@pulumi.getter(name="workspaceName")
|
|
108
116
|
def workspace_name(self) -> Optional[_builtins.str]:
|
|
@@ -123,6 +131,7 @@ class AwaitableGetStreamProcessorResult(GetStreamProcessorResult):
|
|
|
123
131
|
project_id=self.project_id,
|
|
124
132
|
state=self.state,
|
|
125
133
|
stats=self.stats,
|
|
134
|
+
tier=self.tier,
|
|
126
135
|
workspace_name=self.workspace_name)
|
|
127
136
|
|
|
128
137
|
|
|
@@ -202,7 +211,8 @@ def get_stream_processor(instance_name: Optional[_builtins.str] = None,
|
|
|
202
211
|
},
|
|
203
212
|
},
|
|
204
213
|
]),
|
|
205
|
-
state="STARTED"
|
|
214
|
+
state="STARTED",
|
|
215
|
+
tier="SP30")
|
|
206
216
|
stream_processor_cluster_to_kafka_example = mongodbatlas.StreamProcessor("stream-processor-cluster-to-kafka-example",
|
|
207
217
|
project_id=project_id,
|
|
208
218
|
workspace_name=example.instance_name,
|
|
@@ -285,6 +295,7 @@ def get_stream_processor(instance_name: Optional[_builtins.str] = None,
|
|
|
285
295
|
project_id=pulumi.get(__ret__, 'project_id'),
|
|
286
296
|
state=pulumi.get(__ret__, 'state'),
|
|
287
297
|
stats=pulumi.get(__ret__, 'stats'),
|
|
298
|
+
tier=pulumi.get(__ret__, 'tier'),
|
|
288
299
|
workspace_name=pulumi.get(__ret__, 'workspace_name'))
|
|
289
300
|
def get_stream_processor_output(instance_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
290
301
|
processor_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -362,7 +373,8 @@ def get_stream_processor_output(instance_name: Optional[pulumi.Input[Optional[_b
|
|
|
362
373
|
},
|
|
363
374
|
},
|
|
364
375
|
]),
|
|
365
|
-
state="STARTED"
|
|
376
|
+
state="STARTED",
|
|
377
|
+
tier="SP30")
|
|
366
378
|
stream_processor_cluster_to_kafka_example = mongodbatlas.StreamProcessor("stream-processor-cluster-to-kafka-example",
|
|
367
379
|
project_id=project_id,
|
|
368
380
|
workspace_name=example.instance_name,
|
|
@@ -444,4 +456,5 @@ def get_stream_processor_output(instance_name: Optional[pulumi.Input[Optional[_b
|
|
|
444
456
|
project_id=pulumi.get(__response__, 'project_id'),
|
|
445
457
|
state=pulumi.get(__response__, 'state'),
|
|
446
458
|
stats=pulumi.get(__response__, 'stats'),
|
|
459
|
+
tier=pulumi.get(__response__, 'tier'),
|
|
447
460
|
workspace_name=pulumi.get(__response__, 'workspace_name')))
|
|
@@ -165,7 +165,8 @@ def get_stream_processors(instance_name: Optional[_builtins.str] = None,
|
|
|
165
165
|
},
|
|
166
166
|
},
|
|
167
167
|
]),
|
|
168
|
-
state="STARTED"
|
|
168
|
+
state="STARTED",
|
|
169
|
+
tier="SP30")
|
|
169
170
|
stream_processor_cluster_to_kafka_example = mongodbatlas.StreamProcessor("stream-processor-cluster-to-kafka-example",
|
|
170
171
|
project_id=project_id,
|
|
171
172
|
workspace_name=example.instance_name,
|
|
@@ -318,7 +319,8 @@ def get_stream_processors_output(instance_name: Optional[pulumi.Input[Optional[_
|
|
|
318
319
|
},
|
|
319
320
|
},
|
|
320
321
|
]),
|
|
321
|
-
state="STARTED"
|
|
322
|
+
state="STARTED",
|
|
323
|
+
tier="SP30")
|
|
322
324
|
stream_processor_cluster_to_kafka_example = mongodbatlas.StreamProcessor("stream-processor-cluster-to-kafka-example",
|
|
323
325
|
project_id=project_id,
|
|
324
326
|
workspace_name=example.instance_name,
|
pulumi_mongodbatlas/outputs.py
CHANGED
|
@@ -1766,9 +1766,9 @@ class AdvancedClusterTimeouts(dict):
|
|
|
1766
1766
|
delete: Optional[_builtins.str] = None,
|
|
1767
1767
|
update: Optional[_builtins.str] = None):
|
|
1768
1768
|
"""
|
|
1769
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
1770
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
1771
|
-
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
1769
|
+
:param _builtins.str create: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
1770
|
+
:param _builtins.str delete: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
1771
|
+
:param _builtins.str update: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
1772
1772
|
"""
|
|
1773
1773
|
if create is not None:
|
|
1774
1774
|
pulumi.set(__self__, "create", create)
|
|
@@ -1781,7 +1781,7 @@ class AdvancedClusterTimeouts(dict):
|
|
|
1781
1781
|
@pulumi.getter
|
|
1782
1782
|
def create(self) -> Optional[_builtins.str]:
|
|
1783
1783
|
"""
|
|
1784
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
1784
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
1785
1785
|
"""
|
|
1786
1786
|
return pulumi.get(self, "create")
|
|
1787
1787
|
|
|
@@ -1789,7 +1789,7 @@ class AdvancedClusterTimeouts(dict):
|
|
|
1789
1789
|
@pulumi.getter
|
|
1790
1790
|
def delete(self) -> Optional[_builtins.str]:
|
|
1791
1791
|
"""
|
|
1792
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
1792
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
1793
1793
|
"""
|
|
1794
1794
|
return pulumi.get(self, "delete")
|
|
1795
1795
|
|
|
@@ -1797,7 +1797,7 @@ class AdvancedClusterTimeouts(dict):
|
|
|
1797
1797
|
@pulumi.getter
|
|
1798
1798
|
def update(self) -> Optional[_builtins.str]:
|
|
1799
1799
|
"""
|
|
1800
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
1800
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
1801
1801
|
"""
|
|
1802
1802
|
return pulumi.get(self, "update")
|
|
1803
1803
|
|
|
@@ -6049,8 +6049,8 @@ class EncryptionAtRestPrivateEndpointTimeouts(dict):
|
|
|
6049
6049
|
create: Optional[_builtins.str] = None,
|
|
6050
6050
|
delete: Optional[_builtins.str] = None):
|
|
6051
6051
|
"""
|
|
6052
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
6053
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
6052
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
6053
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
6054
6054
|
"""
|
|
6055
6055
|
if create is not None:
|
|
6056
6056
|
pulumi.set(__self__, "create", create)
|
|
@@ -6061,7 +6061,7 @@ class EncryptionAtRestPrivateEndpointTimeouts(dict):
|
|
|
6061
6061
|
@pulumi.getter
|
|
6062
6062
|
def create(self) -> Optional[_builtins.str]:
|
|
6063
6063
|
"""
|
|
6064
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
6064
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
6065
6065
|
"""
|
|
6066
6066
|
return pulumi.get(self, "create")
|
|
6067
6067
|
|
|
@@ -6069,7 +6069,7 @@ class EncryptionAtRestPrivateEndpointTimeouts(dict):
|
|
|
6069
6069
|
@pulumi.getter
|
|
6070
6070
|
def delete(self) -> Optional[_builtins.str]:
|
|
6071
6071
|
"""
|
|
6072
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
6072
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
6073
6073
|
"""
|
|
6074
6074
|
return pulumi.get(self, "delete")
|
|
6075
6075
|
|
|
@@ -7186,9 +7186,9 @@ class FlexClusterTimeouts(dict):
|
|
|
7186
7186
|
delete: Optional[_builtins.str] = None,
|
|
7187
7187
|
update: Optional[_builtins.str] = None):
|
|
7188
7188
|
"""
|
|
7189
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7190
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7191
|
-
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7189
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
7190
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
7191
|
+
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
7192
7192
|
"""
|
|
7193
7193
|
if create is not None:
|
|
7194
7194
|
pulumi.set(__self__, "create", create)
|
|
@@ -7201,7 +7201,7 @@ class FlexClusterTimeouts(dict):
|
|
|
7201
7201
|
@pulumi.getter
|
|
7202
7202
|
def create(self) -> Optional[_builtins.str]:
|
|
7203
7203
|
"""
|
|
7204
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7204
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
7205
7205
|
"""
|
|
7206
7206
|
return pulumi.get(self, "create")
|
|
7207
7207
|
|
|
@@ -7209,7 +7209,7 @@ class FlexClusterTimeouts(dict):
|
|
|
7209
7209
|
@pulumi.getter
|
|
7210
7210
|
def delete(self) -> Optional[_builtins.str]:
|
|
7211
7211
|
"""
|
|
7212
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7212
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
7213
7213
|
"""
|
|
7214
7214
|
return pulumi.get(self, "delete")
|
|
7215
7215
|
|
|
@@ -7217,7 +7217,7 @@ class FlexClusterTimeouts(dict):
|
|
|
7217
7217
|
@pulumi.getter
|
|
7218
7218
|
def update(self) -> Optional[_builtins.str]:
|
|
7219
7219
|
"""
|
|
7220
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7220
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
7221
7221
|
"""
|
|
7222
7222
|
return pulumi.get(self, "update")
|
|
7223
7223
|
|
|
@@ -7970,21 +7970,25 @@ class ProjectApiKeyProjectAssignment(dict):
|
|
|
7970
7970
|
class ProjectIpAccessListTimeouts(dict):
|
|
7971
7971
|
def __init__(__self__, *,
|
|
7972
7972
|
delete: Optional[_builtins.str] = None,
|
|
7973
|
-
read: Optional[_builtins.str] = None
|
|
7973
|
+
read: Optional[_builtins.str] = None,
|
|
7974
|
+
update: Optional[_builtins.str] = None):
|
|
7974
7975
|
"""
|
|
7975
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7976
|
-
:param _builtins.str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7976
|
+
:param _builtins.str delete: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `45m`.
|
|
7977
|
+
:param _builtins.str read: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `2m`.
|
|
7978
|
+
:param _builtins.str update: (String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `45m`.
|
|
7977
7979
|
"""
|
|
7978
7980
|
if delete is not None:
|
|
7979
7981
|
pulumi.set(__self__, "delete", delete)
|
|
7980
7982
|
if read is not None:
|
|
7981
7983
|
pulumi.set(__self__, "read", read)
|
|
7984
|
+
if update is not None:
|
|
7985
|
+
pulumi.set(__self__, "update", update)
|
|
7982
7986
|
|
|
7983
7987
|
@_builtins.property
|
|
7984
7988
|
@pulumi.getter
|
|
7985
7989
|
def delete(self) -> Optional[_builtins.str]:
|
|
7986
7990
|
"""
|
|
7987
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7991
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `45m`.
|
|
7988
7992
|
"""
|
|
7989
7993
|
return pulumi.get(self, "delete")
|
|
7990
7994
|
|
|
@@ -7992,10 +7996,18 @@ class ProjectIpAccessListTimeouts(dict):
|
|
|
7992
7996
|
@pulumi.getter
|
|
7993
7997
|
def read(self) -> Optional[_builtins.str]:
|
|
7994
7998
|
"""
|
|
7995
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7999
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `2m`.
|
|
7996
8000
|
"""
|
|
7997
8001
|
return pulumi.get(self, "read")
|
|
7998
8002
|
|
|
8003
|
+
@_builtins.property
|
|
8004
|
+
@pulumi.getter
|
|
8005
|
+
def update(self) -> Optional[_builtins.str]:
|
|
8006
|
+
"""
|
|
8007
|
+
(String) A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `45m`.
|
|
8008
|
+
"""
|
|
8009
|
+
return pulumi.get(self, "update")
|
|
8010
|
+
|
|
7999
8011
|
|
|
8000
8012
|
@pulumi.output_type
|
|
8001
8013
|
class ProjectIpAddresses(dict):
|
|
@@ -8202,9 +8214,9 @@ class PushBasedLogExportTimeouts(dict):
|
|
|
8202
8214
|
delete: Optional[_builtins.str] = None,
|
|
8203
8215
|
update: Optional[_builtins.str] = None):
|
|
8204
8216
|
"""
|
|
8205
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8206
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
8207
|
-
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8217
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
|
|
8218
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `15m`.
|
|
8219
|
+
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
|
|
8208
8220
|
"""
|
|
8209
8221
|
if create is not None:
|
|
8210
8222
|
pulumi.set(__self__, "create", create)
|
|
@@ -8217,7 +8229,7 @@ class PushBasedLogExportTimeouts(dict):
|
|
|
8217
8229
|
@pulumi.getter
|
|
8218
8230
|
def create(self) -> Optional[_builtins.str]:
|
|
8219
8231
|
"""
|
|
8220
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8232
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
|
|
8221
8233
|
"""
|
|
8222
8234
|
return pulumi.get(self, "create")
|
|
8223
8235
|
|
|
@@ -8225,7 +8237,7 @@ class PushBasedLogExportTimeouts(dict):
|
|
|
8225
8237
|
@pulumi.getter
|
|
8226
8238
|
def delete(self) -> Optional[_builtins.str]:
|
|
8227
8239
|
"""
|
|
8228
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
8240
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `15m`.
|
|
8229
8241
|
"""
|
|
8230
8242
|
return pulumi.get(self, "delete")
|
|
8231
8243
|
|
|
@@ -8233,7 +8245,7 @@ class PushBasedLogExportTimeouts(dict):
|
|
|
8233
8245
|
@pulumi.getter
|
|
8234
8246
|
def update(self) -> Optional[_builtins.str]:
|
|
8235
8247
|
"""
|
|
8236
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8248
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `15m`.
|
|
8237
8249
|
"""
|
|
8238
8250
|
return pulumi.get(self, "update")
|
|
8239
8251
|
|
|
@@ -8385,9 +8397,9 @@ class SearchDeploymentTimeouts(dict):
|
|
|
8385
8397
|
delete: Optional[_builtins.str] = None,
|
|
8386
8398
|
update: Optional[_builtins.str] = None):
|
|
8387
8399
|
"""
|
|
8388
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8389
|
-
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
8390
|
-
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8400
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
8401
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
8402
|
+
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
8391
8403
|
"""
|
|
8392
8404
|
if create is not None:
|
|
8393
8405
|
pulumi.set(__self__, "create", create)
|
|
@@ -8400,7 +8412,7 @@ class SearchDeploymentTimeouts(dict):
|
|
|
8400
8412
|
@pulumi.getter
|
|
8401
8413
|
def create(self) -> Optional[_builtins.str]:
|
|
8402
8414
|
"""
|
|
8403
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8415
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
8404
8416
|
"""
|
|
8405
8417
|
return pulumi.get(self, "create")
|
|
8406
8418
|
|
|
@@ -8408,7 +8420,7 @@ class SearchDeploymentTimeouts(dict):
|
|
|
8408
8420
|
@pulumi.getter
|
|
8409
8421
|
def delete(self) -> Optional[_builtins.str]:
|
|
8410
8422
|
"""
|
|
8411
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
8423
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. Default: `3h`.
|
|
8412
8424
|
"""
|
|
8413
8425
|
return pulumi.get(self, "delete")
|
|
8414
8426
|
|
|
@@ -8416,7 +8428,7 @@ class SearchDeploymentTimeouts(dict):
|
|
|
8416
8428
|
@pulumi.getter
|
|
8417
8429
|
def update(self) -> Optional[_builtins.str]:
|
|
8418
8430
|
"""
|
|
8419
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8431
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
8420
8432
|
"""
|
|
8421
8433
|
return pulumi.get(self, "update")
|
|
8422
8434
|
|
|
@@ -9051,7 +9063,7 @@ class StreamProcessorTimeouts(dict):
|
|
|
9051
9063
|
def __init__(__self__, *,
|
|
9052
9064
|
create: Optional[_builtins.str] = None):
|
|
9053
9065
|
"""
|
|
9054
|
-
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9066
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
9055
9067
|
"""
|
|
9056
9068
|
if create is not None:
|
|
9057
9069
|
pulumi.set(__self__, "create", create)
|
|
@@ -9060,7 +9072,7 @@ class StreamProcessorTimeouts(dict):
|
|
|
9060
9072
|
@pulumi.getter
|
|
9061
9073
|
def create(self) -> Optional[_builtins.str]:
|
|
9062
9074
|
"""
|
|
9063
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9075
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), and "h" (hours). Default: `3h`.
|
|
9064
9076
|
"""
|
|
9065
9077
|
return pulumi.get(self, "create")
|
|
9066
9078
|
|
|
@@ -24628,6 +24640,7 @@ class GetSearchIndexesResultResult(dict):
|
|
|
24628
24640
|
mappings_dynamic_config: _builtins.str,
|
|
24629
24641
|
mappings_fields: _builtins.str,
|
|
24630
24642
|
name: _builtins.str,
|
|
24643
|
+
num_partitions: _builtins.int,
|
|
24631
24644
|
project_id: _builtins.str,
|
|
24632
24645
|
search_analyzer: _builtins.str,
|
|
24633
24646
|
status: _builtins.str,
|
|
@@ -24646,6 +24659,7 @@ class GetSearchIndexesResultResult(dict):
|
|
|
24646
24659
|
:param _builtins.str mappings_dynamic_config: JSON object for `mappings.dynamic` when Atlas returns an object (Please see the documentation for [dynamic and static mappings](https://www.mongodb.com/docs/atlas/atlas-search/index-definitions/#field-mapping-examples)). Mutually exclusive with `mappings_dynamic`.
|
|
24647
24660
|
:param _builtins.str mappings_fields: Object containing one or more field specifications.
|
|
24648
24661
|
:param _builtins.str name: Type set name.
|
|
24662
|
+
:param _builtins.int num_partitions: Number of index partitions.
|
|
24649
24663
|
:param _builtins.str project_id: Unique identifier for the [project](https://docs.atlas.mongodb.com/organizations-projects/#std-label-projects) that contains the specified cluster.
|
|
24650
24664
|
:param _builtins.str search_analyzer: [Analyzer](https://docs.atlas.mongodb.com/reference/atlas-search/analyzers/#std-label-analyzers-ref) to use when searching the index.
|
|
24651
24665
|
:param _builtins.str status: Current status of the index.
|
|
@@ -24667,6 +24681,7 @@ class GetSearchIndexesResultResult(dict):
|
|
|
24667
24681
|
pulumi.set(__self__, "mappings_dynamic_config", mappings_dynamic_config)
|
|
24668
24682
|
pulumi.set(__self__, "mappings_fields", mappings_fields)
|
|
24669
24683
|
pulumi.set(__self__, "name", name)
|
|
24684
|
+
pulumi.set(__self__, "num_partitions", num_partitions)
|
|
24670
24685
|
pulumi.set(__self__, "project_id", project_id)
|
|
24671
24686
|
pulumi.set(__self__, "search_analyzer", search_analyzer)
|
|
24672
24687
|
pulumi.set(__self__, "status", status)
|
|
@@ -24760,6 +24775,14 @@ class GetSearchIndexesResultResult(dict):
|
|
|
24760
24775
|
"""
|
|
24761
24776
|
return pulumi.get(self, "name")
|
|
24762
24777
|
|
|
24778
|
+
@_builtins.property
|
|
24779
|
+
@pulumi.getter(name="numPartitions")
|
|
24780
|
+
def num_partitions(self) -> _builtins.int:
|
|
24781
|
+
"""
|
|
24782
|
+
Number of index partitions.
|
|
24783
|
+
"""
|
|
24784
|
+
return pulumi.get(self, "num_partitions")
|
|
24785
|
+
|
|
24763
24786
|
@_builtins.property
|
|
24764
24787
|
@pulumi.getter(name="projectId")
|
|
24765
24788
|
def project_id(self) -> _builtins.str:
|
|
@@ -26374,6 +26397,7 @@ class GetStreamProcessorsResultResult(dict):
|
|
|
26374
26397
|
project_id: _builtins.str,
|
|
26375
26398
|
state: _builtins.str,
|
|
26376
26399
|
stats: _builtins.str,
|
|
26400
|
+
tier: _builtins.str,
|
|
26377
26401
|
workspace_name: _builtins.str):
|
|
26378
26402
|
"""
|
|
26379
26403
|
:param _builtins.str id: Unique 24-hexadecimal character string that identifies the stream processor.
|
|
@@ -26386,6 +26410,7 @@ class GetStreamProcessorsResultResult(dict):
|
|
|
26386
26410
|
|
|
26387
26411
|
**NOTE** When a Stream Processor is updated without specifying the state, it is stopped and then restored to previous state upon update completion.
|
|
26388
26412
|
:param _builtins.str stats: The stats associated with the stream processor. Refer to the [MongoDB Atlas Docs](https://www.mongodb.com/docs/atlas/atlas-stream-processing/manage-stream-processor/#view-statistics-of-a-stream-processor) for more information.
|
|
26413
|
+
:param _builtins.str tier: Selected tier to start a stream processor on rather than defaulting to the workspace setting. Configures Memory / VCPU allowances. Valid options are SP2, SP5, SP10, SP30, and SP50.
|
|
26389
26414
|
:param _builtins.str workspace_name: Label that identifies the stream processing workspace.
|
|
26390
26415
|
"""
|
|
26391
26416
|
pulumi.set(__self__, "id", id)
|
|
@@ -26396,6 +26421,7 @@ class GetStreamProcessorsResultResult(dict):
|
|
|
26396
26421
|
pulumi.set(__self__, "project_id", project_id)
|
|
26397
26422
|
pulumi.set(__self__, "state", state)
|
|
26398
26423
|
pulumi.set(__self__, "stats", stats)
|
|
26424
|
+
pulumi.set(__self__, "tier", tier)
|
|
26399
26425
|
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
26400
26426
|
|
|
26401
26427
|
@_builtins.property
|
|
@@ -26465,6 +26491,14 @@ class GetStreamProcessorsResultResult(dict):
|
|
|
26465
26491
|
"""
|
|
26466
26492
|
return pulumi.get(self, "stats")
|
|
26467
26493
|
|
|
26494
|
+
@_builtins.property
|
|
26495
|
+
@pulumi.getter
|
|
26496
|
+
def tier(self) -> _builtins.str:
|
|
26497
|
+
"""
|
|
26498
|
+
Selected tier to start a stream processor on rather than defaulting to the workspace setting. Configures Memory / VCPU allowances. Valid options are SP2, SP5, SP10, SP30, and SP50.
|
|
26499
|
+
"""
|
|
26500
|
+
return pulumi.get(self, "tier")
|
|
26501
|
+
|
|
26468
26502
|
@_builtins.property
|
|
26469
26503
|
@pulumi.getter(name="workspaceName")
|
|
26470
26504
|
def workspace_name(self) -> _builtins.str:
|
|
@@ -33,9 +33,10 @@ class ProjectIpAccessListArgs:
|
|
|
33
33
|
:param pulumi.Input[_builtins.str] aws_security_group: Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
34
34
|
:param pulumi.Input[_builtins.str] cidr_block: Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
35
35
|
:param pulumi.Input[_builtins.str] comment: Comment to add to the access list entry.
|
|
36
|
+
:param pulumi.Input[_builtins.str] ip_address: Single IP address to be added to the access list. Mutually exclusive with `awsSecurityGroup` and `cidrBlock`.
|
|
37
|
+
:param pulumi.Input['ProjectIpAccessListTimeoutsArgs'] timeouts: )
|
|
36
38
|
|
|
37
39
|
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
38
|
-
:param pulumi.Input[_builtins.str] ip_address: Single IP address to be added to the access list. Mutually exclusive with `awsSecurityGroup` and `cidrBlock`.
|
|
39
40
|
"""
|
|
40
41
|
pulumi.set(__self__, "project_id", project_id)
|
|
41
42
|
if aws_security_group is not None:
|
|
@@ -90,8 +91,6 @@ class ProjectIpAccessListArgs:
|
|
|
90
91
|
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
91
92
|
"""
|
|
92
93
|
Comment to add to the access list entry.
|
|
93
|
-
|
|
94
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
95
94
|
"""
|
|
96
95
|
return pulumi.get(self, "comment")
|
|
97
96
|
|
|
@@ -114,6 +113,11 @@ class ProjectIpAccessListArgs:
|
|
|
114
113
|
@_builtins.property
|
|
115
114
|
@pulumi.getter
|
|
116
115
|
def timeouts(self) -> Optional[pulumi.Input['ProjectIpAccessListTimeoutsArgs']]:
|
|
116
|
+
"""
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
120
|
+
"""
|
|
117
121
|
return pulumi.get(self, "timeouts")
|
|
118
122
|
|
|
119
123
|
@timeouts.setter
|
|
@@ -135,10 +139,11 @@ class _ProjectIpAccessListState:
|
|
|
135
139
|
:param pulumi.Input[_builtins.str] aws_security_group: Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
136
140
|
:param pulumi.Input[_builtins.str] cidr_block: Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
137
141
|
:param pulumi.Input[_builtins.str] comment: Comment to add to the access list entry.
|
|
138
|
-
|
|
139
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
140
142
|
:param pulumi.Input[_builtins.str] ip_address: Single IP address to be added to the access list. Mutually exclusive with `awsSecurityGroup` and `cidrBlock`.
|
|
141
143
|
:param pulumi.Input[_builtins.str] project_id: Unique identifier for the project to which you want to add one or more access list entries.
|
|
144
|
+
:param pulumi.Input['ProjectIpAccessListTimeoutsArgs'] timeouts: )
|
|
145
|
+
|
|
146
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
142
147
|
"""
|
|
143
148
|
if aws_security_group is not None:
|
|
144
149
|
pulumi.set(__self__, "aws_security_group", aws_security_group)
|
|
@@ -182,8 +187,6 @@ class _ProjectIpAccessListState:
|
|
|
182
187
|
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
183
188
|
"""
|
|
184
189
|
Comment to add to the access list entry.
|
|
185
|
-
|
|
186
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
187
190
|
"""
|
|
188
191
|
return pulumi.get(self, "comment")
|
|
189
192
|
|
|
@@ -218,6 +221,11 @@ class _ProjectIpAccessListState:
|
|
|
218
221
|
@_builtins.property
|
|
219
222
|
@pulumi.getter
|
|
220
223
|
def timeouts(self) -> Optional[pulumi.Input['ProjectIpAccessListTimeoutsArgs']]:
|
|
224
|
+
"""
|
|
225
|
+
)
|
|
226
|
+
|
|
227
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
228
|
+
"""
|
|
221
229
|
return pulumi.get(self, "timeouts")
|
|
222
230
|
|
|
223
231
|
@timeouts.setter
|
|
@@ -316,10 +324,11 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
316
324
|
:param pulumi.Input[_builtins.str] aws_security_group: Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
317
325
|
:param pulumi.Input[_builtins.str] cidr_block: Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
318
326
|
:param pulumi.Input[_builtins.str] comment: Comment to add to the access list entry.
|
|
319
|
-
|
|
320
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
321
327
|
:param pulumi.Input[_builtins.str] ip_address: Single IP address to be added to the access list. Mutually exclusive with `awsSecurityGroup` and `cidrBlock`.
|
|
322
328
|
:param pulumi.Input[_builtins.str] project_id: Unique identifier for the project to which you want to add one or more access list entries.
|
|
329
|
+
:param pulumi.Input[Union['ProjectIpAccessListTimeoutsArgs', 'ProjectIpAccessListTimeoutsArgsDict']] timeouts: )
|
|
330
|
+
|
|
331
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
323
332
|
"""
|
|
324
333
|
...
|
|
325
334
|
@overload
|
|
@@ -464,10 +473,11 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
464
473
|
:param pulumi.Input[_builtins.str] aws_security_group: Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
465
474
|
:param pulumi.Input[_builtins.str] cidr_block: Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one `awsSecurityGroup`, one `cidrBlock`, or one `ipAddress`.
|
|
466
475
|
:param pulumi.Input[_builtins.str] comment: Comment to add to the access list entry.
|
|
467
|
-
|
|
468
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
469
476
|
:param pulumi.Input[_builtins.str] ip_address: Single IP address to be added to the access list. Mutually exclusive with `awsSecurityGroup` and `cidrBlock`.
|
|
470
477
|
:param pulumi.Input[_builtins.str] project_id: Unique identifier for the project to which you want to add one or more access list entries.
|
|
478
|
+
:param pulumi.Input[Union['ProjectIpAccessListTimeoutsArgs', 'ProjectIpAccessListTimeoutsArgsDict']] timeouts: )
|
|
479
|
+
|
|
480
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
471
481
|
"""
|
|
472
482
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
473
483
|
|
|
@@ -502,8 +512,6 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
502
512
|
def comment(self) -> pulumi.Output[_builtins.str]:
|
|
503
513
|
"""
|
|
504
514
|
Comment to add to the access list entry.
|
|
505
|
-
|
|
506
|
-
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
507
515
|
"""
|
|
508
516
|
return pulumi.get(self, "comment")
|
|
509
517
|
|
|
@@ -526,5 +534,10 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
526
534
|
@_builtins.property
|
|
527
535
|
@pulumi.getter
|
|
528
536
|
def timeouts(self) -> pulumi.Output[Optional['outputs.ProjectIpAccessListTimeouts']]:
|
|
537
|
+
"""
|
|
538
|
+
)
|
|
539
|
+
|
|
540
|
+
> **NOTE:** One of the following attributes must set: `aws_security_group`, `cidr_block` or `ip_address`.
|
|
541
|
+
"""
|
|
529
542
|
return pulumi.get(self, "timeouts")
|
|
530
543
|
|