pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -17,37 +17,55 @@ from . import outputs
|
|
17
17
|
|
18
18
|
__all__ = [
|
19
19
|
'ExportExportOption',
|
20
|
+
'ExportLock',
|
21
|
+
'FileSystemLock',
|
20
22
|
'FileSystemSourceDetail',
|
23
|
+
'FilesystemSnapshotPolicyLock',
|
21
24
|
'FilesystemSnapshotPolicySchedule',
|
22
25
|
'MountTargetKerberos',
|
23
26
|
'MountTargetLdapIdmap',
|
27
|
+
'MountTargetLock',
|
24
28
|
'OutboundConnectorEndpoint',
|
29
|
+
'OutboundConnectorLock',
|
30
|
+
'ReplicationLock',
|
31
|
+
'SnapshotLock',
|
25
32
|
'GetExportSetsExportSetResult',
|
26
33
|
'GetExportSetsFilterResult',
|
27
34
|
'GetExportsExportResult',
|
28
35
|
'GetExportsExportExportOptionResult',
|
36
|
+
'GetExportsExportLockResult',
|
29
37
|
'GetExportsFilterResult',
|
30
38
|
'GetFileSystemsFileSystemResult',
|
39
|
+
'GetFileSystemsFileSystemLockResult',
|
31
40
|
'GetFileSystemsFileSystemSourceDetailResult',
|
32
41
|
'GetFileSystemsFilterResult',
|
33
42
|
'GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult',
|
43
|
+
'GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyLockResult',
|
34
44
|
'GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult',
|
35
45
|
'GetFilesystemSnapshotPoliciesFilterResult',
|
46
|
+
'GetFilesystemSnapshotPolicyLockResult',
|
36
47
|
'GetFilesystemSnapshotPolicyScheduleResult',
|
37
48
|
'GetMountTargetsFilterResult',
|
38
49
|
'GetMountTargetsMountTargetResult',
|
39
50
|
'GetMountTargetsMountTargetKerberoResult',
|
40
51
|
'GetMountTargetsMountTargetLdapIdmapResult',
|
52
|
+
'GetMountTargetsMountTargetLockResult',
|
41
53
|
'GetOutboundConnectorEndpointResult',
|
54
|
+
'GetOutboundConnectorLockResult',
|
42
55
|
'GetOutboundConnectorsFilterResult',
|
43
56
|
'GetOutboundConnectorsOutboundConnectorResult',
|
44
57
|
'GetOutboundConnectorsOutboundConnectorEndpointResult',
|
58
|
+
'GetOutboundConnectorsOutboundConnectorLockResult',
|
59
|
+
'GetReplicationLockResult',
|
45
60
|
'GetReplicationTargetsFilterResult',
|
46
61
|
'GetReplicationTargetsReplicationTargetResult',
|
47
62
|
'GetReplicationsFilterResult',
|
48
63
|
'GetReplicationsReplicationResult',
|
64
|
+
'GetReplicationsReplicationLockResult',
|
65
|
+
'GetSnapshotLockResult',
|
49
66
|
'GetSnapshotsFilterResult',
|
50
67
|
'GetSnapshotsSnapshotResult',
|
68
|
+
'GetSnapshotsSnapshotLockResult',
|
51
69
|
]
|
52
70
|
|
53
71
|
@pulumi.output_type
|
@@ -183,6 +201,152 @@ class ExportExportOption(dict):
|
|
183
201
|
return pulumi.get(self, "require_privileged_source_port")
|
184
202
|
|
185
203
|
|
204
|
+
@pulumi.output_type
|
205
|
+
class ExportLock(dict):
|
206
|
+
@staticmethod
|
207
|
+
def __key_warning(key: str):
|
208
|
+
suggest = None
|
209
|
+
if key == "relatedResourceId":
|
210
|
+
suggest = "related_resource_id"
|
211
|
+
elif key == "timeCreated":
|
212
|
+
suggest = "time_created"
|
213
|
+
|
214
|
+
if suggest:
|
215
|
+
pulumi.log.warn(f"Key '{key}' not found in ExportLock. Access the value via the '{suggest}' property getter instead.")
|
216
|
+
|
217
|
+
def __getitem__(self, key: str) -> Any:
|
218
|
+
ExportLock.__key_warning(key)
|
219
|
+
return super().__getitem__(key)
|
220
|
+
|
221
|
+
def get(self, key: str, default = None) -> Any:
|
222
|
+
ExportLock.__key_warning(key)
|
223
|
+
return super().get(key, default)
|
224
|
+
|
225
|
+
def __init__(__self__, *,
|
226
|
+
type: str,
|
227
|
+
message: Optional[str] = None,
|
228
|
+
related_resource_id: Optional[str] = None,
|
229
|
+
time_created: Optional[str] = None):
|
230
|
+
"""
|
231
|
+
:param str type: Type of the lock.
|
232
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
233
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
234
|
+
:param str time_created: When the lock was created.
|
235
|
+
"""
|
236
|
+
pulumi.set(__self__, "type", type)
|
237
|
+
if message is not None:
|
238
|
+
pulumi.set(__self__, "message", message)
|
239
|
+
if related_resource_id is not None:
|
240
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
241
|
+
if time_created is not None:
|
242
|
+
pulumi.set(__self__, "time_created", time_created)
|
243
|
+
|
244
|
+
@property
|
245
|
+
@pulumi.getter
|
246
|
+
def type(self) -> str:
|
247
|
+
"""
|
248
|
+
Type of the lock.
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "type")
|
251
|
+
|
252
|
+
@property
|
253
|
+
@pulumi.getter
|
254
|
+
def message(self) -> Optional[str]:
|
255
|
+
"""
|
256
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "message")
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="relatedResourceId")
|
262
|
+
def related_resource_id(self) -> Optional[str]:
|
263
|
+
"""
|
264
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "related_resource_id")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="timeCreated")
|
270
|
+
def time_created(self) -> Optional[str]:
|
271
|
+
"""
|
272
|
+
When the lock was created.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "time_created")
|
275
|
+
|
276
|
+
|
277
|
+
@pulumi.output_type
|
278
|
+
class FileSystemLock(dict):
|
279
|
+
@staticmethod
|
280
|
+
def __key_warning(key: str):
|
281
|
+
suggest = None
|
282
|
+
if key == "relatedResourceId":
|
283
|
+
suggest = "related_resource_id"
|
284
|
+
elif key == "timeCreated":
|
285
|
+
suggest = "time_created"
|
286
|
+
|
287
|
+
if suggest:
|
288
|
+
pulumi.log.warn(f"Key '{key}' not found in FileSystemLock. Access the value via the '{suggest}' property getter instead.")
|
289
|
+
|
290
|
+
def __getitem__(self, key: str) -> Any:
|
291
|
+
FileSystemLock.__key_warning(key)
|
292
|
+
return super().__getitem__(key)
|
293
|
+
|
294
|
+
def get(self, key: str, default = None) -> Any:
|
295
|
+
FileSystemLock.__key_warning(key)
|
296
|
+
return super().get(key, default)
|
297
|
+
|
298
|
+
def __init__(__self__, *,
|
299
|
+
type: str,
|
300
|
+
message: Optional[str] = None,
|
301
|
+
related_resource_id: Optional[str] = None,
|
302
|
+
time_created: Optional[str] = None):
|
303
|
+
"""
|
304
|
+
:param str type: Type of the lock.
|
305
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
306
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
307
|
+
:param str time_created: When the lock was created.
|
308
|
+
"""
|
309
|
+
pulumi.set(__self__, "type", type)
|
310
|
+
if message is not None:
|
311
|
+
pulumi.set(__self__, "message", message)
|
312
|
+
if related_resource_id is not None:
|
313
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
314
|
+
if time_created is not None:
|
315
|
+
pulumi.set(__self__, "time_created", time_created)
|
316
|
+
|
317
|
+
@property
|
318
|
+
@pulumi.getter
|
319
|
+
def type(self) -> str:
|
320
|
+
"""
|
321
|
+
Type of the lock.
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "type")
|
324
|
+
|
325
|
+
@property
|
326
|
+
@pulumi.getter
|
327
|
+
def message(self) -> Optional[str]:
|
328
|
+
"""
|
329
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
330
|
+
"""
|
331
|
+
return pulumi.get(self, "message")
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="relatedResourceId")
|
335
|
+
def related_resource_id(self) -> Optional[str]:
|
336
|
+
"""
|
337
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "related_resource_id")
|
340
|
+
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="timeCreated")
|
343
|
+
def time_created(self) -> Optional[str]:
|
344
|
+
"""
|
345
|
+
When the lock was created.
|
346
|
+
"""
|
347
|
+
return pulumi.get(self, "time_created")
|
348
|
+
|
349
|
+
|
186
350
|
@pulumi.output_type
|
187
351
|
class FileSystemSourceDetail(dict):
|
188
352
|
@staticmethod
|
@@ -233,6 +397,79 @@ class FileSystemSourceDetail(dict):
|
|
233
397
|
return pulumi.get(self, "source_snapshot_id")
|
234
398
|
|
235
399
|
|
400
|
+
@pulumi.output_type
|
401
|
+
class FilesystemSnapshotPolicyLock(dict):
|
402
|
+
@staticmethod
|
403
|
+
def __key_warning(key: str):
|
404
|
+
suggest = None
|
405
|
+
if key == "relatedResourceId":
|
406
|
+
suggest = "related_resource_id"
|
407
|
+
elif key == "timeCreated":
|
408
|
+
suggest = "time_created"
|
409
|
+
|
410
|
+
if suggest:
|
411
|
+
pulumi.log.warn(f"Key '{key}' not found in FilesystemSnapshotPolicyLock. Access the value via the '{suggest}' property getter instead.")
|
412
|
+
|
413
|
+
def __getitem__(self, key: str) -> Any:
|
414
|
+
FilesystemSnapshotPolicyLock.__key_warning(key)
|
415
|
+
return super().__getitem__(key)
|
416
|
+
|
417
|
+
def get(self, key: str, default = None) -> Any:
|
418
|
+
FilesystemSnapshotPolicyLock.__key_warning(key)
|
419
|
+
return super().get(key, default)
|
420
|
+
|
421
|
+
def __init__(__self__, *,
|
422
|
+
type: str,
|
423
|
+
message: Optional[str] = None,
|
424
|
+
related_resource_id: Optional[str] = None,
|
425
|
+
time_created: Optional[str] = None):
|
426
|
+
"""
|
427
|
+
:param str type: Type of the lock.
|
428
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
429
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
430
|
+
:param str time_created: When the lock was created.
|
431
|
+
"""
|
432
|
+
pulumi.set(__self__, "type", type)
|
433
|
+
if message is not None:
|
434
|
+
pulumi.set(__self__, "message", message)
|
435
|
+
if related_resource_id is not None:
|
436
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
437
|
+
if time_created is not None:
|
438
|
+
pulumi.set(__self__, "time_created", time_created)
|
439
|
+
|
440
|
+
@property
|
441
|
+
@pulumi.getter
|
442
|
+
def type(self) -> str:
|
443
|
+
"""
|
444
|
+
Type of the lock.
|
445
|
+
"""
|
446
|
+
return pulumi.get(self, "type")
|
447
|
+
|
448
|
+
@property
|
449
|
+
@pulumi.getter
|
450
|
+
def message(self) -> Optional[str]:
|
451
|
+
"""
|
452
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
453
|
+
"""
|
454
|
+
return pulumi.get(self, "message")
|
455
|
+
|
456
|
+
@property
|
457
|
+
@pulumi.getter(name="relatedResourceId")
|
458
|
+
def related_resource_id(self) -> Optional[str]:
|
459
|
+
"""
|
460
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
461
|
+
"""
|
462
|
+
return pulumi.get(self, "related_resource_id")
|
463
|
+
|
464
|
+
@property
|
465
|
+
@pulumi.getter(name="timeCreated")
|
466
|
+
def time_created(self) -> Optional[str]:
|
467
|
+
"""
|
468
|
+
When the lock was created.
|
469
|
+
"""
|
470
|
+
return pulumi.get(self, "time_created")
|
471
|
+
|
472
|
+
|
236
473
|
@pulumi.output_type
|
237
474
|
class FilesystemSnapshotPolicySchedule(dict):
|
238
475
|
@staticmethod
|
@@ -600,6 +837,79 @@ class MountTargetLdapIdmap(dict):
|
|
600
837
|
return pulumi.get(self, "user_search_base")
|
601
838
|
|
602
839
|
|
840
|
+
@pulumi.output_type
|
841
|
+
class MountTargetLock(dict):
|
842
|
+
@staticmethod
|
843
|
+
def __key_warning(key: str):
|
844
|
+
suggest = None
|
845
|
+
if key == "relatedResourceId":
|
846
|
+
suggest = "related_resource_id"
|
847
|
+
elif key == "timeCreated":
|
848
|
+
suggest = "time_created"
|
849
|
+
|
850
|
+
if suggest:
|
851
|
+
pulumi.log.warn(f"Key '{key}' not found in MountTargetLock. Access the value via the '{suggest}' property getter instead.")
|
852
|
+
|
853
|
+
def __getitem__(self, key: str) -> Any:
|
854
|
+
MountTargetLock.__key_warning(key)
|
855
|
+
return super().__getitem__(key)
|
856
|
+
|
857
|
+
def get(self, key: str, default = None) -> Any:
|
858
|
+
MountTargetLock.__key_warning(key)
|
859
|
+
return super().get(key, default)
|
860
|
+
|
861
|
+
def __init__(__self__, *,
|
862
|
+
type: str,
|
863
|
+
message: Optional[str] = None,
|
864
|
+
related_resource_id: Optional[str] = None,
|
865
|
+
time_created: Optional[str] = None):
|
866
|
+
"""
|
867
|
+
:param str type: Type of the lock.
|
868
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
869
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
870
|
+
:param str time_created: When the lock was created.
|
871
|
+
"""
|
872
|
+
pulumi.set(__self__, "type", type)
|
873
|
+
if message is not None:
|
874
|
+
pulumi.set(__self__, "message", message)
|
875
|
+
if related_resource_id is not None:
|
876
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
877
|
+
if time_created is not None:
|
878
|
+
pulumi.set(__self__, "time_created", time_created)
|
879
|
+
|
880
|
+
@property
|
881
|
+
@pulumi.getter
|
882
|
+
def type(self) -> str:
|
883
|
+
"""
|
884
|
+
Type of the lock.
|
885
|
+
"""
|
886
|
+
return pulumi.get(self, "type")
|
887
|
+
|
888
|
+
@property
|
889
|
+
@pulumi.getter
|
890
|
+
def message(self) -> Optional[str]:
|
891
|
+
"""
|
892
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
893
|
+
"""
|
894
|
+
return pulumi.get(self, "message")
|
895
|
+
|
896
|
+
@property
|
897
|
+
@pulumi.getter(name="relatedResourceId")
|
898
|
+
def related_resource_id(self) -> Optional[str]:
|
899
|
+
"""
|
900
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
901
|
+
"""
|
902
|
+
return pulumi.get(self, "related_resource_id")
|
903
|
+
|
904
|
+
@property
|
905
|
+
@pulumi.getter(name="timeCreated")
|
906
|
+
def time_created(self) -> Optional[str]:
|
907
|
+
"""
|
908
|
+
When the lock was created.
|
909
|
+
"""
|
910
|
+
return pulumi.get(self, "time_created")
|
911
|
+
|
912
|
+
|
603
913
|
@pulumi.output_type
|
604
914
|
class OutboundConnectorEndpoint(dict):
|
605
915
|
def __init__(__self__, *,
|
@@ -629,6 +939,225 @@ class OutboundConnectorEndpoint(dict):
|
|
629
939
|
return pulumi.get(self, "port")
|
630
940
|
|
631
941
|
|
942
|
+
@pulumi.output_type
|
943
|
+
class OutboundConnectorLock(dict):
|
944
|
+
@staticmethod
|
945
|
+
def __key_warning(key: str):
|
946
|
+
suggest = None
|
947
|
+
if key == "relatedResourceId":
|
948
|
+
suggest = "related_resource_id"
|
949
|
+
elif key == "timeCreated":
|
950
|
+
suggest = "time_created"
|
951
|
+
|
952
|
+
if suggest:
|
953
|
+
pulumi.log.warn(f"Key '{key}' not found in OutboundConnectorLock. Access the value via the '{suggest}' property getter instead.")
|
954
|
+
|
955
|
+
def __getitem__(self, key: str) -> Any:
|
956
|
+
OutboundConnectorLock.__key_warning(key)
|
957
|
+
return super().__getitem__(key)
|
958
|
+
|
959
|
+
def get(self, key: str, default = None) -> Any:
|
960
|
+
OutboundConnectorLock.__key_warning(key)
|
961
|
+
return super().get(key, default)
|
962
|
+
|
963
|
+
def __init__(__self__, *,
|
964
|
+
type: str,
|
965
|
+
message: Optional[str] = None,
|
966
|
+
related_resource_id: Optional[str] = None,
|
967
|
+
time_created: Optional[str] = None):
|
968
|
+
"""
|
969
|
+
:param str type: Type of the lock.
|
970
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
971
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
972
|
+
:param str time_created: When the lock was created.
|
973
|
+
"""
|
974
|
+
pulumi.set(__self__, "type", type)
|
975
|
+
if message is not None:
|
976
|
+
pulumi.set(__self__, "message", message)
|
977
|
+
if related_resource_id is not None:
|
978
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
979
|
+
if time_created is not None:
|
980
|
+
pulumi.set(__self__, "time_created", time_created)
|
981
|
+
|
982
|
+
@property
|
983
|
+
@pulumi.getter
|
984
|
+
def type(self) -> str:
|
985
|
+
"""
|
986
|
+
Type of the lock.
|
987
|
+
"""
|
988
|
+
return pulumi.get(self, "type")
|
989
|
+
|
990
|
+
@property
|
991
|
+
@pulumi.getter
|
992
|
+
def message(self) -> Optional[str]:
|
993
|
+
"""
|
994
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
995
|
+
"""
|
996
|
+
return pulumi.get(self, "message")
|
997
|
+
|
998
|
+
@property
|
999
|
+
@pulumi.getter(name="relatedResourceId")
|
1000
|
+
def related_resource_id(self) -> Optional[str]:
|
1001
|
+
"""
|
1002
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1003
|
+
"""
|
1004
|
+
return pulumi.get(self, "related_resource_id")
|
1005
|
+
|
1006
|
+
@property
|
1007
|
+
@pulumi.getter(name="timeCreated")
|
1008
|
+
def time_created(self) -> Optional[str]:
|
1009
|
+
"""
|
1010
|
+
When the lock was created.
|
1011
|
+
"""
|
1012
|
+
return pulumi.get(self, "time_created")
|
1013
|
+
|
1014
|
+
|
1015
|
+
@pulumi.output_type
|
1016
|
+
class ReplicationLock(dict):
|
1017
|
+
@staticmethod
|
1018
|
+
def __key_warning(key: str):
|
1019
|
+
suggest = None
|
1020
|
+
if key == "relatedResourceId":
|
1021
|
+
suggest = "related_resource_id"
|
1022
|
+
elif key == "timeCreated":
|
1023
|
+
suggest = "time_created"
|
1024
|
+
|
1025
|
+
if suggest:
|
1026
|
+
pulumi.log.warn(f"Key '{key}' not found in ReplicationLock. Access the value via the '{suggest}' property getter instead.")
|
1027
|
+
|
1028
|
+
def __getitem__(self, key: str) -> Any:
|
1029
|
+
ReplicationLock.__key_warning(key)
|
1030
|
+
return super().__getitem__(key)
|
1031
|
+
|
1032
|
+
def get(self, key: str, default = None) -> Any:
|
1033
|
+
ReplicationLock.__key_warning(key)
|
1034
|
+
return super().get(key, default)
|
1035
|
+
|
1036
|
+
def __init__(__self__, *,
|
1037
|
+
type: str,
|
1038
|
+
message: Optional[str] = None,
|
1039
|
+
related_resource_id: Optional[str] = None,
|
1040
|
+
time_created: Optional[str] = None):
|
1041
|
+
"""
|
1042
|
+
:param str type: Type of the lock.
|
1043
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1044
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1045
|
+
:param str time_created: When the lock was created.
|
1046
|
+
"""
|
1047
|
+
pulumi.set(__self__, "type", type)
|
1048
|
+
if message is not None:
|
1049
|
+
pulumi.set(__self__, "message", message)
|
1050
|
+
if related_resource_id is not None:
|
1051
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1052
|
+
if time_created is not None:
|
1053
|
+
pulumi.set(__self__, "time_created", time_created)
|
1054
|
+
|
1055
|
+
@property
|
1056
|
+
@pulumi.getter
|
1057
|
+
def type(self) -> str:
|
1058
|
+
"""
|
1059
|
+
Type of the lock.
|
1060
|
+
"""
|
1061
|
+
return pulumi.get(self, "type")
|
1062
|
+
|
1063
|
+
@property
|
1064
|
+
@pulumi.getter
|
1065
|
+
def message(self) -> Optional[str]:
|
1066
|
+
"""
|
1067
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1068
|
+
"""
|
1069
|
+
return pulumi.get(self, "message")
|
1070
|
+
|
1071
|
+
@property
|
1072
|
+
@pulumi.getter(name="relatedResourceId")
|
1073
|
+
def related_resource_id(self) -> Optional[str]:
|
1074
|
+
"""
|
1075
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1076
|
+
"""
|
1077
|
+
return pulumi.get(self, "related_resource_id")
|
1078
|
+
|
1079
|
+
@property
|
1080
|
+
@pulumi.getter(name="timeCreated")
|
1081
|
+
def time_created(self) -> Optional[str]:
|
1082
|
+
"""
|
1083
|
+
When the lock was created.
|
1084
|
+
"""
|
1085
|
+
return pulumi.get(self, "time_created")
|
1086
|
+
|
1087
|
+
|
1088
|
+
@pulumi.output_type
|
1089
|
+
class SnapshotLock(dict):
|
1090
|
+
@staticmethod
|
1091
|
+
def __key_warning(key: str):
|
1092
|
+
suggest = None
|
1093
|
+
if key == "relatedResourceId":
|
1094
|
+
suggest = "related_resource_id"
|
1095
|
+
elif key == "timeCreated":
|
1096
|
+
suggest = "time_created"
|
1097
|
+
|
1098
|
+
if suggest:
|
1099
|
+
pulumi.log.warn(f"Key '{key}' not found in SnapshotLock. Access the value via the '{suggest}' property getter instead.")
|
1100
|
+
|
1101
|
+
def __getitem__(self, key: str) -> Any:
|
1102
|
+
SnapshotLock.__key_warning(key)
|
1103
|
+
return super().__getitem__(key)
|
1104
|
+
|
1105
|
+
def get(self, key: str, default = None) -> Any:
|
1106
|
+
SnapshotLock.__key_warning(key)
|
1107
|
+
return super().get(key, default)
|
1108
|
+
|
1109
|
+
def __init__(__self__, *,
|
1110
|
+
type: str,
|
1111
|
+
message: Optional[str] = None,
|
1112
|
+
related_resource_id: Optional[str] = None,
|
1113
|
+
time_created: Optional[str] = None):
|
1114
|
+
"""
|
1115
|
+
:param str type: Type of the lock.
|
1116
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1117
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1118
|
+
:param str time_created: When the lock was created.
|
1119
|
+
"""
|
1120
|
+
pulumi.set(__self__, "type", type)
|
1121
|
+
if message is not None:
|
1122
|
+
pulumi.set(__self__, "message", message)
|
1123
|
+
if related_resource_id is not None:
|
1124
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1125
|
+
if time_created is not None:
|
1126
|
+
pulumi.set(__self__, "time_created", time_created)
|
1127
|
+
|
1128
|
+
@property
|
1129
|
+
@pulumi.getter
|
1130
|
+
def type(self) -> str:
|
1131
|
+
"""
|
1132
|
+
Type of the lock.
|
1133
|
+
"""
|
1134
|
+
return pulumi.get(self, "type")
|
1135
|
+
|
1136
|
+
@property
|
1137
|
+
@pulumi.getter
|
1138
|
+
def message(self) -> Optional[str]:
|
1139
|
+
"""
|
1140
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1141
|
+
"""
|
1142
|
+
return pulumi.get(self, "message")
|
1143
|
+
|
1144
|
+
@property
|
1145
|
+
@pulumi.getter(name="relatedResourceId")
|
1146
|
+
def related_resource_id(self) -> Optional[str]:
|
1147
|
+
"""
|
1148
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1149
|
+
"""
|
1150
|
+
return pulumi.get(self, "related_resource_id")
|
1151
|
+
|
1152
|
+
@property
|
1153
|
+
@pulumi.getter(name="timeCreated")
|
1154
|
+
def time_created(self) -> Optional[str]:
|
1155
|
+
"""
|
1156
|
+
When the lock was created.
|
1157
|
+
"""
|
1158
|
+
return pulumi.get(self, "time_created")
|
1159
|
+
|
1160
|
+
|
632
1161
|
@pulumi.output_type
|
633
1162
|
class GetExportSetsExportSetResult(dict):
|
634
1163
|
def __init__(__self__, *,
|
@@ -777,6 +1306,8 @@ class GetExportsExportResult(dict):
|
|
777
1306
|
file_system_id: str,
|
778
1307
|
id: str,
|
779
1308
|
is_idmap_groups_for_sys_auth: bool,
|
1309
|
+
is_lock_override: bool,
|
1310
|
+
locks: Sequence['outputs.GetExportsExportLockResult'],
|
780
1311
|
path: str,
|
781
1312
|
state: str,
|
782
1313
|
time_created: str):
|
@@ -786,6 +1317,7 @@ class GetExportsExportResult(dict):
|
|
786
1317
|
:param str file_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the file system.
|
787
1318
|
:param str id: Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resouce type.
|
788
1319
|
:param bool is_idmap_groups_for_sys_auth: Whether or not the export should use ID mapping for Unix groups rather than the group list provided within an NFS request's RPC header. When this flag is true the Unix UID from the RPC header is used to retrieve the list of secondary groups from a the ID mapping subsystem. The primary GID is always taken from the RPC header. If ID mapping is not configured, incorrectly configured, unavailable, or cannot be used to determine a list of secondary groups then an empty secondary group list is used for authorization. If the number of groups exceeds the limit of 256 groups, the list retrieved from LDAP is truncated to the first 256 groups read.
|
1320
|
+
:param Sequence['GetExportsExportLockArgs'] locks: Locks associated with this resource.
|
789
1321
|
:param str path: Path used to access the associated file system.
|
790
1322
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
791
1323
|
:param str time_created: The date and time the export was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
@@ -795,6 +1327,8 @@ class GetExportsExportResult(dict):
|
|
795
1327
|
pulumi.set(__self__, "file_system_id", file_system_id)
|
796
1328
|
pulumi.set(__self__, "id", id)
|
797
1329
|
pulumi.set(__self__, "is_idmap_groups_for_sys_auth", is_idmap_groups_for_sys_auth)
|
1330
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
1331
|
+
pulumi.set(__self__, "locks", locks)
|
798
1332
|
pulumi.set(__self__, "path", path)
|
799
1333
|
pulumi.set(__self__, "state", state)
|
800
1334
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -839,6 +1373,19 @@ class GetExportsExportResult(dict):
|
|
839
1373
|
"""
|
840
1374
|
return pulumi.get(self, "is_idmap_groups_for_sys_auth")
|
841
1375
|
|
1376
|
+
@property
|
1377
|
+
@pulumi.getter(name="isLockOverride")
|
1378
|
+
def is_lock_override(self) -> bool:
|
1379
|
+
return pulumi.get(self, "is_lock_override")
|
1380
|
+
|
1381
|
+
@property
|
1382
|
+
@pulumi.getter
|
1383
|
+
def locks(self) -> Sequence['outputs.GetExportsExportLockResult']:
|
1384
|
+
"""
|
1385
|
+
Locks associated with this resource.
|
1386
|
+
"""
|
1387
|
+
return pulumi.get(self, "locks")
|
1388
|
+
|
842
1389
|
@property
|
843
1390
|
@pulumi.getter
|
844
1391
|
def path(self) -> str:
|
@@ -959,6 +1506,57 @@ class GetExportsExportExportOptionResult(dict):
|
|
959
1506
|
return pulumi.get(self, "source")
|
960
1507
|
|
961
1508
|
|
1509
|
+
@pulumi.output_type
|
1510
|
+
class GetExportsExportLockResult(dict):
|
1511
|
+
def __init__(__self__, *,
|
1512
|
+
message: str,
|
1513
|
+
related_resource_id: str,
|
1514
|
+
time_created: str,
|
1515
|
+
type: str):
|
1516
|
+
"""
|
1517
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1518
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1519
|
+
:param str time_created: The date and time the export was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1520
|
+
:param str type: Type of the lock.
|
1521
|
+
"""
|
1522
|
+
pulumi.set(__self__, "message", message)
|
1523
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1524
|
+
pulumi.set(__self__, "time_created", time_created)
|
1525
|
+
pulumi.set(__self__, "type", type)
|
1526
|
+
|
1527
|
+
@property
|
1528
|
+
@pulumi.getter
|
1529
|
+
def message(self) -> str:
|
1530
|
+
"""
|
1531
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1532
|
+
"""
|
1533
|
+
return pulumi.get(self, "message")
|
1534
|
+
|
1535
|
+
@property
|
1536
|
+
@pulumi.getter(name="relatedResourceId")
|
1537
|
+
def related_resource_id(self) -> str:
|
1538
|
+
"""
|
1539
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1540
|
+
"""
|
1541
|
+
return pulumi.get(self, "related_resource_id")
|
1542
|
+
|
1543
|
+
@property
|
1544
|
+
@pulumi.getter(name="timeCreated")
|
1545
|
+
def time_created(self) -> str:
|
1546
|
+
"""
|
1547
|
+
The date and time the export was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1548
|
+
"""
|
1549
|
+
return pulumi.get(self, "time_created")
|
1550
|
+
|
1551
|
+
@property
|
1552
|
+
@pulumi.getter
|
1553
|
+
def type(self) -> str:
|
1554
|
+
"""
|
1555
|
+
Type of the lock.
|
1556
|
+
"""
|
1557
|
+
return pulumi.get(self, "type")
|
1558
|
+
|
1559
|
+
|
962
1560
|
@pulumi.output_type
|
963
1561
|
class GetExportsFilterResult(dict):
|
964
1562
|
def __init__(__self__, *,
|
@@ -1001,9 +1599,11 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1001
1599
|
id: str,
|
1002
1600
|
is_clone_parent: bool,
|
1003
1601
|
is_hydrated: bool,
|
1602
|
+
is_lock_override: bool,
|
1004
1603
|
is_targetable: bool,
|
1005
1604
|
kms_key_id: str,
|
1006
1605
|
lifecycle_details: str,
|
1606
|
+
locks: Sequence['outputs.GetFileSystemsFileSystemLockResult'],
|
1007
1607
|
metered_bytes: str,
|
1008
1608
|
replication_target_id: str,
|
1009
1609
|
source_details: Sequence['outputs.GetFileSystemsFileSystemSourceDetailResult'],
|
@@ -1025,6 +1625,7 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1025
1625
|
:param bool is_targetable: Specifies whether the file system can be used as a target file system for replication. The system sets this value to `true` if the file system is unexported, hasn't yet been specified as a target file system in any replication resource, and has no user snapshots. After the file system has been specified as a target in a replication, or if the file system contains user snapshots, the system sets this value to `false`. For more information, see [Using Replication](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/using-replication.htm).
|
1026
1626
|
:param str kms_key_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KMS key used to encrypt the encryption keys associated with this file system.
|
1027
1627
|
:param str lifecycle_details: Additional information about the current 'lifecycleState'.
|
1628
|
+
:param Sequence['GetFileSystemsFileSystemLockArgs'] locks: Locks associated with this resource.
|
1028
1629
|
:param str metered_bytes: The number of bytes consumed by the file system, including any snapshots. This number reflects the metered size of the file system and is updated asynchronously with respect to updates to the file system. For more information, see [File System Usage and Metering](https://docs.cloud.oracle.com/iaas/Content/File/Concepts/FSutilization.htm).
|
1029
1630
|
:param str replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the replication target associated with the file system. Empty if the file system is not being used as target in a replication.
|
1030
1631
|
:param Sequence['GetFileSystemsFileSystemSourceDetailArgs'] source_details: Source information for the file system.
|
@@ -1044,9 +1645,11 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1044
1645
|
pulumi.set(__self__, "id", id)
|
1045
1646
|
pulumi.set(__self__, "is_clone_parent", is_clone_parent)
|
1046
1647
|
pulumi.set(__self__, "is_hydrated", is_hydrated)
|
1648
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
1047
1649
|
pulumi.set(__self__, "is_targetable", is_targetable)
|
1048
1650
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
1049
1651
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1652
|
+
pulumi.set(__self__, "locks", locks)
|
1050
1653
|
pulumi.set(__self__, "metered_bytes", metered_bytes)
|
1051
1654
|
pulumi.set(__self__, "replication_target_id", replication_target_id)
|
1052
1655
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -1147,6 +1750,11 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1147
1750
|
"""
|
1148
1751
|
return pulumi.get(self, "is_hydrated")
|
1149
1752
|
|
1753
|
+
@property
|
1754
|
+
@pulumi.getter(name="isLockOverride")
|
1755
|
+
def is_lock_override(self) -> bool:
|
1756
|
+
return pulumi.get(self, "is_lock_override")
|
1757
|
+
|
1150
1758
|
@property
|
1151
1759
|
@pulumi.getter(name="isTargetable")
|
1152
1760
|
def is_targetable(self) -> bool:
|
@@ -1171,6 +1779,14 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1171
1779
|
"""
|
1172
1780
|
return pulumi.get(self, "lifecycle_details")
|
1173
1781
|
|
1782
|
+
@property
|
1783
|
+
@pulumi.getter
|
1784
|
+
def locks(self) -> Sequence['outputs.GetFileSystemsFileSystemLockResult']:
|
1785
|
+
"""
|
1786
|
+
Locks associated with this resource.
|
1787
|
+
"""
|
1788
|
+
return pulumi.get(self, "locks")
|
1789
|
+
|
1174
1790
|
@property
|
1175
1791
|
@pulumi.getter(name="meteredBytes")
|
1176
1792
|
def metered_bytes(self) -> str:
|
@@ -1220,6 +1836,57 @@ class GetFileSystemsFileSystemResult(dict):
|
|
1220
1836
|
return pulumi.get(self, "time_created")
|
1221
1837
|
|
1222
1838
|
|
1839
|
+
@pulumi.output_type
|
1840
|
+
class GetFileSystemsFileSystemLockResult(dict):
|
1841
|
+
def __init__(__self__, *,
|
1842
|
+
message: str,
|
1843
|
+
related_resource_id: str,
|
1844
|
+
time_created: str,
|
1845
|
+
type: str):
|
1846
|
+
"""
|
1847
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1848
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1849
|
+
:param str time_created: The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1850
|
+
:param str type: Type of the lock.
|
1851
|
+
"""
|
1852
|
+
pulumi.set(__self__, "message", message)
|
1853
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
1854
|
+
pulumi.set(__self__, "time_created", time_created)
|
1855
|
+
pulumi.set(__self__, "type", type)
|
1856
|
+
|
1857
|
+
@property
|
1858
|
+
@pulumi.getter
|
1859
|
+
def message(self) -> str:
|
1860
|
+
"""
|
1861
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
1862
|
+
"""
|
1863
|
+
return pulumi.get(self, "message")
|
1864
|
+
|
1865
|
+
@property
|
1866
|
+
@pulumi.getter(name="relatedResourceId")
|
1867
|
+
def related_resource_id(self) -> str:
|
1868
|
+
"""
|
1869
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
1870
|
+
"""
|
1871
|
+
return pulumi.get(self, "related_resource_id")
|
1872
|
+
|
1873
|
+
@property
|
1874
|
+
@pulumi.getter(name="timeCreated")
|
1875
|
+
def time_created(self) -> str:
|
1876
|
+
"""
|
1877
|
+
The date and time the file system was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
1878
|
+
"""
|
1879
|
+
return pulumi.get(self, "time_created")
|
1880
|
+
|
1881
|
+
@property
|
1882
|
+
@pulumi.getter
|
1883
|
+
def type(self) -> str:
|
1884
|
+
"""
|
1885
|
+
Type of the lock.
|
1886
|
+
"""
|
1887
|
+
return pulumi.get(self, "type")
|
1888
|
+
|
1889
|
+
|
1223
1890
|
@pulumi.output_type
|
1224
1891
|
class GetFileSystemsFileSystemSourceDetailResult(dict):
|
1225
1892
|
def __init__(__self__, *,
|
@@ -1285,6 +1952,8 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1285
1952
|
display_name: str,
|
1286
1953
|
freeform_tags: Mapping[str, str],
|
1287
1954
|
id: str,
|
1955
|
+
is_lock_override: bool,
|
1956
|
+
locks: Sequence['outputs.GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyLockResult'],
|
1288
1957
|
policy_prefix: str,
|
1289
1958
|
schedules: Sequence['outputs.GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult'],
|
1290
1959
|
state: str,
|
@@ -1296,6 +1965,7 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1296
1965
|
:param str display_name: A user-friendly name. It does not have to be unique, and it is changeable. Example: `My resource`
|
1297
1966
|
:param Mapping[str, 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"}`
|
1298
1967
|
:param str id: Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resouce type.
|
1968
|
+
:param Sequence['GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyLockArgs'] locks: Locks associated with this resource.
|
1299
1969
|
:param str policy_prefix: The prefix to apply to all snapshots created by this policy. Example: `acme`
|
1300
1970
|
:param Sequence['GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleArgs'] schedules: The list of associated snapshot schedules. A maximum of 10 schedules can be associated with a policy.
|
1301
1971
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
@@ -1307,6 +1977,8 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1307
1977
|
pulumi.set(__self__, "display_name", display_name)
|
1308
1978
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1309
1979
|
pulumi.set(__self__, "id", id)
|
1980
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
1981
|
+
pulumi.set(__self__, "locks", locks)
|
1310
1982
|
pulumi.set(__self__, "policy_prefix", policy_prefix)
|
1311
1983
|
pulumi.set(__self__, "schedules", schedules)
|
1312
1984
|
pulumi.set(__self__, "state", state)
|
@@ -1360,6 +2032,19 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1360
2032
|
"""
|
1361
2033
|
return pulumi.get(self, "id")
|
1362
2034
|
|
2035
|
+
@property
|
2036
|
+
@pulumi.getter(name="isLockOverride")
|
2037
|
+
def is_lock_override(self) -> bool:
|
2038
|
+
return pulumi.get(self, "is_lock_override")
|
2039
|
+
|
2040
|
+
@property
|
2041
|
+
@pulumi.getter
|
2042
|
+
def locks(self) -> Sequence['outputs.GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyLockResult']:
|
2043
|
+
"""
|
2044
|
+
Locks associated with this resource.
|
2045
|
+
"""
|
2046
|
+
return pulumi.get(self, "locks")
|
2047
|
+
|
1363
2048
|
@property
|
1364
2049
|
@pulumi.getter(name="policyPrefix")
|
1365
2050
|
def policy_prefix(self) -> str:
|
@@ -1393,6 +2078,57 @@ class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyResult(dict):
|
|
1393
2078
|
return pulumi.get(self, "time_created")
|
1394
2079
|
|
1395
2080
|
|
2081
|
+
@pulumi.output_type
|
2082
|
+
class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyLockResult(dict):
|
2083
|
+
def __init__(__self__, *,
|
2084
|
+
message: str,
|
2085
|
+
related_resource_id: str,
|
2086
|
+
time_created: str,
|
2087
|
+
type: str):
|
2088
|
+
"""
|
2089
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2090
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2091
|
+
:param str time_created: The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2092
|
+
:param str type: Type of the lock.
|
2093
|
+
"""
|
2094
|
+
pulumi.set(__self__, "message", message)
|
2095
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
2096
|
+
pulumi.set(__self__, "time_created", time_created)
|
2097
|
+
pulumi.set(__self__, "type", type)
|
2098
|
+
|
2099
|
+
@property
|
2100
|
+
@pulumi.getter
|
2101
|
+
def message(self) -> str:
|
2102
|
+
"""
|
2103
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2104
|
+
"""
|
2105
|
+
return pulumi.get(self, "message")
|
2106
|
+
|
2107
|
+
@property
|
2108
|
+
@pulumi.getter(name="relatedResourceId")
|
2109
|
+
def related_resource_id(self) -> str:
|
2110
|
+
"""
|
2111
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2112
|
+
"""
|
2113
|
+
return pulumi.get(self, "related_resource_id")
|
2114
|
+
|
2115
|
+
@property
|
2116
|
+
@pulumi.getter(name="timeCreated")
|
2117
|
+
def time_created(self) -> str:
|
2118
|
+
"""
|
2119
|
+
The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2120
|
+
"""
|
2121
|
+
return pulumi.get(self, "time_created")
|
2122
|
+
|
2123
|
+
@property
|
2124
|
+
@pulumi.getter
|
2125
|
+
def type(self) -> str:
|
2126
|
+
"""
|
2127
|
+
Type of the lock.
|
2128
|
+
"""
|
2129
|
+
return pulumi.get(self, "type")
|
2130
|
+
|
2131
|
+
|
1396
2132
|
@pulumi.output_type
|
1397
2133
|
class GetFilesystemSnapshotPoliciesFilesystemSnapshotPolicyScheduleResult(dict):
|
1398
2134
|
def __init__(__self__, *,
|
@@ -1522,8 +2258,59 @@ class GetFilesystemSnapshotPoliciesFilterResult(dict):
|
|
1522
2258
|
|
1523
2259
|
@property
|
1524
2260
|
@pulumi.getter
|
1525
|
-
def regex(self) -> Optional[bool]:
|
1526
|
-
return pulumi.get(self, "regex")
|
2261
|
+
def regex(self) -> Optional[bool]:
|
2262
|
+
return pulumi.get(self, "regex")
|
2263
|
+
|
2264
|
+
|
2265
|
+
@pulumi.output_type
|
2266
|
+
class GetFilesystemSnapshotPolicyLockResult(dict):
|
2267
|
+
def __init__(__self__, *,
|
2268
|
+
message: str,
|
2269
|
+
related_resource_id: str,
|
2270
|
+
time_created: str,
|
2271
|
+
type: str):
|
2272
|
+
"""
|
2273
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2274
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2275
|
+
:param str time_created: The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2276
|
+
:param str type: Type of the lock.
|
2277
|
+
"""
|
2278
|
+
pulumi.set(__self__, "message", message)
|
2279
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
2280
|
+
pulumi.set(__self__, "time_created", time_created)
|
2281
|
+
pulumi.set(__self__, "type", type)
|
2282
|
+
|
2283
|
+
@property
|
2284
|
+
@pulumi.getter
|
2285
|
+
def message(self) -> str:
|
2286
|
+
"""
|
2287
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2288
|
+
"""
|
2289
|
+
return pulumi.get(self, "message")
|
2290
|
+
|
2291
|
+
@property
|
2292
|
+
@pulumi.getter(name="relatedResourceId")
|
2293
|
+
def related_resource_id(self) -> str:
|
2294
|
+
"""
|
2295
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2296
|
+
"""
|
2297
|
+
return pulumi.get(self, "related_resource_id")
|
2298
|
+
|
2299
|
+
@property
|
2300
|
+
@pulumi.getter(name="timeCreated")
|
2301
|
+
def time_created(self) -> str:
|
2302
|
+
"""
|
2303
|
+
The date and time the file system snapshot policy was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2304
|
+
"""
|
2305
|
+
return pulumi.get(self, "time_created")
|
2306
|
+
|
2307
|
+
@property
|
2308
|
+
@pulumi.getter
|
2309
|
+
def type(self) -> str:
|
2310
|
+
"""
|
2311
|
+
Type of the lock.
|
2312
|
+
"""
|
2313
|
+
return pulumi.get(self, "type")
|
1527
2314
|
|
1528
2315
|
|
1529
2316
|
@pulumi.output_type
|
@@ -1672,9 +2459,11 @@ class GetMountTargetsMountTargetResult(dict):
|
|
1672
2459
|
id: str,
|
1673
2460
|
idmap_type: str,
|
1674
2461
|
ip_address: str,
|
2462
|
+
is_lock_override: bool,
|
1675
2463
|
kerberos: Sequence['outputs.GetMountTargetsMountTargetKerberoResult'],
|
1676
2464
|
ldap_idmaps: Sequence['outputs.GetMountTargetsMountTargetLdapIdmapResult'],
|
1677
2465
|
lifecycle_details: str,
|
2466
|
+
locks: Sequence['outputs.GetMountTargetsMountTargetLockResult'],
|
1678
2467
|
nsg_ids: Sequence[str],
|
1679
2468
|
observed_throughput: str,
|
1680
2469
|
private_ip_ids: Sequence[str],
|
@@ -1696,6 +2485,7 @@ class GetMountTargetsMountTargetResult(dict):
|
|
1696
2485
|
:param Sequence['GetMountTargetsMountTargetKerberoArgs'] kerberos: Allows administrator to configure a mount target to interact with the administrator's Kerberos infrastructure.
|
1697
2486
|
:param Sequence['GetMountTargetsMountTargetLdapIdmapArgs'] ldap_idmaps: Mount target details about the LDAP ID mapping configuration.
|
1698
2487
|
:param str lifecycle_details: Additional information about the current 'lifecycleState'.
|
2488
|
+
:param Sequence['GetMountTargetsMountTargetLockArgs'] locks: Locks associated with this resource.
|
1699
2489
|
:param Sequence[str] nsg_ids: A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this mount target. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the mount target from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
|
1700
2490
|
:param str observed_throughput: Current billed throughput for mount target in Gbps. This corresponds to shape of mount target. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
|
1701
2491
|
:param Sequence[str] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
|
@@ -1716,9 +2506,11 @@ class GetMountTargetsMountTargetResult(dict):
|
|
1716
2506
|
pulumi.set(__self__, "id", id)
|
1717
2507
|
pulumi.set(__self__, "idmap_type", idmap_type)
|
1718
2508
|
pulumi.set(__self__, "ip_address", ip_address)
|
2509
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
1719
2510
|
pulumi.set(__self__, "kerberos", kerberos)
|
1720
2511
|
pulumi.set(__self__, "ldap_idmaps", ldap_idmaps)
|
1721
2512
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
2513
|
+
pulumi.set(__self__, "locks", locks)
|
1722
2514
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
1723
2515
|
pulumi.set(__self__, "observed_throughput", observed_throughput)
|
1724
2516
|
pulumi.set(__self__, "private_ip_ids", private_ip_ids)
|
@@ -1803,6 +2595,11 @@ class GetMountTargetsMountTargetResult(dict):
|
|
1803
2595
|
def ip_address(self) -> str:
|
1804
2596
|
return pulumi.get(self, "ip_address")
|
1805
2597
|
|
2598
|
+
@property
|
2599
|
+
@pulumi.getter(name="isLockOverride")
|
2600
|
+
def is_lock_override(self) -> bool:
|
2601
|
+
return pulumi.get(self, "is_lock_override")
|
2602
|
+
|
1806
2603
|
@property
|
1807
2604
|
@pulumi.getter
|
1808
2605
|
def kerberos(self) -> Sequence['outputs.GetMountTargetsMountTargetKerberoResult']:
|
@@ -1827,6 +2624,14 @@ class GetMountTargetsMountTargetResult(dict):
|
|
1827
2624
|
"""
|
1828
2625
|
return pulumi.get(self, "lifecycle_details")
|
1829
2626
|
|
2627
|
+
@property
|
2628
|
+
@pulumi.getter
|
2629
|
+
def locks(self) -> Sequence['outputs.GetMountTargetsMountTargetLockResult']:
|
2630
|
+
"""
|
2631
|
+
Locks associated with this resource.
|
2632
|
+
"""
|
2633
|
+
return pulumi.get(self, "locks")
|
2634
|
+
|
1830
2635
|
@property
|
1831
2636
|
@pulumi.getter(name="nsgIds")
|
1832
2637
|
def nsg_ids(self) -> Sequence[str]:
|
@@ -2057,6 +2862,57 @@ class GetMountTargetsMountTargetLdapIdmapResult(dict):
|
|
2057
2862
|
return pulumi.get(self, "user_search_base")
|
2058
2863
|
|
2059
2864
|
|
2865
|
+
@pulumi.output_type
|
2866
|
+
class GetMountTargetsMountTargetLockResult(dict):
|
2867
|
+
def __init__(__self__, *,
|
2868
|
+
message: str,
|
2869
|
+
related_resource_id: str,
|
2870
|
+
time_created: str,
|
2871
|
+
type: str):
|
2872
|
+
"""
|
2873
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2874
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2875
|
+
:param str time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2876
|
+
:param str type: Type of the lock.
|
2877
|
+
"""
|
2878
|
+
pulumi.set(__self__, "message", message)
|
2879
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
2880
|
+
pulumi.set(__self__, "time_created", time_created)
|
2881
|
+
pulumi.set(__self__, "type", type)
|
2882
|
+
|
2883
|
+
@property
|
2884
|
+
@pulumi.getter
|
2885
|
+
def message(self) -> str:
|
2886
|
+
"""
|
2887
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2888
|
+
"""
|
2889
|
+
return pulumi.get(self, "message")
|
2890
|
+
|
2891
|
+
@property
|
2892
|
+
@pulumi.getter(name="relatedResourceId")
|
2893
|
+
def related_resource_id(self) -> str:
|
2894
|
+
"""
|
2895
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2896
|
+
"""
|
2897
|
+
return pulumi.get(self, "related_resource_id")
|
2898
|
+
|
2899
|
+
@property
|
2900
|
+
@pulumi.getter(name="timeCreated")
|
2901
|
+
def time_created(self) -> str:
|
2902
|
+
"""
|
2903
|
+
The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2904
|
+
"""
|
2905
|
+
return pulumi.get(self, "time_created")
|
2906
|
+
|
2907
|
+
@property
|
2908
|
+
@pulumi.getter
|
2909
|
+
def type(self) -> str:
|
2910
|
+
"""
|
2911
|
+
Type of the lock.
|
2912
|
+
"""
|
2913
|
+
return pulumi.get(self, "type")
|
2914
|
+
|
2915
|
+
|
2060
2916
|
@pulumi.output_type
|
2061
2917
|
class GetOutboundConnectorEndpointResult(dict):
|
2062
2918
|
def __init__(__self__, *,
|
@@ -2086,6 +2942,57 @@ class GetOutboundConnectorEndpointResult(dict):
|
|
2086
2942
|
return pulumi.get(self, "port")
|
2087
2943
|
|
2088
2944
|
|
2945
|
+
@pulumi.output_type
|
2946
|
+
class GetOutboundConnectorLockResult(dict):
|
2947
|
+
def __init__(__self__, *,
|
2948
|
+
message: str,
|
2949
|
+
related_resource_id: str,
|
2950
|
+
time_created: str,
|
2951
|
+
type: str):
|
2952
|
+
"""
|
2953
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2954
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2955
|
+
:param str time_created: The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2956
|
+
:param str type: Type of the lock.
|
2957
|
+
"""
|
2958
|
+
pulumi.set(__self__, "message", message)
|
2959
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
2960
|
+
pulumi.set(__self__, "time_created", time_created)
|
2961
|
+
pulumi.set(__self__, "type", type)
|
2962
|
+
|
2963
|
+
@property
|
2964
|
+
@pulumi.getter
|
2965
|
+
def message(self) -> str:
|
2966
|
+
"""
|
2967
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
2968
|
+
"""
|
2969
|
+
return pulumi.get(self, "message")
|
2970
|
+
|
2971
|
+
@property
|
2972
|
+
@pulumi.getter(name="relatedResourceId")
|
2973
|
+
def related_resource_id(self) -> str:
|
2974
|
+
"""
|
2975
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
2976
|
+
"""
|
2977
|
+
return pulumi.get(self, "related_resource_id")
|
2978
|
+
|
2979
|
+
@property
|
2980
|
+
@pulumi.getter(name="timeCreated")
|
2981
|
+
def time_created(self) -> str:
|
2982
|
+
"""
|
2983
|
+
The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
2984
|
+
"""
|
2985
|
+
return pulumi.get(self, "time_created")
|
2986
|
+
|
2987
|
+
@property
|
2988
|
+
@pulumi.getter
|
2989
|
+
def type(self) -> str:
|
2990
|
+
"""
|
2991
|
+
Type of the lock.
|
2992
|
+
"""
|
2993
|
+
return pulumi.get(self, "type")
|
2994
|
+
|
2995
|
+
|
2089
2996
|
@pulumi.output_type
|
2090
2997
|
class GetOutboundConnectorsFilterResult(dict):
|
2091
2998
|
def __init__(__self__, *,
|
@@ -2125,6 +3032,8 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
2125
3032
|
endpoints: Sequence['outputs.GetOutboundConnectorsOutboundConnectorEndpointResult'],
|
2126
3033
|
freeform_tags: Mapping[str, str],
|
2127
3034
|
id: str,
|
3035
|
+
is_lock_override: bool,
|
3036
|
+
locks: Sequence['outputs.GetOutboundConnectorsOutboundConnectorLockResult'],
|
2128
3037
|
password_secret_id: str,
|
2129
3038
|
password_secret_version: int,
|
2130
3039
|
state: str,
|
@@ -2139,6 +3048,7 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
2139
3048
|
:param Sequence['GetOutboundConnectorsOutboundConnectorEndpointArgs'] endpoints: Array of server endpoints to use when connecting with the LDAP bind account.
|
2140
3049
|
:param Mapping[str, 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"}`
|
2141
3050
|
:param str id: Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resouce type.
|
3051
|
+
:param Sequence['GetOutboundConnectorsOutboundConnectorLockArgs'] locks: Locks associated with this resource.
|
2142
3052
|
:param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the password for the LDAP bind account in the Vault.
|
2143
3053
|
:param int password_secret_version: Version of the password secret in the Vault to use.
|
2144
3054
|
:param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
|
@@ -2153,6 +3063,8 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
2153
3063
|
pulumi.set(__self__, "endpoints", endpoints)
|
2154
3064
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
2155
3065
|
pulumi.set(__self__, "id", id)
|
3066
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
3067
|
+
pulumi.set(__self__, "locks", locks)
|
2156
3068
|
pulumi.set(__self__, "password_secret_id", password_secret_id)
|
2157
3069
|
pulumi.set(__self__, "password_secret_version", password_secret_version)
|
2158
3070
|
pulumi.set(__self__, "state", state)
|
@@ -2230,6 +3142,19 @@ class GetOutboundConnectorsOutboundConnectorResult(dict):
|
|
2230
3142
|
"""
|
2231
3143
|
return pulumi.get(self, "id")
|
2232
3144
|
|
3145
|
+
@property
|
3146
|
+
@pulumi.getter(name="isLockOverride")
|
3147
|
+
def is_lock_override(self) -> bool:
|
3148
|
+
return pulumi.get(self, "is_lock_override")
|
3149
|
+
|
3150
|
+
@property
|
3151
|
+
@pulumi.getter
|
3152
|
+
def locks(self) -> Sequence['outputs.GetOutboundConnectorsOutboundConnectorLockResult']:
|
3153
|
+
"""
|
3154
|
+
Locks associated with this resource.
|
3155
|
+
"""
|
3156
|
+
return pulumi.get(self, "locks")
|
3157
|
+
|
2233
3158
|
@property
|
2234
3159
|
@pulumi.getter(name="passwordSecretId")
|
2235
3160
|
def password_secret_id(self) -> str:
|
@@ -2292,6 +3217,108 @@ class GetOutboundConnectorsOutboundConnectorEndpointResult(dict):
|
|
2292
3217
|
return pulumi.get(self, "port")
|
2293
3218
|
|
2294
3219
|
|
3220
|
+
@pulumi.output_type
|
3221
|
+
class GetOutboundConnectorsOutboundConnectorLockResult(dict):
|
3222
|
+
def __init__(__self__, *,
|
3223
|
+
message: str,
|
3224
|
+
related_resource_id: str,
|
3225
|
+
time_created: str,
|
3226
|
+
type: str):
|
3227
|
+
"""
|
3228
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3229
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3230
|
+
:param str time_created: The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3231
|
+
:param str type: Type of the lock.
|
3232
|
+
"""
|
3233
|
+
pulumi.set(__self__, "message", message)
|
3234
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3235
|
+
pulumi.set(__self__, "time_created", time_created)
|
3236
|
+
pulumi.set(__self__, "type", type)
|
3237
|
+
|
3238
|
+
@property
|
3239
|
+
@pulumi.getter
|
3240
|
+
def message(self) -> str:
|
3241
|
+
"""
|
3242
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3243
|
+
"""
|
3244
|
+
return pulumi.get(self, "message")
|
3245
|
+
|
3246
|
+
@property
|
3247
|
+
@pulumi.getter(name="relatedResourceId")
|
3248
|
+
def related_resource_id(self) -> str:
|
3249
|
+
"""
|
3250
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3251
|
+
"""
|
3252
|
+
return pulumi.get(self, "related_resource_id")
|
3253
|
+
|
3254
|
+
@property
|
3255
|
+
@pulumi.getter(name="timeCreated")
|
3256
|
+
def time_created(self) -> str:
|
3257
|
+
"""
|
3258
|
+
The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3259
|
+
"""
|
3260
|
+
return pulumi.get(self, "time_created")
|
3261
|
+
|
3262
|
+
@property
|
3263
|
+
@pulumi.getter
|
3264
|
+
def type(self) -> str:
|
3265
|
+
"""
|
3266
|
+
Type of the lock.
|
3267
|
+
"""
|
3268
|
+
return pulumi.get(self, "type")
|
3269
|
+
|
3270
|
+
|
3271
|
+
@pulumi.output_type
|
3272
|
+
class GetReplicationLockResult(dict):
|
3273
|
+
def __init__(__self__, *,
|
3274
|
+
message: str,
|
3275
|
+
related_resource_id: str,
|
3276
|
+
time_created: str,
|
3277
|
+
type: str):
|
3278
|
+
"""
|
3279
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3280
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3281
|
+
:param str time_created: The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3282
|
+
:param str type: Type of the lock.
|
3283
|
+
"""
|
3284
|
+
pulumi.set(__self__, "message", message)
|
3285
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3286
|
+
pulumi.set(__self__, "time_created", time_created)
|
3287
|
+
pulumi.set(__self__, "type", type)
|
3288
|
+
|
3289
|
+
@property
|
3290
|
+
@pulumi.getter
|
3291
|
+
def message(self) -> str:
|
3292
|
+
"""
|
3293
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3294
|
+
"""
|
3295
|
+
return pulumi.get(self, "message")
|
3296
|
+
|
3297
|
+
@property
|
3298
|
+
@pulumi.getter(name="relatedResourceId")
|
3299
|
+
def related_resource_id(self) -> str:
|
3300
|
+
"""
|
3301
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3302
|
+
"""
|
3303
|
+
return pulumi.get(self, "related_resource_id")
|
3304
|
+
|
3305
|
+
@property
|
3306
|
+
@pulumi.getter(name="timeCreated")
|
3307
|
+
def time_created(self) -> str:
|
3308
|
+
"""
|
3309
|
+
The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3310
|
+
"""
|
3311
|
+
return pulumi.get(self, "time_created")
|
3312
|
+
|
3313
|
+
@property
|
3314
|
+
@pulumi.getter
|
3315
|
+
def type(self) -> str:
|
3316
|
+
"""
|
3317
|
+
Type of the lock.
|
3318
|
+
"""
|
3319
|
+
return pulumi.get(self, "type")
|
3320
|
+
|
3321
|
+
|
2295
3322
|
@pulumi.output_type
|
2296
3323
|
class GetReplicationTargetsFilterResult(dict):
|
2297
3324
|
def __init__(__self__, *,
|
@@ -2540,8 +3567,10 @@ class GetReplicationsReplicationResult(dict):
|
|
2540
3567
|
display_name: str,
|
2541
3568
|
freeform_tags: Mapping[str, str],
|
2542
3569
|
id: str,
|
3570
|
+
is_lock_override: bool,
|
2543
3571
|
last_snapshot_id: str,
|
2544
3572
|
lifecycle_details: str,
|
3573
|
+
locks: Sequence['outputs.GetReplicationsReplicationLockResult'],
|
2545
3574
|
recovery_point_time: str,
|
2546
3575
|
replication_interval: str,
|
2547
3576
|
replication_target_id: str,
|
@@ -2560,6 +3589,7 @@ class GetReplicationsReplicationResult(dict):
|
|
2560
3589
|
:param str id: Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resouce type.
|
2561
3590
|
:param str last_snapshot_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last snapshot that has been replicated completely. Empty if the copy of the initial snapshot is not complete.
|
2562
3591
|
:param str lifecycle_details: Additional information about the current 'lifecycleState'.
|
3592
|
+
:param Sequence['GetReplicationsReplicationLockArgs'] locks: Locks associated with this resource.
|
2563
3593
|
:param str recovery_point_time: The [`snapshotTime`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Snapshot/snapshotTime) of the most recent recoverable replication snapshot in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-04-04T20:01:29.100Z`
|
2564
3594
|
:param str replication_interval: Duration in minutes between replication snapshots.
|
2565
3595
|
:param str replication_target_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the [`ReplicationTarget`](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ReplicationTarget).
|
@@ -2576,8 +3606,10 @@ class GetReplicationsReplicationResult(dict):
|
|
2576
3606
|
pulumi.set(__self__, "display_name", display_name)
|
2577
3607
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
2578
3608
|
pulumi.set(__self__, "id", id)
|
3609
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
2579
3610
|
pulumi.set(__self__, "last_snapshot_id", last_snapshot_id)
|
2580
3611
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3612
|
+
pulumi.set(__self__, "locks", locks)
|
2581
3613
|
pulumi.set(__self__, "recovery_point_time", recovery_point_time)
|
2582
3614
|
pulumi.set(__self__, "replication_interval", replication_interval)
|
2583
3615
|
pulumi.set(__self__, "replication_target_id", replication_target_id)
|
@@ -2650,6 +3682,11 @@ class GetReplicationsReplicationResult(dict):
|
|
2650
3682
|
"""
|
2651
3683
|
return pulumi.get(self, "id")
|
2652
3684
|
|
3685
|
+
@property
|
3686
|
+
@pulumi.getter(name="isLockOverride")
|
3687
|
+
def is_lock_override(self) -> bool:
|
3688
|
+
return pulumi.get(self, "is_lock_override")
|
3689
|
+
|
2653
3690
|
@property
|
2654
3691
|
@pulumi.getter(name="lastSnapshotId")
|
2655
3692
|
def last_snapshot_id(self) -> str:
|
@@ -2666,6 +3703,14 @@ class GetReplicationsReplicationResult(dict):
|
|
2666
3703
|
"""
|
2667
3704
|
return pulumi.get(self, "lifecycle_details")
|
2668
3705
|
|
3706
|
+
@property
|
3707
|
+
@pulumi.getter
|
3708
|
+
def locks(self) -> Sequence['outputs.GetReplicationsReplicationLockResult']:
|
3709
|
+
"""
|
3710
|
+
Locks associated with this resource.
|
3711
|
+
"""
|
3712
|
+
return pulumi.get(self, "locks")
|
3713
|
+
|
2669
3714
|
@property
|
2670
3715
|
@pulumi.getter(name="recoveryPointTime")
|
2671
3716
|
def recovery_point_time(self) -> str:
|
@@ -2723,6 +3768,108 @@ class GetReplicationsReplicationResult(dict):
|
|
2723
3768
|
return pulumi.get(self, "time_created")
|
2724
3769
|
|
2725
3770
|
|
3771
|
+
@pulumi.output_type
|
3772
|
+
class GetReplicationsReplicationLockResult(dict):
|
3773
|
+
def __init__(__self__, *,
|
3774
|
+
message: str,
|
3775
|
+
related_resource_id: str,
|
3776
|
+
time_created: str,
|
3777
|
+
type: str):
|
3778
|
+
"""
|
3779
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3780
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3781
|
+
:param str time_created: The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3782
|
+
:param str type: Type of the lock.
|
3783
|
+
"""
|
3784
|
+
pulumi.set(__self__, "message", message)
|
3785
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3786
|
+
pulumi.set(__self__, "time_created", time_created)
|
3787
|
+
pulumi.set(__self__, "type", type)
|
3788
|
+
|
3789
|
+
@property
|
3790
|
+
@pulumi.getter
|
3791
|
+
def message(self) -> str:
|
3792
|
+
"""
|
3793
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3794
|
+
"""
|
3795
|
+
return pulumi.get(self, "message")
|
3796
|
+
|
3797
|
+
@property
|
3798
|
+
@pulumi.getter(name="relatedResourceId")
|
3799
|
+
def related_resource_id(self) -> str:
|
3800
|
+
"""
|
3801
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3802
|
+
"""
|
3803
|
+
return pulumi.get(self, "related_resource_id")
|
3804
|
+
|
3805
|
+
@property
|
3806
|
+
@pulumi.getter(name="timeCreated")
|
3807
|
+
def time_created(self) -> str:
|
3808
|
+
"""
|
3809
|
+
The date and time the replication was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2021-01-04T20:01:29.100Z`
|
3810
|
+
"""
|
3811
|
+
return pulumi.get(self, "time_created")
|
3812
|
+
|
3813
|
+
@property
|
3814
|
+
@pulumi.getter
|
3815
|
+
def type(self) -> str:
|
3816
|
+
"""
|
3817
|
+
Type of the lock.
|
3818
|
+
"""
|
3819
|
+
return pulumi.get(self, "type")
|
3820
|
+
|
3821
|
+
|
3822
|
+
@pulumi.output_type
|
3823
|
+
class GetSnapshotLockResult(dict):
|
3824
|
+
def __init__(__self__, *,
|
3825
|
+
message: str,
|
3826
|
+
related_resource_id: str,
|
3827
|
+
time_created: str,
|
3828
|
+
type: str):
|
3829
|
+
"""
|
3830
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3831
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3832
|
+
:param str time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3833
|
+
:param str type: Type of the lock.
|
3834
|
+
"""
|
3835
|
+
pulumi.set(__self__, "message", message)
|
3836
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
3837
|
+
pulumi.set(__self__, "time_created", time_created)
|
3838
|
+
pulumi.set(__self__, "type", type)
|
3839
|
+
|
3840
|
+
@property
|
3841
|
+
@pulumi.getter
|
3842
|
+
def message(self) -> str:
|
3843
|
+
"""
|
3844
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
3845
|
+
"""
|
3846
|
+
return pulumi.get(self, "message")
|
3847
|
+
|
3848
|
+
@property
|
3849
|
+
@pulumi.getter(name="relatedResourceId")
|
3850
|
+
def related_resource_id(self) -> str:
|
3851
|
+
"""
|
3852
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
3853
|
+
"""
|
3854
|
+
return pulumi.get(self, "related_resource_id")
|
3855
|
+
|
3856
|
+
@property
|
3857
|
+
@pulumi.getter(name="timeCreated")
|
3858
|
+
def time_created(self) -> str:
|
3859
|
+
"""
|
3860
|
+
The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
3861
|
+
"""
|
3862
|
+
return pulumi.get(self, "time_created")
|
3863
|
+
|
3864
|
+
@property
|
3865
|
+
@pulumi.getter
|
3866
|
+
def type(self) -> str:
|
3867
|
+
"""
|
3868
|
+
Type of the lock.
|
3869
|
+
"""
|
3870
|
+
return pulumi.get(self, "type")
|
3871
|
+
|
3872
|
+
|
2726
3873
|
@pulumi.output_type
|
2727
3874
|
class GetSnapshotsFilterResult(dict):
|
2728
3875
|
def __init__(__self__, *,
|
@@ -2766,7 +3913,9 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2766
3913
|
freeform_tags: Mapping[str, str],
|
2767
3914
|
id: str,
|
2768
3915
|
is_clone_source: bool,
|
3916
|
+
is_lock_override: bool,
|
2769
3917
|
lifecycle_details: str,
|
3918
|
+
locks: Sequence['outputs.GetSnapshotsSnapshotLockResult'],
|
2770
3919
|
name: str,
|
2771
3920
|
provenance_id: str,
|
2772
3921
|
snapshot_time: str,
|
@@ -2782,6 +3931,7 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2782
3931
|
:param str id: Filter results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resouce type.
|
2783
3932
|
:param bool is_clone_source: Specifies whether the snapshot has been cloned. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
2784
3933
|
:param str lifecycle_details: Additional information about the current `lifecycleState`.
|
3934
|
+
:param Sequence['GetSnapshotsSnapshotLockArgs'] locks: Locks associated with this resource.
|
2785
3935
|
:param str name: Name of the snapshot. This value is immutable.
|
2786
3936
|
:param str provenance_id: An [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the `provenanceId` is the same as the snapshot `id` value. If this snapshot was cloned, then the `provenanceId` value is the parent's `provenanceId`. See [Cloning a File System](https://docs.cloud.oracle.com/iaas/Content/File/Tasks/cloningFS.htm).
|
2787
3937
|
:param str snapshot_time: The date and time the snapshot was taken, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. This value might be the same or different from `timeCreated` depending on the following factors:
|
@@ -2799,7 +3949,9 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2799
3949
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
2800
3950
|
pulumi.set(__self__, "id", id)
|
2801
3951
|
pulumi.set(__self__, "is_clone_source", is_clone_source)
|
3952
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
2802
3953
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3954
|
+
pulumi.set(__self__, "locks", locks)
|
2803
3955
|
pulumi.set(__self__, "name", name)
|
2804
3956
|
pulumi.set(__self__, "provenance_id", provenance_id)
|
2805
3957
|
pulumi.set(__self__, "snapshot_time", snapshot_time)
|
@@ -2863,6 +4015,11 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2863
4015
|
"""
|
2864
4016
|
return pulumi.get(self, "is_clone_source")
|
2865
4017
|
|
4018
|
+
@property
|
4019
|
+
@pulumi.getter(name="isLockOverride")
|
4020
|
+
def is_lock_override(self) -> bool:
|
4021
|
+
return pulumi.get(self, "is_lock_override")
|
4022
|
+
|
2866
4023
|
@property
|
2867
4024
|
@pulumi.getter(name="lifecycleDetails")
|
2868
4025
|
def lifecycle_details(self) -> str:
|
@@ -2871,6 +4028,14 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2871
4028
|
"""
|
2872
4029
|
return pulumi.get(self, "lifecycle_details")
|
2873
4030
|
|
4031
|
+
@property
|
4032
|
+
@pulumi.getter
|
4033
|
+
def locks(self) -> Sequence['outputs.GetSnapshotsSnapshotLockResult']:
|
4034
|
+
"""
|
4035
|
+
Locks associated with this resource.
|
4036
|
+
"""
|
4037
|
+
return pulumi.get(self, "locks")
|
4038
|
+
|
2874
4039
|
@property
|
2875
4040
|
@pulumi.getter
|
2876
4041
|
def name(self) -> str:
|
@@ -2923,3 +4088,54 @@ class GetSnapshotsSnapshotResult(dict):
|
|
2923
4088
|
return pulumi.get(self, "time_created")
|
2924
4089
|
|
2925
4090
|
|
4091
|
+
@pulumi.output_type
|
4092
|
+
class GetSnapshotsSnapshotLockResult(dict):
|
4093
|
+
def __init__(__self__, *,
|
4094
|
+
message: str,
|
4095
|
+
related_resource_id: str,
|
4096
|
+
time_created: str,
|
4097
|
+
type: str):
|
4098
|
+
"""
|
4099
|
+
:param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
4100
|
+
:param str related_resource_id: The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
4101
|
+
:param str time_created: The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
4102
|
+
:param str type: Type of the lock.
|
4103
|
+
"""
|
4104
|
+
pulumi.set(__self__, "message", message)
|
4105
|
+
pulumi.set(__self__, "related_resource_id", related_resource_id)
|
4106
|
+
pulumi.set(__self__, "time_created", time_created)
|
4107
|
+
pulumi.set(__self__, "type", type)
|
4108
|
+
|
4109
|
+
@property
|
4110
|
+
@pulumi.getter
|
4111
|
+
def message(self) -> str:
|
4112
|
+
"""
|
4113
|
+
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
|
4114
|
+
"""
|
4115
|
+
return pulumi.get(self, "message")
|
4116
|
+
|
4117
|
+
@property
|
4118
|
+
@pulumi.getter(name="relatedResourceId")
|
4119
|
+
def related_resource_id(self) -> str:
|
4120
|
+
"""
|
4121
|
+
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
|
4122
|
+
"""
|
4123
|
+
return pulumi.get(self, "related_resource_id")
|
4124
|
+
|
4125
|
+
@property
|
4126
|
+
@pulumi.getter(name="timeCreated")
|
4127
|
+
def time_created(self) -> str:
|
4128
|
+
"""
|
4129
|
+
The date and time the snapshot was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
|
4130
|
+
"""
|
4131
|
+
return pulumi.get(self, "time_created")
|
4132
|
+
|
4133
|
+
@property
|
4134
|
+
@pulumi.getter
|
4135
|
+
def type(self) -> str:
|
4136
|
+
"""
|
4137
|
+
Type of the lock.
|
4138
|
+
"""
|
4139
|
+
return pulumi.get(self, "type")
|
4140
|
+
|
4141
|
+
|