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.
@@ -16,21 +16,294 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'EmailDomainLock',
20
+ 'EmailReturnPathLock',
21
+ 'SenderLock',
19
22
  'GetDkimsDkimCollectionResult',
20
23
  'GetDkimsDkimCollectionItemResult',
21
24
  'GetDkimsFilterResult',
25
+ 'GetEmailDomainLockResult',
22
26
  'GetEmailDomainsEmailDomainCollectionResult',
23
27
  'GetEmailDomainsEmailDomainCollectionItemResult',
28
+ 'GetEmailDomainsEmailDomainCollectionItemLockResult',
24
29
  'GetEmailDomainsFilterResult',
30
+ 'GetEmailReturnPathLockResult',
25
31
  'GetEmailReturnPathsEmailReturnPathCollectionResult',
26
32
  'GetEmailReturnPathsEmailReturnPathCollectionItemResult',
33
+ 'GetEmailReturnPathsEmailReturnPathCollectionItemLockResult',
27
34
  'GetEmailReturnPathsFilterResult',
35
+ 'GetSenderLockResult',
28
36
  'GetSendersFilterResult',
29
37
  'GetSendersSenderResult',
38
+ 'GetSendersSenderLockResult',
30
39
  'GetSuppressionsFilterResult',
31
40
  'GetSuppressionsSuppressionResult',
32
41
  ]
33
42
 
43
+ @pulumi.output_type
44
+ class EmailDomainLock(dict):
45
+ @staticmethod
46
+ def __key_warning(key: str):
47
+ suggest = None
48
+ if key == "compartmentId":
49
+ suggest = "compartment_id"
50
+ elif key == "relatedResourceId":
51
+ suggest = "related_resource_id"
52
+ elif key == "timeCreated":
53
+ suggest = "time_created"
54
+
55
+ if suggest:
56
+ pulumi.log.warn(f"Key '{key}' not found in EmailDomainLock. Access the value via the '{suggest}' property getter instead.")
57
+
58
+ def __getitem__(self, key: str) -> Any:
59
+ EmailDomainLock.__key_warning(key)
60
+ return super().__getitem__(key)
61
+
62
+ def get(self, key: str, default = None) -> Any:
63
+ EmailDomainLock.__key_warning(key)
64
+ return super().get(key, default)
65
+
66
+ def __init__(__self__, *,
67
+ compartment_id: Optional[_builtins.str] = None,
68
+ message: Optional[_builtins.str] = None,
69
+ related_resource_id: Optional[_builtins.str] = None,
70
+ time_created: Optional[_builtins.str] = None,
71
+ type: Optional[_builtins.str] = None):
72
+ """
73
+ :param _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.
74
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
75
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
76
+ :param _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`
77
+ :param _builtins.str type: Lock type.
78
+ """
79
+ if compartment_id is not None:
80
+ pulumi.set(__self__, "compartment_id", compartment_id)
81
+ if message is not None:
82
+ pulumi.set(__self__, "message", message)
83
+ if related_resource_id is not None:
84
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
85
+ if time_created is not None:
86
+ pulumi.set(__self__, "time_created", time_created)
87
+ if type is not None:
88
+ pulumi.set(__self__, "type", type)
89
+
90
+ @_builtins.property
91
+ @pulumi.getter(name="compartmentId")
92
+ def compartment_id(self) -> Optional[_builtins.str]:
93
+ """
94
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
95
+ """
96
+ return pulumi.get(self, "compartment_id")
97
+
98
+ @_builtins.property
99
+ @pulumi.getter
100
+ def message(self) -> Optional[_builtins.str]:
101
+ """
102
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
103
+ """
104
+ return pulumi.get(self, "message")
105
+
106
+ @_builtins.property
107
+ @pulumi.getter(name="relatedResourceId")
108
+ def related_resource_id(self) -> Optional[_builtins.str]:
109
+ """
110
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
111
+ """
112
+ return pulumi.get(self, "related_resource_id")
113
+
114
+ @_builtins.property
115
+ @pulumi.getter(name="timeCreated")
116
+ def time_created(self) -> Optional[_builtins.str]:
117
+ """
118
+ 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`
119
+ """
120
+ return pulumi.get(self, "time_created")
121
+
122
+ @_builtins.property
123
+ @pulumi.getter
124
+ def type(self) -> Optional[_builtins.str]:
125
+ """
126
+ Lock type.
127
+ """
128
+ return pulumi.get(self, "type")
129
+
130
+
131
+ @pulumi.output_type
132
+ class EmailReturnPathLock(dict):
133
+ @staticmethod
134
+ def __key_warning(key: str):
135
+ suggest = None
136
+ if key == "compartmentId":
137
+ suggest = "compartment_id"
138
+ elif key == "relatedResourceId":
139
+ suggest = "related_resource_id"
140
+ elif key == "timeCreated":
141
+ suggest = "time_created"
142
+
143
+ if suggest:
144
+ pulumi.log.warn(f"Key '{key}' not found in EmailReturnPathLock. Access the value via the '{suggest}' property getter instead.")
145
+
146
+ def __getitem__(self, key: str) -> Any:
147
+ EmailReturnPathLock.__key_warning(key)
148
+ return super().__getitem__(key)
149
+
150
+ def get(self, key: str, default = None) -> Any:
151
+ EmailReturnPathLock.__key_warning(key)
152
+ return super().get(key, default)
153
+
154
+ def __init__(__self__, *,
155
+ compartment_id: Optional[_builtins.str] = None,
156
+ message: Optional[_builtins.str] = None,
157
+ related_resource_id: Optional[_builtins.str] = None,
158
+ time_created: Optional[_builtins.str] = None,
159
+ type: Optional[_builtins.str] = None):
160
+ """
161
+ :param _builtins.str compartment_id: The lock compartment ID.
162
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
163
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
164
+ :param _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`
165
+ :param _builtins.str type: Lock type.
166
+ """
167
+ if compartment_id is not None:
168
+ pulumi.set(__self__, "compartment_id", compartment_id)
169
+ if message is not None:
170
+ pulumi.set(__self__, "message", message)
171
+ if related_resource_id is not None:
172
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
173
+ if time_created is not None:
174
+ pulumi.set(__self__, "time_created", time_created)
175
+ if type is not None:
176
+ pulumi.set(__self__, "type", type)
177
+
178
+ @_builtins.property
179
+ @pulumi.getter(name="compartmentId")
180
+ def compartment_id(self) -> Optional[_builtins.str]:
181
+ """
182
+ The lock compartment ID.
183
+ """
184
+ return pulumi.get(self, "compartment_id")
185
+
186
+ @_builtins.property
187
+ @pulumi.getter
188
+ def message(self) -> Optional[_builtins.str]:
189
+ """
190
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
191
+ """
192
+ return pulumi.get(self, "message")
193
+
194
+ @_builtins.property
195
+ @pulumi.getter(name="relatedResourceId")
196
+ def related_resource_id(self) -> Optional[_builtins.str]:
197
+ """
198
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
199
+ """
200
+ return pulumi.get(self, "related_resource_id")
201
+
202
+ @_builtins.property
203
+ @pulumi.getter(name="timeCreated")
204
+ def time_created(self) -> Optional[_builtins.str]:
205
+ """
206
+ 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`
207
+ """
208
+ return pulumi.get(self, "time_created")
209
+
210
+ @_builtins.property
211
+ @pulumi.getter
212
+ def type(self) -> Optional[_builtins.str]:
213
+ """
214
+ Lock type.
215
+ """
216
+ return pulumi.get(self, "type")
217
+
218
+
219
+ @pulumi.output_type
220
+ class SenderLock(dict):
221
+ @staticmethod
222
+ def __key_warning(key: str):
223
+ suggest = None
224
+ if key == "compartmentId":
225
+ suggest = "compartment_id"
226
+ elif key == "relatedResourceId":
227
+ suggest = "related_resource_id"
228
+ elif key == "timeCreated":
229
+ suggest = "time_created"
230
+
231
+ if suggest:
232
+ pulumi.log.warn(f"Key '{key}' not found in SenderLock. Access the value via the '{suggest}' property getter instead.")
233
+
234
+ def __getitem__(self, key: str) -> Any:
235
+ SenderLock.__key_warning(key)
236
+ return super().__getitem__(key)
237
+
238
+ def get(self, key: str, default = None) -> Any:
239
+ SenderLock.__key_warning(key)
240
+ return super().get(key, default)
241
+
242
+ def __init__(__self__, *,
243
+ compartment_id: Optional[_builtins.str] = None,
244
+ message: Optional[_builtins.str] = None,
245
+ related_resource_id: Optional[_builtins.str] = None,
246
+ time_created: Optional[_builtins.str] = None,
247
+ type: Optional[_builtins.str] = None):
248
+ """
249
+ :param _builtins.str compartment_id: (Updatable) The OCID of the compartment that contains the sender.
250
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
251
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
252
+ :param _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).
253
+ :param _builtins.str type: Lock type.
254
+ """
255
+ if compartment_id is not None:
256
+ pulumi.set(__self__, "compartment_id", compartment_id)
257
+ if message is not None:
258
+ pulumi.set(__self__, "message", message)
259
+ if related_resource_id is not None:
260
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
261
+ if time_created is not None:
262
+ pulumi.set(__self__, "time_created", time_created)
263
+ if type is not None:
264
+ pulumi.set(__self__, "type", type)
265
+
266
+ @_builtins.property
267
+ @pulumi.getter(name="compartmentId")
268
+ def compartment_id(self) -> Optional[_builtins.str]:
269
+ """
270
+ (Updatable) The OCID of the compartment that contains the sender.
271
+ """
272
+ return pulumi.get(self, "compartment_id")
273
+
274
+ @_builtins.property
275
+ @pulumi.getter
276
+ def message(self) -> Optional[_builtins.str]:
277
+ """
278
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
279
+ """
280
+ return pulumi.get(self, "message")
281
+
282
+ @_builtins.property
283
+ @pulumi.getter(name="relatedResourceId")
284
+ def related_resource_id(self) -> Optional[_builtins.str]:
285
+ """
286
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
287
+ """
288
+ return pulumi.get(self, "related_resource_id")
289
+
290
+ @_builtins.property
291
+ @pulumi.getter(name="timeCreated")
292
+ def time_created(self) -> Optional[_builtins.str]:
293
+ """
294
+ 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).
295
+ """
296
+ return pulumi.get(self, "time_created")
297
+
298
+ @_builtins.property
299
+ @pulumi.getter
300
+ def type(self) -> Optional[_builtins.str]:
301
+ """
302
+ Lock type.
303
+ """
304
+ return pulumi.get(self, "type")
305
+
306
+
34
307
  @pulumi.output_type
35
308
  class GetDkimsDkimCollectionResult(dict):
36
309
  def __init__(__self__, *,
@@ -277,6 +550,68 @@ class GetDkimsFilterResult(dict):
277
550
  return pulumi.get(self, "regex")
278
551
 
279
552
 
553
+ @pulumi.output_type
554
+ class GetEmailDomainLockResult(dict):
555
+ def __init__(__self__, *,
556
+ compartment_id: _builtins.str,
557
+ message: _builtins.str,
558
+ related_resource_id: _builtins.str,
559
+ time_created: _builtins.str,
560
+ type: _builtins.str):
561
+ """
562
+ :param _builtins.str compartment_id: The lock compartment ID.
563
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
564
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
565
+ :param _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`
566
+ :param _builtins.str type: Lock type.
567
+ """
568
+ pulumi.set(__self__, "compartment_id", compartment_id)
569
+ pulumi.set(__self__, "message", message)
570
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
571
+ pulumi.set(__self__, "time_created", time_created)
572
+ pulumi.set(__self__, "type", type)
573
+
574
+ @_builtins.property
575
+ @pulumi.getter(name="compartmentId")
576
+ def compartment_id(self) -> _builtins.str:
577
+ """
578
+ The lock compartment ID.
579
+ """
580
+ return pulumi.get(self, "compartment_id")
581
+
582
+ @_builtins.property
583
+ @pulumi.getter
584
+ def message(self) -> _builtins.str:
585
+ """
586
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
587
+ """
588
+ return pulumi.get(self, "message")
589
+
590
+ @_builtins.property
591
+ @pulumi.getter(name="relatedResourceId")
592
+ def related_resource_id(self) -> _builtins.str:
593
+ """
594
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
595
+ """
596
+ return pulumi.get(self, "related_resource_id")
597
+
598
+ @_builtins.property
599
+ @pulumi.getter(name="timeCreated")
600
+ def time_created(self) -> _builtins.str:
601
+ """
602
+ 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`
603
+ """
604
+ return pulumi.get(self, "time_created")
605
+
606
+ @_builtins.property
607
+ @pulumi.getter
608
+ def type(self) -> _builtins.str:
609
+ """
610
+ Lock type.
611
+ """
612
+ return pulumi.get(self, "type")
613
+
614
+
280
615
  @pulumi.output_type
281
616
  class GetEmailDomainsEmailDomainCollectionResult(dict):
282
617
  def __init__(__self__, *,
@@ -301,6 +636,7 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
301
636
  freeform_tags: Mapping[str, _builtins.str],
302
637
  id: _builtins.str,
303
638
  is_spf: _builtins.bool,
639
+ locks: Sequence['outputs.GetEmailDomainsEmailDomainCollectionItemLockResult'],
304
640
  name: _builtins.str,
305
641
  state: _builtins.str,
306
642
  system_tags: Mapping[str, _builtins.str],
@@ -315,6 +651,7 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
315
651
  :param Mapping[str, _builtins.str] freeform_tags: 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"}`
316
652
  :param _builtins.str id: A filter to only return resources that match the given id exactly.
317
653
  :param _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).
654
+ :param Sequence['GetEmailDomainsEmailDomainCollectionItemLockArgs'] locks: Locks associated with this resource.
318
655
  :param _builtins.str name: A filter to only return resources that match the given name exactly.
319
656
  :param _builtins.str state: Filter returned list by specified lifecycle state. This parameter is case-insensitive.
320
657
  :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -329,6 +666,7 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
329
666
  pulumi.set(__self__, "freeform_tags", freeform_tags)
330
667
  pulumi.set(__self__, "id", id)
331
668
  pulumi.set(__self__, "is_spf", is_spf)
669
+ pulumi.set(__self__, "locks", locks)
332
670
  pulumi.set(__self__, "name", name)
333
671
  pulumi.set(__self__, "state", state)
334
672
  pulumi.set(__self__, "system_tags", system_tags)
@@ -406,6 +744,14 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
406
744
  """
407
745
  return pulumi.get(self, "is_spf")
408
746
 
747
+ @_builtins.property
748
+ @pulumi.getter
749
+ def locks(self) -> Sequence['outputs.GetEmailDomainsEmailDomainCollectionItemLockResult']:
750
+ """
751
+ Locks associated with this resource.
752
+ """
753
+ return pulumi.get(self, "locks")
754
+
409
755
  @_builtins.property
410
756
  @pulumi.getter
411
757
  def name(self) -> _builtins.str:
@@ -439,6 +785,68 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
439
785
  return pulumi.get(self, "time_created")
440
786
 
441
787
 
788
+ @pulumi.output_type
789
+ class GetEmailDomainsEmailDomainCollectionItemLockResult(dict):
790
+ def __init__(__self__, *,
791
+ compartment_id: _builtins.str,
792
+ message: _builtins.str,
793
+ related_resource_id: _builtins.str,
794
+ time_created: _builtins.str,
795
+ type: _builtins.str):
796
+ """
797
+ :param _builtins.str compartment_id: The OCID for the compartment.
798
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
799
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
800
+ :param _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`
801
+ :param _builtins.str type: Lock type.
802
+ """
803
+ pulumi.set(__self__, "compartment_id", compartment_id)
804
+ pulumi.set(__self__, "message", message)
805
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
806
+ pulumi.set(__self__, "time_created", time_created)
807
+ pulumi.set(__self__, "type", type)
808
+
809
+ @_builtins.property
810
+ @pulumi.getter(name="compartmentId")
811
+ def compartment_id(self) -> _builtins.str:
812
+ """
813
+ The OCID for the compartment.
814
+ """
815
+ return pulumi.get(self, "compartment_id")
816
+
817
+ @_builtins.property
818
+ @pulumi.getter
819
+ def message(self) -> _builtins.str:
820
+ """
821
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
822
+ """
823
+ return pulumi.get(self, "message")
824
+
825
+ @_builtins.property
826
+ @pulumi.getter(name="relatedResourceId")
827
+ def related_resource_id(self) -> _builtins.str:
828
+ """
829
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
830
+ """
831
+ return pulumi.get(self, "related_resource_id")
832
+
833
+ @_builtins.property
834
+ @pulumi.getter(name="timeCreated")
835
+ def time_created(self) -> _builtins.str:
836
+ """
837
+ 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`
838
+ """
839
+ return pulumi.get(self, "time_created")
840
+
841
+ @_builtins.property
842
+ @pulumi.getter
843
+ def type(self) -> _builtins.str:
844
+ """
845
+ Lock type.
846
+ """
847
+ return pulumi.get(self, "type")
848
+
849
+
442
850
  @pulumi.output_type
443
851
  class GetEmailDomainsFilterResult(dict):
444
852
  def __init__(__self__, *,
@@ -472,6 +880,68 @@ class GetEmailDomainsFilterResult(dict):
472
880
  return pulumi.get(self, "regex")
473
881
 
474
882
 
883
+ @pulumi.output_type
884
+ class GetEmailReturnPathLockResult(dict):
885
+ def __init__(__self__, *,
886
+ compartment_id: _builtins.str,
887
+ message: _builtins.str,
888
+ related_resource_id: _builtins.str,
889
+ time_created: _builtins.str,
890
+ type: _builtins.str):
891
+ """
892
+ :param _builtins.str compartment_id: The lock compartment ID.
893
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
894
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
895
+ :param _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`
896
+ :param _builtins.str type: Lock type.
897
+ """
898
+ pulumi.set(__self__, "compartment_id", compartment_id)
899
+ pulumi.set(__self__, "message", message)
900
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
901
+ pulumi.set(__self__, "time_created", time_created)
902
+ pulumi.set(__self__, "type", type)
903
+
904
+ @_builtins.property
905
+ @pulumi.getter(name="compartmentId")
906
+ def compartment_id(self) -> _builtins.str:
907
+ """
908
+ The lock compartment ID.
909
+ """
910
+ return pulumi.get(self, "compartment_id")
911
+
912
+ @_builtins.property
913
+ @pulumi.getter
914
+ def message(self) -> _builtins.str:
915
+ """
916
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
917
+ """
918
+ return pulumi.get(self, "message")
919
+
920
+ @_builtins.property
921
+ @pulumi.getter(name="relatedResourceId")
922
+ def related_resource_id(self) -> _builtins.str:
923
+ """
924
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
925
+ """
926
+ return pulumi.get(self, "related_resource_id")
927
+
928
+ @_builtins.property
929
+ @pulumi.getter(name="timeCreated")
930
+ def time_created(self) -> _builtins.str:
931
+ """
932
+ 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`
933
+ """
934
+ return pulumi.get(self, "time_created")
935
+
936
+ @_builtins.property
937
+ @pulumi.getter
938
+ def type(self) -> _builtins.str:
939
+ """
940
+ Lock type.
941
+ """
942
+ return pulumi.get(self, "type")
943
+
944
+
475
945
  @pulumi.output_type
476
946
  class GetEmailReturnPathsEmailReturnPathCollectionResult(dict):
477
947
  def __init__(__self__, *,
@@ -495,6 +965,7 @@ class GetEmailReturnPathsEmailReturnPathCollectionItemResult(dict):
495
965
  freeform_tags: Mapping[str, _builtins.str],
496
966
  id: _builtins.str,
497
967
  lifecycle_details: _builtins.str,
968
+ locks: Sequence['outputs.GetEmailReturnPathsEmailReturnPathCollectionItemLockResult'],
498
969
  name: _builtins.str,
499
970
  parent_resource_id: _builtins.str,
500
971
  state: _builtins.str,
@@ -510,6 +981,7 @@ class GetEmailReturnPathsEmailReturnPathCollectionItemResult(dict):
510
981
  :param Mapping[str, _builtins.str] freeform_tags: 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"}`
511
982
  :param _builtins.str id: A filter to only return resources that match the given id exactly.
512
983
  :param _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.
984
+ :param Sequence['GetEmailReturnPathsEmailReturnPathCollectionItemLockArgs'] locks: Locks associated with this resource.
513
985
  :param _builtins.str name: A filter to only return resources that match the given name exactly.
514
986
  :param _builtins.str parent_resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Email Domain to which this Email Return Path belongs.
515
987
  :param _builtins.str state: Filter returned list by specified lifecycle state. This parameter is case-insensitive.
@@ -525,6 +997,7 @@ class GetEmailReturnPathsEmailReturnPathCollectionItemResult(dict):
525
997
  pulumi.set(__self__, "freeform_tags", freeform_tags)
526
998
  pulumi.set(__self__, "id", id)
527
999
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1000
+ pulumi.set(__self__, "locks", locks)
528
1001
  pulumi.set(__self__, "name", name)
529
1002
  pulumi.set(__self__, "parent_resource_id", parent_resource_id)
530
1003
  pulumi.set(__self__, "state", state)
@@ -596,6 +1069,14 @@ class GetEmailReturnPathsEmailReturnPathCollectionItemResult(dict):
596
1069
  """
597
1070
  return pulumi.get(self, "lifecycle_details")
598
1071
 
1072
+ @_builtins.property
1073
+ @pulumi.getter
1074
+ def locks(self) -> Sequence['outputs.GetEmailReturnPathsEmailReturnPathCollectionItemLockResult']:
1075
+ """
1076
+ Locks associated with this resource.
1077
+ """
1078
+ return pulumi.get(self, "locks")
1079
+
599
1080
  @_builtins.property
600
1081
  @pulumi.getter
601
1082
  def name(self) -> _builtins.str:
@@ -645,6 +1126,68 @@ class GetEmailReturnPathsEmailReturnPathCollectionItemResult(dict):
645
1126
  return pulumi.get(self, "time_updated")
646
1127
 
647
1128
 
1129
+ @pulumi.output_type
1130
+ class GetEmailReturnPathsEmailReturnPathCollectionItemLockResult(dict):
1131
+ def __init__(__self__, *,
1132
+ compartment_id: _builtins.str,
1133
+ message: _builtins.str,
1134
+ related_resource_id: _builtins.str,
1135
+ time_created: _builtins.str,
1136
+ type: _builtins.str):
1137
+ """
1138
+ :param _builtins.str compartment_id: The OCID for the compartment.
1139
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1140
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1141
+ :param _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`
1142
+ :param _builtins.str type: Lock type.
1143
+ """
1144
+ pulumi.set(__self__, "compartment_id", compartment_id)
1145
+ pulumi.set(__self__, "message", message)
1146
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1147
+ pulumi.set(__self__, "time_created", time_created)
1148
+ pulumi.set(__self__, "type", type)
1149
+
1150
+ @_builtins.property
1151
+ @pulumi.getter(name="compartmentId")
1152
+ def compartment_id(self) -> _builtins.str:
1153
+ """
1154
+ The OCID for the compartment.
1155
+ """
1156
+ return pulumi.get(self, "compartment_id")
1157
+
1158
+ @_builtins.property
1159
+ @pulumi.getter
1160
+ def message(self) -> _builtins.str:
1161
+ """
1162
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1163
+ """
1164
+ return pulumi.get(self, "message")
1165
+
1166
+ @_builtins.property
1167
+ @pulumi.getter(name="relatedResourceId")
1168
+ def related_resource_id(self) -> _builtins.str:
1169
+ """
1170
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1171
+ """
1172
+ return pulumi.get(self, "related_resource_id")
1173
+
1174
+ @_builtins.property
1175
+ @pulumi.getter(name="timeCreated")
1176
+ def time_created(self) -> _builtins.str:
1177
+ """
1178
+ 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`
1179
+ """
1180
+ return pulumi.get(self, "time_created")
1181
+
1182
+ @_builtins.property
1183
+ @pulumi.getter
1184
+ def type(self) -> _builtins.str:
1185
+ """
1186
+ Lock type.
1187
+ """
1188
+ return pulumi.get(self, "type")
1189
+
1190
+
648
1191
  @pulumi.output_type
649
1192
  class GetEmailReturnPathsFilterResult(dict):
650
1193
  def __init__(__self__, *,
@@ -678,6 +1221,68 @@ class GetEmailReturnPathsFilterResult(dict):
678
1221
  return pulumi.get(self, "regex")
679
1222
 
680
1223
 
1224
+ @pulumi.output_type
1225
+ class GetSenderLockResult(dict):
1226
+ def __init__(__self__, *,
1227
+ compartment_id: _builtins.str,
1228
+ message: _builtins.str,
1229
+ related_resource_id: _builtins.str,
1230
+ time_created: _builtins.str,
1231
+ type: _builtins.str):
1232
+ """
1233
+ :param _builtins.str compartment_id: The lock compartment ID.
1234
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1235
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1236
+ :param _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).
1237
+ :param _builtins.str type: Lock type.
1238
+ """
1239
+ pulumi.set(__self__, "compartment_id", compartment_id)
1240
+ pulumi.set(__self__, "message", message)
1241
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1242
+ pulumi.set(__self__, "time_created", time_created)
1243
+ pulumi.set(__self__, "type", type)
1244
+
1245
+ @_builtins.property
1246
+ @pulumi.getter(name="compartmentId")
1247
+ def compartment_id(self) -> _builtins.str:
1248
+ """
1249
+ The lock compartment ID.
1250
+ """
1251
+ return pulumi.get(self, "compartment_id")
1252
+
1253
+ @_builtins.property
1254
+ @pulumi.getter
1255
+ def message(self) -> _builtins.str:
1256
+ """
1257
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1258
+ """
1259
+ return pulumi.get(self, "message")
1260
+
1261
+ @_builtins.property
1262
+ @pulumi.getter(name="relatedResourceId")
1263
+ def related_resource_id(self) -> _builtins.str:
1264
+ """
1265
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1266
+ """
1267
+ return pulumi.get(self, "related_resource_id")
1268
+
1269
+ @_builtins.property
1270
+ @pulumi.getter(name="timeCreated")
1271
+ def time_created(self) -> _builtins.str:
1272
+ """
1273
+ 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).
1274
+ """
1275
+ return pulumi.get(self, "time_created")
1276
+
1277
+ @_builtins.property
1278
+ @pulumi.getter
1279
+ def type(self) -> _builtins.str:
1280
+ """
1281
+ Lock type.
1282
+ """
1283
+ return pulumi.get(self, "type")
1284
+
1285
+
681
1286
  @pulumi.output_type
682
1287
  class GetSendersFilterResult(dict):
683
1288
  def __init__(__self__, *,
@@ -715,6 +1320,7 @@ class GetSendersSenderResult(dict):
715
1320
  freeform_tags: Mapping[str, _builtins.str],
716
1321
  id: _builtins.str,
717
1322
  is_spf: _builtins.bool,
1323
+ locks: Sequence['outputs.GetSendersSenderLockResult'],
718
1324
  state: _builtins.str,
719
1325
  system_tags: Mapping[str, _builtins.str],
720
1326
  time_created: _builtins.str):
@@ -726,6 +1332,7 @@ class GetSendersSenderResult(dict):
726
1332
  :param Mapping[str, _builtins.str] freeform_tags: 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"}`
727
1333
  :param _builtins.str id: The unique OCID of the sender.
728
1334
  :param _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).
1335
+ :param Sequence['GetSendersSenderLockArgs'] locks: Locks associated with this resource.
729
1336
  :param _builtins.str state: The current state of a sender.
730
1337
  :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
731
1338
  :param _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).
@@ -737,6 +1344,7 @@ class GetSendersSenderResult(dict):
737
1344
  pulumi.set(__self__, "freeform_tags", freeform_tags)
738
1345
  pulumi.set(__self__, "id", id)
739
1346
  pulumi.set(__self__, "is_spf", is_spf)
1347
+ pulumi.set(__self__, "locks", locks)
740
1348
  pulumi.set(__self__, "state", state)
741
1349
  pulumi.set(__self__, "system_tags", system_tags)
742
1350
  pulumi.set(__self__, "time_created", time_created)
@@ -797,6 +1405,14 @@ class GetSendersSenderResult(dict):
797
1405
  """
798
1406
  return pulumi.get(self, "is_spf")
799
1407
 
1408
+ @_builtins.property
1409
+ @pulumi.getter
1410
+ def locks(self) -> Sequence['outputs.GetSendersSenderLockResult']:
1411
+ """
1412
+ Locks associated with this resource.
1413
+ """
1414
+ return pulumi.get(self, "locks")
1415
+
800
1416
  @_builtins.property
801
1417
  @pulumi.getter
802
1418
  def state(self) -> _builtins.str:
@@ -822,6 +1438,68 @@ class GetSendersSenderResult(dict):
822
1438
  return pulumi.get(self, "time_created")
823
1439
 
824
1440
 
1441
+ @pulumi.output_type
1442
+ class GetSendersSenderLockResult(dict):
1443
+ def __init__(__self__, *,
1444
+ compartment_id: _builtins.str,
1445
+ message: _builtins.str,
1446
+ related_resource_id: _builtins.str,
1447
+ time_created: _builtins.str,
1448
+ type: _builtins.str):
1449
+ """
1450
+ :param _builtins.str compartment_id: The OCID for the compartment.
1451
+ :param _builtins.str message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1452
+ :param _builtins.str related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1453
+ :param _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).
1454
+ :param _builtins.str type: Lock type.
1455
+ """
1456
+ pulumi.set(__self__, "compartment_id", compartment_id)
1457
+ pulumi.set(__self__, "message", message)
1458
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1459
+ pulumi.set(__self__, "time_created", time_created)
1460
+ pulumi.set(__self__, "type", type)
1461
+
1462
+ @_builtins.property
1463
+ @pulumi.getter(name="compartmentId")
1464
+ def compartment_id(self) -> _builtins.str:
1465
+ """
1466
+ The OCID for the compartment.
1467
+ """
1468
+ return pulumi.get(self, "compartment_id")
1469
+
1470
+ @_builtins.property
1471
+ @pulumi.getter
1472
+ def message(self) -> _builtins.str:
1473
+ """
1474
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1475
+ """
1476
+ return pulumi.get(self, "message")
1477
+
1478
+ @_builtins.property
1479
+ @pulumi.getter(name="relatedResourceId")
1480
+ def related_resource_id(self) -> _builtins.str:
1481
+ """
1482
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1483
+ """
1484
+ return pulumi.get(self, "related_resource_id")
1485
+
1486
+ @_builtins.property
1487
+ @pulumi.getter(name="timeCreated")
1488
+ def time_created(self) -> _builtins.str:
1489
+ """
1490
+ 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).
1491
+ """
1492
+ return pulumi.get(self, "time_created")
1493
+
1494
+ @_builtins.property
1495
+ @pulumi.getter
1496
+ def type(self) -> _builtins.str:
1497
+ """
1498
+ Lock type.
1499
+ """
1500
+ return pulumi.get(self, "type")
1501
+
1502
+
825
1503
  @pulumi.output_type
826
1504
  class GetSuppressionsFilterResult(dict):
827
1505
  def __init__(__self__, *,