pulumi-oci 3.6.0a1757045455__py3-none-any.whl → 3.7.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_oci/database/get_db_system_storage_performances.py +26 -2
- pulumi_oci/email/_inputs.py +342 -0
- pulumi_oci/email/email_domain.py +26 -4
- pulumi_oci/email/email_return_path.py +34 -4
- pulumi_oci/email/get_email_domain.py +17 -2
- pulumi_oci/email/get_email_domains.py +1 -1
- pulumi_oci/email/get_email_return_path.py +17 -2
- pulumi_oci/email/get_email_return_paths.py +1 -1
- pulumi_oci/email/get_sender.py +17 -2
- pulumi_oci/email/get_senders.py +1 -1
- pulumi_oci/email/outputs.py +678 -0
- pulumi_oci/email/sender.py +30 -0
- pulumi_oci/filestorage/_inputs.py +3 -3
- pulumi_oci/filestorage/mount_target.py +63 -7
- pulumi_oci/filestorage/outputs.py +15 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.6.0a1757045455.dist-info → pulumi_oci-3.7.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.6.0a1757045455.dist-info → pulumi_oci-3.7.0.dist-info}/RECORD +20 -20
- {pulumi_oci-3.6.0a1757045455.dist-info → pulumi_oci-3.7.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.6.0a1757045455.dist-info → pulumi_oci-3.7.0.dist-info}/top_level.txt +0 -0
@@ -122,13 +122,25 @@ def get_db_system_storage_performances(compartment_id: Optional[_builtins.str] =
|
|
122
122
|
|
123
123
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
124
124
|
|
125
|
+
## Example Usage
|
126
|
+
|
127
|
+
```python
|
128
|
+
import pulumi
|
129
|
+
import pulumi_oci as oci
|
130
|
+
|
131
|
+
test_db_system_storage_performances = oci.Database.get_db_system_storage_performances(storage_management=db_system_storage_performance_storage_management,
|
132
|
+
shape_type=db_system_storage_performance_shape_type,
|
133
|
+
database_edition=db_system_storage_performance_database_edition,
|
134
|
+
compartment_id=compartment_id)
|
135
|
+
```
|
136
|
+
|
125
137
|
|
126
138
|
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
127
139
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
128
140
|
* STANDARD_EDITION
|
129
141
|
* ENTERPRISE_EDITION
|
130
142
|
* ENTERPRISE_EDITION_HIGH_PERFORMANCE
|
131
|
-
*
|
143
|
+
* ENTERPRISE_EDITION_EXTREME_PERFORMANCE
|
132
144
|
* ENTERPRISE_EDITION_DEVELOPER
|
133
145
|
:param _builtins.str shape_type: Optional. Filters the performance results by shape type.
|
134
146
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
@@ -163,13 +175,25 @@ def get_db_system_storage_performances_output(compartment_id: Optional[pulumi.In
|
|
163
175
|
|
164
176
|
Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration.
|
165
177
|
|
178
|
+
## Example Usage
|
179
|
+
|
180
|
+
```python
|
181
|
+
import pulumi
|
182
|
+
import pulumi_oci as oci
|
183
|
+
|
184
|
+
test_db_system_storage_performances = oci.Database.get_db_system_storage_performances(storage_management=db_system_storage_performance_storage_management,
|
185
|
+
shape_type=db_system_storage_performance_shape_type,
|
186
|
+
database_edition=db_system_storage_performance_database_edition,
|
187
|
+
compartment_id=compartment_id)
|
188
|
+
```
|
189
|
+
|
166
190
|
|
167
191
|
:param _builtins.str compartment_id: Optional. The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
168
192
|
:param _builtins.str database_edition: Optional. Filters the performance results by database edition. Valid values are:
|
169
193
|
* STANDARD_EDITION
|
170
194
|
* ENTERPRISE_EDITION
|
171
195
|
* ENTERPRISE_EDITION_HIGH_PERFORMANCE
|
172
|
-
*
|
196
|
+
* ENTERPRISE_EDITION_EXTREME_PERFORMANCE
|
173
197
|
* ENTERPRISE_EDITION_DEVELOPER
|
174
198
|
:param _builtins.str shape_type: Optional. Filters the performance results by shape type.
|
175
199
|
:param _builtins.str storage_management: The DB system storage management option. Used to list database versions available for that storage manager. Valid values are `ASM` and `LVM`.
|
pulumi_oci/email/_inputs.py
CHANGED
@@ -15,6 +15,12 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'EmailDomainLockArgs',
|
19
|
+
'EmailDomainLockArgsDict',
|
20
|
+
'EmailReturnPathLockArgs',
|
21
|
+
'EmailReturnPathLockArgsDict',
|
22
|
+
'SenderLockArgs',
|
23
|
+
'SenderLockArgsDict',
|
18
24
|
'GetDkimsFilterArgs',
|
19
25
|
'GetDkimsFilterArgsDict',
|
20
26
|
'GetEmailDomainsFilterArgs',
|
@@ -29,6 +35,342 @@ __all__ = [
|
|
29
35
|
|
30
36
|
MYPY = False
|
31
37
|
|
38
|
+
if not MYPY:
|
39
|
+
class EmailDomainLockArgsDict(TypedDict):
|
40
|
+
compartment_id: NotRequired[pulumi.Input[_builtins.str]]
|
41
|
+
"""
|
42
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
|
43
|
+
"""
|
44
|
+
message: NotRequired[pulumi.Input[_builtins.str]]
|
45
|
+
"""
|
46
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
47
|
+
"""
|
48
|
+
related_resource_id: NotRequired[pulumi.Input[_builtins.str]]
|
49
|
+
"""
|
50
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
51
|
+
"""
|
52
|
+
time_created: NotRequired[pulumi.Input[_builtins.str]]
|
53
|
+
"""
|
54
|
+
The time the email domain was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
55
|
+
"""
|
56
|
+
type: NotRequired[pulumi.Input[_builtins.str]]
|
57
|
+
"""
|
58
|
+
Lock type.
|
59
|
+
"""
|
60
|
+
elif False:
|
61
|
+
EmailDomainLockArgsDict: TypeAlias = Mapping[str, Any]
|
62
|
+
|
63
|
+
@pulumi.input_type
|
64
|
+
class EmailDomainLockArgs:
|
65
|
+
def __init__(__self__, *,
|
66
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
67
|
+
message: Optional[pulumi.Input[_builtins.str]] = None,
|
68
|
+
related_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
69
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
70
|
+
type: Optional[pulumi.Input[_builtins.str]] = None):
|
71
|
+
"""
|
72
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
|
73
|
+
:param pulumi.Input[_builtins.str] message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
74
|
+
:param pulumi.Input[_builtins.str] related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
75
|
+
:param pulumi.Input[_builtins.str] time_created: The time the email domain was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
76
|
+
:param pulumi.Input[_builtins.str] type: Lock type.
|
77
|
+
"""
|
78
|
+
if compartment_id is not None:
|
79
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
80
|
+
if message is not None:
|
81
|
+
pulumi.set(__self__, "message", message)
|
82
|
+
if related_resource_id is not None:
|
83
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
84
|
+
if time_created is not None:
|
85
|
+
pulumi.set(__self__, "time_created", time_created)
|
86
|
+
if type is not None:
|
87
|
+
pulumi.set(__self__, "type", type)
|
88
|
+
|
89
|
+
@_builtins.property
|
90
|
+
@pulumi.getter(name="compartmentId")
|
91
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
92
|
+
"""
|
93
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "compartment_id")
|
96
|
+
|
97
|
+
@compartment_id.setter
|
98
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
99
|
+
pulumi.set(self, "compartment_id", value)
|
100
|
+
|
101
|
+
@_builtins.property
|
102
|
+
@pulumi.getter
|
103
|
+
def message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
104
|
+
"""
|
105
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "message")
|
108
|
+
|
109
|
+
@message.setter
|
110
|
+
def message(self, value: Optional[pulumi.Input[_builtins.str]]):
|
111
|
+
pulumi.set(self, "message", value)
|
112
|
+
|
113
|
+
@_builtins.property
|
114
|
+
@pulumi.getter(name="relatedResourceId")
|
115
|
+
def related_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
116
|
+
"""
|
117
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "related_resource_id")
|
120
|
+
|
121
|
+
@related_resource_id.setter
|
122
|
+
def related_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
123
|
+
pulumi.set(self, "related_resource_id", value)
|
124
|
+
|
125
|
+
@_builtins.property
|
126
|
+
@pulumi.getter(name="timeCreated")
|
127
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
128
|
+
"""
|
129
|
+
The time the email domain was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "time_created")
|
132
|
+
|
133
|
+
@time_created.setter
|
134
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
135
|
+
pulumi.set(self, "time_created", value)
|
136
|
+
|
137
|
+
@_builtins.property
|
138
|
+
@pulumi.getter
|
139
|
+
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
140
|
+
"""
|
141
|
+
Lock type.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "type")
|
144
|
+
|
145
|
+
@type.setter
|
146
|
+
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
147
|
+
pulumi.set(self, "type", value)
|
148
|
+
|
149
|
+
|
150
|
+
if not MYPY:
|
151
|
+
class EmailReturnPathLockArgsDict(TypedDict):
|
152
|
+
compartment_id: NotRequired[pulumi.Input[_builtins.str]]
|
153
|
+
"""
|
154
|
+
The lock compartment ID.
|
155
|
+
"""
|
156
|
+
message: NotRequired[pulumi.Input[_builtins.str]]
|
157
|
+
"""
|
158
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
159
|
+
"""
|
160
|
+
related_resource_id: NotRequired[pulumi.Input[_builtins.str]]
|
161
|
+
"""
|
162
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
163
|
+
"""
|
164
|
+
time_created: NotRequired[pulumi.Input[_builtins.str]]
|
165
|
+
"""
|
166
|
+
The time the email return path was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
167
|
+
"""
|
168
|
+
type: NotRequired[pulumi.Input[_builtins.str]]
|
169
|
+
"""
|
170
|
+
Lock type.
|
171
|
+
"""
|
172
|
+
elif False:
|
173
|
+
EmailReturnPathLockArgsDict: TypeAlias = Mapping[str, Any]
|
174
|
+
|
175
|
+
@pulumi.input_type
|
176
|
+
class EmailReturnPathLockArgs:
|
177
|
+
def __init__(__self__, *,
|
178
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
179
|
+
message: Optional[pulumi.Input[_builtins.str]] = None,
|
180
|
+
related_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
181
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
182
|
+
type: Optional[pulumi.Input[_builtins.str]] = None):
|
183
|
+
"""
|
184
|
+
:param pulumi.Input[_builtins.str] compartment_id: The lock compartment ID.
|
185
|
+
:param pulumi.Input[_builtins.str] message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
186
|
+
:param pulumi.Input[_builtins.str] related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
187
|
+
:param pulumi.Input[_builtins.str] time_created: The time the email return path was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
188
|
+
:param pulumi.Input[_builtins.str] type: Lock type.
|
189
|
+
"""
|
190
|
+
if compartment_id is not None:
|
191
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
192
|
+
if message is not None:
|
193
|
+
pulumi.set(__self__, "message", message)
|
194
|
+
if related_resource_id is not None:
|
195
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
196
|
+
if time_created is not None:
|
197
|
+
pulumi.set(__self__, "time_created", time_created)
|
198
|
+
if type is not None:
|
199
|
+
pulumi.set(__self__, "type", type)
|
200
|
+
|
201
|
+
@_builtins.property
|
202
|
+
@pulumi.getter(name="compartmentId")
|
203
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
204
|
+
"""
|
205
|
+
The lock compartment ID.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "compartment_id")
|
208
|
+
|
209
|
+
@compartment_id.setter
|
210
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
211
|
+
pulumi.set(self, "compartment_id", value)
|
212
|
+
|
213
|
+
@_builtins.property
|
214
|
+
@pulumi.getter
|
215
|
+
def message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
216
|
+
"""
|
217
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "message")
|
220
|
+
|
221
|
+
@message.setter
|
222
|
+
def message(self, value: Optional[pulumi.Input[_builtins.str]]):
|
223
|
+
pulumi.set(self, "message", value)
|
224
|
+
|
225
|
+
@_builtins.property
|
226
|
+
@pulumi.getter(name="relatedResourceId")
|
227
|
+
def related_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
228
|
+
"""
|
229
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "related_resource_id")
|
232
|
+
|
233
|
+
@related_resource_id.setter
|
234
|
+
def related_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
235
|
+
pulumi.set(self, "related_resource_id", value)
|
236
|
+
|
237
|
+
@_builtins.property
|
238
|
+
@pulumi.getter(name="timeCreated")
|
239
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
240
|
+
"""
|
241
|
+
The time the email return path was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
242
|
+
"""
|
243
|
+
return pulumi.get(self, "time_created")
|
244
|
+
|
245
|
+
@time_created.setter
|
246
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
247
|
+
pulumi.set(self, "time_created", value)
|
248
|
+
|
249
|
+
@_builtins.property
|
250
|
+
@pulumi.getter
|
251
|
+
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
252
|
+
"""
|
253
|
+
Lock type.
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "type")
|
256
|
+
|
257
|
+
@type.setter
|
258
|
+
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
259
|
+
pulumi.set(self, "type", value)
|
260
|
+
|
261
|
+
|
262
|
+
if not MYPY:
|
263
|
+
class SenderLockArgsDict(TypedDict):
|
264
|
+
compartment_id: NotRequired[pulumi.Input[_builtins.str]]
|
265
|
+
"""
|
266
|
+
(Updatable) The OCID of the compartment that contains the sender.
|
267
|
+
"""
|
268
|
+
message: NotRequired[pulumi.Input[_builtins.str]]
|
269
|
+
"""
|
270
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
271
|
+
"""
|
272
|
+
related_resource_id: NotRequired[pulumi.Input[_builtins.str]]
|
273
|
+
"""
|
274
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
275
|
+
"""
|
276
|
+
time_created: NotRequired[pulumi.Input[_builtins.str]]
|
277
|
+
"""
|
278
|
+
The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
279
|
+
"""
|
280
|
+
type: NotRequired[pulumi.Input[_builtins.str]]
|
281
|
+
"""
|
282
|
+
Lock type.
|
283
|
+
"""
|
284
|
+
elif False:
|
285
|
+
SenderLockArgsDict: TypeAlias = Mapping[str, Any]
|
286
|
+
|
287
|
+
@pulumi.input_type
|
288
|
+
class SenderLockArgs:
|
289
|
+
def __init__(__self__, *,
|
290
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
291
|
+
message: Optional[pulumi.Input[_builtins.str]] = None,
|
292
|
+
related_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
293
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
294
|
+
type: Optional[pulumi.Input[_builtins.str]] = None):
|
295
|
+
"""
|
296
|
+
:param pulumi.Input[_builtins.str] compartment_id: (Updatable) The OCID of the compartment that contains the sender.
|
297
|
+
:param pulumi.Input[_builtins.str] message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
298
|
+
:param pulumi.Input[_builtins.str] related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
299
|
+
:param pulumi.Input[_builtins.str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
300
|
+
:param pulumi.Input[_builtins.str] type: Lock type.
|
301
|
+
"""
|
302
|
+
if compartment_id is not None:
|
303
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
304
|
+
if message is not None:
|
305
|
+
pulumi.set(__self__, "message", message)
|
306
|
+
if related_resource_id is not None:
|
307
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
308
|
+
if time_created is not None:
|
309
|
+
pulumi.set(__self__, "time_created", time_created)
|
310
|
+
if type is not None:
|
311
|
+
pulumi.set(__self__, "type", type)
|
312
|
+
|
313
|
+
@_builtins.property
|
314
|
+
@pulumi.getter(name="compartmentId")
|
315
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
316
|
+
"""
|
317
|
+
(Updatable) The OCID of the compartment that contains the sender.
|
318
|
+
"""
|
319
|
+
return pulumi.get(self, "compartment_id")
|
320
|
+
|
321
|
+
@compartment_id.setter
|
322
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
323
|
+
pulumi.set(self, "compartment_id", value)
|
324
|
+
|
325
|
+
@_builtins.property
|
326
|
+
@pulumi.getter
|
327
|
+
def message(self) -> Optional[pulumi.Input[_builtins.str]]:
|
328
|
+
"""
|
329
|
+
A message added by the lock creator. The message typically gives an indication of why the resource is locked.
|
330
|
+
"""
|
331
|
+
return pulumi.get(self, "message")
|
332
|
+
|
333
|
+
@message.setter
|
334
|
+
def message(self, value: Optional[pulumi.Input[_builtins.str]]):
|
335
|
+
pulumi.set(self, "message", value)
|
336
|
+
|
337
|
+
@_builtins.property
|
338
|
+
@pulumi.getter(name="relatedResourceId")
|
339
|
+
def related_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
340
|
+
"""
|
341
|
+
The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
342
|
+
"""
|
343
|
+
return pulumi.get(self, "related_resource_id")
|
344
|
+
|
345
|
+
@related_resource_id.setter
|
346
|
+
def related_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
347
|
+
pulumi.set(self, "related_resource_id", value)
|
348
|
+
|
349
|
+
@_builtins.property
|
350
|
+
@pulumi.getter(name="timeCreated")
|
351
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
352
|
+
"""
|
353
|
+
The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
354
|
+
"""
|
355
|
+
return pulumi.get(self, "time_created")
|
356
|
+
|
357
|
+
@time_created.setter
|
358
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
359
|
+
pulumi.set(self, "time_created", value)
|
360
|
+
|
361
|
+
@_builtins.property
|
362
|
+
@pulumi.getter
|
363
|
+
def type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
364
|
+
"""
|
365
|
+
Lock type.
|
366
|
+
"""
|
367
|
+
return pulumi.get(self, "type")
|
368
|
+
|
369
|
+
@type.setter
|
370
|
+
def type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
371
|
+
pulumi.set(self, "type", value)
|
372
|
+
|
373
|
+
|
32
374
|
if not MYPY:
|
33
375
|
class GetDkimsFilterArgsDict(TypedDict):
|
34
376
|
name: _builtins.str
|
pulumi_oci/email/email_domain.py
CHANGED
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['EmailDomainArgs', 'EmailDomain']
|
18
20
|
|
@@ -138,6 +140,7 @@ class _EmailDomainState:
|
|
138
140
|
domain_verification_status: Optional[pulumi.Input[_builtins.str]] = None,
|
139
141
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
140
142
|
is_spf: Optional[pulumi.Input[_builtins.bool]] = None,
|
143
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['EmailDomainLockArgs']]]] = None,
|
141
144
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
142
145
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
143
146
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -151,7 +154,7 @@ class _EmailDomainState:
|
|
151
154
|
:param pulumi.Input[_builtins.str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
|
152
155
|
:param pulumi.Input[_builtins.str] domain_verification_status: The current domain verification status.
|
153
156
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
154
|
-
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
157
|
+
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).* `locks` - Locks associated with this resource.
|
155
158
|
:param pulumi.Input[_builtins.str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
156
159
|
|
157
160
|
|
@@ -177,6 +180,8 @@ class _EmailDomainState:
|
|
177
180
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
178
181
|
if is_spf is not None:
|
179
182
|
pulumi.set(__self__, "is_spf", is_spf)
|
183
|
+
if locks is not None:
|
184
|
+
pulumi.set(__self__, "locks", locks)
|
180
185
|
if name is not None:
|
181
186
|
pulumi.set(__self__, "name", name)
|
182
187
|
if state is not None:
|
@@ -274,7 +279,7 @@ class _EmailDomainState:
|
|
274
279
|
@pulumi.getter(name="isSpf")
|
275
280
|
def is_spf(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
276
281
|
"""
|
277
|
-
Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
282
|
+
Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).* `locks` - Locks associated with this resource.
|
278
283
|
"""
|
279
284
|
return pulumi.get(self, "is_spf")
|
280
285
|
|
@@ -282,6 +287,15 @@ class _EmailDomainState:
|
|
282
287
|
def is_spf(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
283
288
|
pulumi.set(self, "is_spf", value)
|
284
289
|
|
290
|
+
@_builtins.property
|
291
|
+
@pulumi.getter
|
292
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EmailDomainLockArgs']]]]:
|
293
|
+
return pulumi.get(self, "locks")
|
294
|
+
|
295
|
+
@locks.setter
|
296
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EmailDomainLockArgs']]]]):
|
297
|
+
pulumi.set(self, "locks", value)
|
298
|
+
|
285
299
|
@_builtins.property
|
286
300
|
@pulumi.getter
|
287
301
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -472,6 +486,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
472
486
|
__props__.__dict__["active_dkim_id"] = None
|
473
487
|
__props__.__dict__["domain_verification_status"] = None
|
474
488
|
__props__.__dict__["is_spf"] = None
|
489
|
+
__props__.__dict__["locks"] = None
|
475
490
|
__props__.__dict__["state"] = None
|
476
491
|
__props__.__dict__["system_tags"] = None
|
477
492
|
__props__.__dict__["time_created"] = None
|
@@ -493,6 +508,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
493
508
|
domain_verification_status: Optional[pulumi.Input[_builtins.str]] = None,
|
494
509
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
495
510
|
is_spf: Optional[pulumi.Input[_builtins.bool]] = None,
|
511
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EmailDomainLockArgs', 'EmailDomainLockArgsDict']]]]] = None,
|
496
512
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
497
513
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
498
514
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
@@ -511,7 +527,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
511
527
|
:param pulumi.Input[_builtins.str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
|
512
528
|
:param pulumi.Input[_builtins.str] domain_verification_status: The current domain verification status.
|
513
529
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
514
|
-
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
530
|
+
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).* `locks` - Locks associated with this resource.
|
515
531
|
:param pulumi.Input[_builtins.str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
516
532
|
|
517
533
|
|
@@ -533,6 +549,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
533
549
|
__props__.__dict__["domain_verification_status"] = domain_verification_status
|
534
550
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
535
551
|
__props__.__dict__["is_spf"] = is_spf
|
552
|
+
__props__.__dict__["locks"] = locks
|
536
553
|
__props__.__dict__["name"] = name
|
537
554
|
__props__.__dict__["state"] = state
|
538
555
|
__props__.__dict__["system_tags"] = system_tags
|
@@ -599,10 +616,15 @@ class EmailDomain(pulumi.CustomResource):
|
|
599
616
|
@pulumi.getter(name="isSpf")
|
600
617
|
def is_spf(self) -> pulumi.Output[_builtins.bool]:
|
601
618
|
"""
|
602
|
-
Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
619
|
+
Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).* `locks` - Locks associated with this resource.
|
603
620
|
"""
|
604
621
|
return pulumi.get(self, "is_spf")
|
605
622
|
|
623
|
+
@_builtins.property
|
624
|
+
@pulumi.getter
|
625
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.EmailDomainLock']]:
|
626
|
+
return pulumi.get(self, "locks")
|
627
|
+
|
606
628
|
@_builtins.property
|
607
629
|
@pulumi.getter
|
608
630
|
def name(self) -> pulumi.Output[_builtins.str]:
|
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['EmailReturnPathArgs', 'EmailReturnPath']
|
18
20
|
|
@@ -121,6 +123,7 @@ class _EmailReturnPathState:
|
|
121
123
|
dns_subdomain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
122
124
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
123
125
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
126
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['EmailReturnPathLockArgs']]]] = None,
|
124
127
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
125
128
|
parent_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
126
129
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -130,12 +133,13 @@ class _EmailReturnPathState:
|
|
130
133
|
"""
|
131
134
|
Input properties used for looking up and filtering EmailReturnPath resources.
|
132
135
|
:param pulumi.Input[_builtins.str] cname_record_value: The DNS CNAME record value to provision to the Return Patn DNS subdomain, when using the CNAME method for Email Return Path setup (preferred).
|
133
|
-
:param pulumi.Input[_builtins.str] compartment_id: The
|
136
|
+
:param pulumi.Input[_builtins.str] compartment_id: The lock compartment ID.
|
134
137
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
135
138
|
:param pulumi.Input[_builtins.str] description: (Updatable) A string that describes the details about the email return path. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
136
139
|
:param pulumi.Input[_builtins.str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify Email Return Path. It is usually created with a CNAME record set to the cnameRecordValue.
|
137
140
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
138
141
|
:param pulumi.Input[_builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
|
142
|
+
:param pulumi.Input[Sequence[pulumi.Input['EmailReturnPathLockArgs']]] locks: Locks associated with this resource.
|
139
143
|
:param pulumi.Input[_builtins.str] name: The name of the email return path domain in the Internet Domain Name System (DNS). The name must be a subdomain of the email domain used to send emails. The email return path name must be globally unique for this tenancy. If you do not provide the email return path name, we will generate one for you. If you do provide the email return path name, we suggest adding a short region indicator to allow using the same parent domain in other regions you might be subscribed to. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
140
144
|
:param pulumi.Input[_builtins.str] parent_resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this email return path.
|
141
145
|
|
@@ -161,6 +165,8 @@ class _EmailReturnPathState:
|
|
161
165
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
162
166
|
if lifecycle_details is not None:
|
163
167
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
168
|
+
if locks is not None:
|
169
|
+
pulumi.set(__self__, "locks", locks)
|
164
170
|
if name is not None:
|
165
171
|
pulumi.set(__self__, "name", name)
|
166
172
|
if parent_resource_id is not None:
|
@@ -190,7 +196,7 @@ class _EmailReturnPathState:
|
|
190
196
|
@pulumi.getter(name="compartmentId")
|
191
197
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
192
198
|
"""
|
193
|
-
The
|
199
|
+
The lock compartment ID.
|
194
200
|
"""
|
195
201
|
return pulumi.get(self, "compartment_id")
|
196
202
|
|
@@ -258,6 +264,18 @@ class _EmailReturnPathState:
|
|
258
264
|
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
259
265
|
pulumi.set(self, "lifecycle_details", value)
|
260
266
|
|
267
|
+
@_builtins.property
|
268
|
+
@pulumi.getter
|
269
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EmailReturnPathLockArgs']]]]:
|
270
|
+
"""
|
271
|
+
Locks associated with this resource.
|
272
|
+
"""
|
273
|
+
return pulumi.get(self, "locks")
|
274
|
+
|
275
|
+
@locks.setter
|
276
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EmailReturnPathLockArgs']]]]):
|
277
|
+
pulumi.set(self, "locks", value)
|
278
|
+
|
261
279
|
@_builtins.property
|
262
280
|
@pulumi.getter
|
263
281
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -467,6 +485,7 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
467
485
|
__props__.__dict__["compartment_id"] = None
|
468
486
|
__props__.__dict__["dns_subdomain_name"] = None
|
469
487
|
__props__.__dict__["lifecycle_details"] = None
|
488
|
+
__props__.__dict__["locks"] = None
|
470
489
|
__props__.__dict__["state"] = None
|
471
490
|
__props__.__dict__["system_tags"] = None
|
472
491
|
__props__.__dict__["time_created"] = None
|
@@ -488,6 +507,7 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
488
507
|
dns_subdomain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
489
508
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
490
509
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
510
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EmailReturnPathLockArgs', 'EmailReturnPathLockArgsDict']]]]] = None,
|
491
511
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
492
512
|
parent_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
493
513
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -502,12 +522,13 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
502
522
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
503
523
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
504
524
|
:param pulumi.Input[_builtins.str] cname_record_value: The DNS CNAME record value to provision to the Return Patn DNS subdomain, when using the CNAME method for Email Return Path setup (preferred).
|
505
|
-
:param pulumi.Input[_builtins.str] compartment_id: The
|
525
|
+
:param pulumi.Input[_builtins.str] compartment_id: The lock compartment ID.
|
506
526
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
507
527
|
:param pulumi.Input[_builtins.str] description: (Updatable) A string that describes the details about the email return path. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
508
528
|
:param pulumi.Input[_builtins.str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify Email Return Path. It is usually created with a CNAME record set to the cnameRecordValue.
|
509
529
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
510
530
|
:param pulumi.Input[_builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
|
531
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EmailReturnPathLockArgs', 'EmailReturnPathLockArgsDict']]]] locks: Locks associated with this resource.
|
511
532
|
:param pulumi.Input[_builtins.str] name: The name of the email return path domain in the Internet Domain Name System (DNS). The name must be a subdomain of the email domain used to send emails. The email return path name must be globally unique for this tenancy. If you do not provide the email return path name, we will generate one for you. If you do provide the email return path name, we suggest adding a short region indicator to allow using the same parent domain in other regions you might be subscribed to. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
512
533
|
:param pulumi.Input[_builtins.str] parent_resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this email return path.
|
513
534
|
|
@@ -530,6 +551,7 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
530
551
|
__props__.__dict__["dns_subdomain_name"] = dns_subdomain_name
|
531
552
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
532
553
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
554
|
+
__props__.__dict__["locks"] = locks
|
533
555
|
__props__.__dict__["name"] = name
|
534
556
|
__props__.__dict__["parent_resource_id"] = parent_resource_id
|
535
557
|
__props__.__dict__["state"] = state
|
@@ -550,7 +572,7 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
550
572
|
@pulumi.getter(name="compartmentId")
|
551
573
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
552
574
|
"""
|
553
|
-
The
|
575
|
+
The lock compartment ID.
|
554
576
|
"""
|
555
577
|
return pulumi.get(self, "compartment_id")
|
556
578
|
|
@@ -594,6 +616,14 @@ class EmailReturnPath(pulumi.CustomResource):
|
|
594
616
|
"""
|
595
617
|
return pulumi.get(self, "lifecycle_details")
|
596
618
|
|
619
|
+
@_builtins.property
|
620
|
+
@pulumi.getter
|
621
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.EmailReturnPathLock']]:
|
622
|
+
"""
|
623
|
+
Locks associated with this resource.
|
624
|
+
"""
|
625
|
+
return pulumi.get(self, "locks")
|
626
|
+
|
597
627
|
@_builtins.property
|
598
628
|
@pulumi.getter
|
599
629
|
def name(self) -> pulumi.Output[_builtins.str]:
|