pulumi-oci 1.34.0a1714544127__py3-none-any.whl → 1.34.0a1714766740__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.
Files changed (74) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/config/__init__.pyi +2 -2
  3. pulumi_oci/config/vars.py +2 -2
  4. pulumi_oci/database/db_home.py +47 -0
  5. pulumi_oci/database/get_db_home.py +14 -1
  6. pulumi_oci/database/outputs.py +11 -0
  7. pulumi_oci/databasemanagement/__init__.py +5 -0
  8. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  9. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  10. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  11. pulumi_oci/databasemanagement/external_asm.py +28 -0
  12. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  13. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  14. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  15. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  16. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  17. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  18. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  19. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  20. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  21. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  22. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  23. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  24. pulumi_oci/databasemanagement/external_listener.py +28 -0
  25. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  26. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  27. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  28. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  29. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  30. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  31. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  32. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  33. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  34. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  35. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  36. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  37. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  38. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  39. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  40. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  41. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  42. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  43. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  44. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  45. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  46. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  47. pulumi_oci/databasemanagement/managed_database.py +28 -0
  48. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  49. pulumi_oci/databasemanagement/named_credential.py +28 -0
  50. pulumi_oci/databasemanagement/outputs.py +1723 -214
  51. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  52. pulumi_oci/datasafe/__init__.py +3 -0
  53. pulumi_oci/datasafe/_inputs.py +80 -0
  54. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  55. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  56. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  57. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  58. pulumi_oci/datasafe/masking_policy.py +75 -28
  59. pulumi_oci/datasafe/outputs.py +287 -0
  60. pulumi_oci/provider.py +8 -8
  61. pulumi_oci/recoverymod/_inputs.py +16 -0
  62. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  63. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  64. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  65. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  66. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  67. pulumi_oci/recoverymod/outputs.py +96 -24
  68. pulumi_oci/recoverymod/protected_database.py +95 -16
  69. pulumi_oci/recoverymod/protection_policy.py +121 -54
  70. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  71. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/METADATA +1 -1
  72. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/RECORD +74 -66
  73. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/WHEEL +0 -0
  74. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/top_level.txt +0 -0
@@ -153,6 +153,7 @@ class _ExternalExadataStorageConnectorState:
153
153
  state: Optional[pulumi.Input[str]] = None,
154
154
  status: Optional[pulumi.Input[str]] = None,
155
155
  storage_server_id: Optional[pulumi.Input[str]] = None,
156
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
156
157
  time_created: Optional[pulumi.Input[str]] = None,
157
158
  time_updated: Optional[pulumi.Input[str]] = None,
158
159
  version: Optional[pulumi.Input[str]] = None):
@@ -176,6 +177,7 @@ class _ExternalExadataStorageConnectorState:
176
177
 
177
178
  ** IMPORTANT **
178
179
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
180
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
179
181
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
180
182
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
181
183
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -208,6 +210,8 @@ class _ExternalExadataStorageConnectorState:
208
210
  pulumi.set(__self__, "status", status)
209
211
  if storage_server_id is not None:
210
212
  pulumi.set(__self__, "storage_server_id", storage_server_id)
213
+ if system_tags is not None:
214
+ pulumi.set(__self__, "system_tags", system_tags)
211
215
  if time_created is not None:
212
216
  pulumi.set(__self__, "time_created", time_created)
213
217
  if time_updated is not None:
@@ -387,6 +391,18 @@ class _ExternalExadataStorageConnectorState:
387
391
  def storage_server_id(self, value: Optional[pulumi.Input[str]]):
388
392
  pulumi.set(self, "storage_server_id", value)
389
393
 
394
+ @property
395
+ @pulumi.getter(name="systemTags")
396
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
397
+ """
398
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
399
+ """
400
+ return pulumi.get(self, "system_tags")
401
+
402
+ @system_tags.setter
403
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
404
+ pulumi.set(self, "system_tags", value)
405
+
390
406
  @property
391
407
  @pulumi.getter(name="timeCreated")
392
408
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -590,6 +606,7 @@ class ExternalExadataStorageConnector(pulumi.CustomResource):
590
606
  __props__.__dict__["lifecycle_details"] = None
591
607
  __props__.__dict__["state"] = None
592
608
  __props__.__dict__["status"] = None
609
+ __props__.__dict__["system_tags"] = None
593
610
  __props__.__dict__["time_created"] = None
594
611
  __props__.__dict__["time_updated"] = None
595
612
  __props__.__dict__["version"] = None
@@ -617,6 +634,7 @@ class ExternalExadataStorageConnector(pulumi.CustomResource):
617
634
  state: Optional[pulumi.Input[str]] = None,
618
635
  status: Optional[pulumi.Input[str]] = None,
619
636
  storage_server_id: Optional[pulumi.Input[str]] = None,
637
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
620
638
  time_created: Optional[pulumi.Input[str]] = None,
621
639
  time_updated: Optional[pulumi.Input[str]] = None,
622
640
  version: Optional[pulumi.Input[str]] = None) -> 'ExternalExadataStorageConnector':
@@ -645,6 +663,7 @@ class ExternalExadataStorageConnector(pulumi.CustomResource):
645
663
 
646
664
  ** IMPORTANT **
647
665
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
666
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
648
667
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
649
668
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
650
669
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -667,6 +686,7 @@ class ExternalExadataStorageConnector(pulumi.CustomResource):
667
686
  __props__.__dict__["state"] = state
668
687
  __props__.__dict__["status"] = status
669
688
  __props__.__dict__["storage_server_id"] = storage_server_id
689
+ __props__.__dict__["system_tags"] = system_tags
670
690
  __props__.__dict__["time_created"] = time_created
671
691
  __props__.__dict__["time_updated"] = time_updated
672
692
  __props__.__dict__["version"] = version
@@ -788,6 +808,14 @@ class ExternalExadataStorageConnector(pulumi.CustomResource):
788
808
  """
789
809
  return pulumi.get(self, "storage_server_id")
790
810
 
811
+ @property
812
+ @pulumi.getter(name="systemTags")
813
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
814
+ """
815
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
816
+ """
817
+ return pulumi.get(self, "system_tags")
818
+
791
819
  @property
792
820
  @pulumi.getter(name="timeCreated")
793
821
  def time_created(self) -> pulumi.Output[str]:
@@ -92,6 +92,7 @@ class _ExternalExadataStorageGridState:
92
92
  state: Optional[pulumi.Input[str]] = None,
93
93
  status: Optional[pulumi.Input[str]] = None,
94
94
  storage_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalExadataStorageGridStorageServerArgs']]]] = None,
95
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
95
96
  time_created: Optional[pulumi.Input[str]] = None,
96
97
  time_updated: Optional[pulumi.Input[str]] = None,
97
98
  version: Optional[pulumi.Input[str]] = None):
@@ -114,6 +115,7 @@ class _ExternalExadataStorageGridState:
114
115
  :param pulumi.Input[str] state: The current lifecycle state of the database resource.
115
116
  :param pulumi.Input[str] status: The status of the Exadata resource.
116
117
  :param pulumi.Input[Sequence[pulumi.Input['ExternalExadataStorageGridStorageServerArgs']]] storage_servers: A list of monitored Exadata storage servers.
118
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
117
119
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
118
120
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
119
121
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -144,6 +146,8 @@ class _ExternalExadataStorageGridState:
144
146
  pulumi.set(__self__, "status", status)
145
147
  if storage_servers is not None:
146
148
  pulumi.set(__self__, "storage_servers", storage_servers)
149
+ if system_tags is not None:
150
+ pulumi.set(__self__, "system_tags", system_tags)
147
151
  if time_created is not None:
148
152
  pulumi.set(__self__, "time_created", time_created)
149
153
  if time_updated is not None:
@@ -311,6 +315,18 @@ class _ExternalExadataStorageGridState:
311
315
  def storage_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalExadataStorageGridStorageServerArgs']]]]):
312
316
  pulumi.set(self, "storage_servers", value)
313
317
 
318
+ @property
319
+ @pulumi.getter(name="systemTags")
320
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
321
+ """
322
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
323
+ """
324
+ return pulumi.get(self, "system_tags")
325
+
326
+ @system_tags.setter
327
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
328
+ pulumi.set(self, "system_tags", value)
329
+
314
330
  @property
315
331
  @pulumi.getter(name="timeCreated")
316
332
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -441,6 +457,7 @@ class ExternalExadataStorageGrid(pulumi.CustomResource):
441
457
  __props__.__dict__["state"] = None
442
458
  __props__.__dict__["status"] = None
443
459
  __props__.__dict__["storage_servers"] = None
460
+ __props__.__dict__["system_tags"] = None
444
461
  __props__.__dict__["time_created"] = None
445
462
  __props__.__dict__["time_updated"] = None
446
463
  __props__.__dict__["version"] = None
@@ -467,6 +484,7 @@ class ExternalExadataStorageGrid(pulumi.CustomResource):
467
484
  state: Optional[pulumi.Input[str]] = None,
468
485
  status: Optional[pulumi.Input[str]] = None,
469
486
  storage_servers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalExadataStorageGridStorageServerArgs']]]]] = None,
487
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
470
488
  time_created: Optional[pulumi.Input[str]] = None,
471
489
  time_updated: Optional[pulumi.Input[str]] = None,
472
490
  version: Optional[pulumi.Input[str]] = None) -> 'ExternalExadataStorageGrid':
@@ -494,6 +512,7 @@ class ExternalExadataStorageGrid(pulumi.CustomResource):
494
512
  :param pulumi.Input[str] state: The current lifecycle state of the database resource.
495
513
  :param pulumi.Input[str] status: The status of the Exadata resource.
496
514
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalExadataStorageGridStorageServerArgs']]]] storage_servers: A list of monitored Exadata storage servers.
515
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
497
516
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
498
517
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
499
518
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -515,6 +534,7 @@ class ExternalExadataStorageGrid(pulumi.CustomResource):
515
534
  __props__.__dict__["state"] = state
516
535
  __props__.__dict__["status"] = status
517
536
  __props__.__dict__["storage_servers"] = storage_servers
537
+ __props__.__dict__["system_tags"] = system_tags
518
538
  __props__.__dict__["time_created"] = time_created
519
539
  __props__.__dict__["time_updated"] = time_updated
520
540
  __props__.__dict__["version"] = version
@@ -628,6 +648,14 @@ class ExternalExadataStorageGrid(pulumi.CustomResource):
628
648
  """
629
649
  return pulumi.get(self, "storage_servers")
630
650
 
651
+ @property
652
+ @pulumi.getter(name="systemTags")
653
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
654
+ """
655
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
656
+ """
657
+ return pulumi.get(self, "system_tags")
658
+
631
659
  @property
632
660
  @pulumi.getter(name="timeCreated")
633
661
  def time_created(self) -> pulumi.Output[str]:
@@ -100,6 +100,7 @@ class _ExternalExadataStorageServerState:
100
100
  state: Optional[pulumi.Input[str]] = None,
101
101
  status: Optional[pulumi.Input[str]] = None,
102
102
  storage_grid_id: Optional[pulumi.Input[str]] = None,
103
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
103
104
  time_created: Optional[pulumi.Input[str]] = None,
104
105
  time_updated: Optional[pulumi.Input[str]] = None,
105
106
  version: Optional[pulumi.Input[str]] = None):
@@ -130,6 +131,7 @@ class _ExternalExadataStorageServerState:
130
131
  :param pulumi.Input[str] state: The current lifecycle state of the database resource.
131
132
  :param pulumi.Input[str] status: The status of the Exadata resource.
132
133
  :param pulumi.Input[str] storage_grid_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server grid.
134
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
133
135
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
134
136
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
135
137
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -176,6 +178,8 @@ class _ExternalExadataStorageServerState:
176
178
  pulumi.set(__self__, "status", status)
177
179
  if storage_grid_id is not None:
178
180
  pulumi.set(__self__, "storage_grid_id", storage_grid_id)
181
+ if system_tags is not None:
182
+ pulumi.set(__self__, "system_tags", system_tags)
179
183
  if time_created is not None:
180
184
  pulumi.set(__self__, "time_created", time_created)
181
185
  if time_updated is not None:
@@ -439,6 +443,18 @@ class _ExternalExadataStorageServerState:
439
443
  def storage_grid_id(self, value: Optional[pulumi.Input[str]]):
440
444
  pulumi.set(self, "storage_grid_id", value)
441
445
 
446
+ @property
447
+ @pulumi.getter(name="systemTags")
448
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
449
+ """
450
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
451
+ """
452
+ return pulumi.get(self, "system_tags")
453
+
454
+ @system_tags.setter
455
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
456
+ pulumi.set(self, "system_tags", value)
457
+
442
458
  @property
443
459
  @pulumi.getter(name="timeCreated")
444
460
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -577,6 +593,7 @@ class ExternalExadataStorageServer(pulumi.CustomResource):
577
593
  __props__.__dict__["state"] = None
578
594
  __props__.__dict__["status"] = None
579
595
  __props__.__dict__["storage_grid_id"] = None
596
+ __props__.__dict__["system_tags"] = None
580
597
  __props__.__dict__["time_created"] = None
581
598
  __props__.__dict__["time_updated"] = None
582
599
  __props__.__dict__["version"] = None
@@ -611,6 +628,7 @@ class ExternalExadataStorageServer(pulumi.CustomResource):
611
628
  state: Optional[pulumi.Input[str]] = None,
612
629
  status: Optional[pulumi.Input[str]] = None,
613
630
  storage_grid_id: Optional[pulumi.Input[str]] = None,
631
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
614
632
  time_created: Optional[pulumi.Input[str]] = None,
615
633
  time_updated: Optional[pulumi.Input[str]] = None,
616
634
  version: Optional[pulumi.Input[str]] = None) -> 'ExternalExadataStorageServer':
@@ -646,6 +664,7 @@ class ExternalExadataStorageServer(pulumi.CustomResource):
646
664
  :param pulumi.Input[str] state: The current lifecycle state of the database resource.
647
665
  :param pulumi.Input[str] status: The status of the Exadata resource.
648
666
  :param pulumi.Input[str] storage_grid_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server grid.
667
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
649
668
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
650
669
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
651
670
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -675,6 +694,7 @@ class ExternalExadataStorageServer(pulumi.CustomResource):
675
694
  __props__.__dict__["state"] = state
676
695
  __props__.__dict__["status"] = status
677
696
  __props__.__dict__["storage_grid_id"] = storage_grid_id
697
+ __props__.__dict__["system_tags"] = system_tags
678
698
  __props__.__dict__["time_created"] = time_created
679
699
  __props__.__dict__["time_updated"] = time_updated
680
700
  __props__.__dict__["version"] = version
@@ -852,6 +872,14 @@ class ExternalExadataStorageServer(pulumi.CustomResource):
852
872
  """
853
873
  return pulumi.get(self, "storage_grid_id")
854
874
 
875
+ @property
876
+ @pulumi.getter(name="systemTags")
877
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
878
+ """
879
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
880
+ """
881
+ return pulumi.get(self, "system_tags")
882
+
855
883
  @property
856
884
  @pulumi.getter(name="timeCreated")
857
885
  def time_created(self) -> pulumi.Output[str]:
@@ -118,6 +118,7 @@ class _ExternalListenerState:
118
118
  serviced_asms: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalListenerServicedAsmArgs']]]] = None,
119
119
  serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalListenerServicedDatabaseArgs']]]] = None,
120
120
  state: Optional[pulumi.Input[str]] = None,
121
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
121
122
  time_created: Optional[pulumi.Input[str]] = None,
122
123
  time_updated: Optional[pulumi.Input[str]] = None,
123
124
  trace_directory: Optional[pulumi.Input[str]] = None,
@@ -151,6 +152,7 @@ class _ExternalListenerState:
151
152
  :param pulumi.Input[Sequence[pulumi.Input['ExternalListenerServicedAsmArgs']]] serviced_asms: The list of ASMs that are serviced by the listener.
152
153
  :param pulumi.Input[Sequence[pulumi.Input['ExternalListenerServicedDatabaseArgs']]] serviced_databases: The list of databases that are serviced by the listener.
153
154
  :param pulumi.Input[str] state: The current lifecycle state of the external listener.
155
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
154
156
  :param pulumi.Input[str] time_created: The date and time the external listener was created.
155
157
  :param pulumi.Input[str] time_updated: The date and time the external listener was last updated.
156
158
  :param pulumi.Input[str] trace_directory: The destination directory of the listener trace file.
@@ -202,6 +204,8 @@ class _ExternalListenerState:
202
204
  pulumi.set(__self__, "serviced_databases", serviced_databases)
203
205
  if state is not None:
204
206
  pulumi.set(__self__, "state", state)
207
+ if system_tags is not None:
208
+ pulumi.set(__self__, "system_tags", system_tags)
205
209
  if time_created is not None:
206
210
  pulumi.set(__self__, "time_created", time_created)
207
211
  if time_updated is not None:
@@ -491,6 +495,18 @@ class _ExternalListenerState:
491
495
  def state(self, value: Optional[pulumi.Input[str]]):
492
496
  pulumi.set(self, "state", value)
493
497
 
498
+ @property
499
+ @pulumi.getter(name="systemTags")
500
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
501
+ """
502
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
503
+ """
504
+ return pulumi.get(self, "system_tags")
505
+
506
+ @system_tags.setter
507
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
508
+ pulumi.set(self, "system_tags", value)
509
+
494
510
  @property
495
511
  @pulumi.getter(name="timeCreated")
496
512
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -646,6 +662,7 @@ class ExternalListener(pulumi.CustomResource):
646
662
  __props__.__dict__["serviced_asms"] = None
647
663
  __props__.__dict__["serviced_databases"] = None
648
664
  __props__.__dict__["state"] = None
665
+ __props__.__dict__["system_tags"] = None
649
666
  __props__.__dict__["time_created"] = None
650
667
  __props__.__dict__["time_updated"] = None
651
668
  __props__.__dict__["trace_directory"] = None
@@ -683,6 +700,7 @@ class ExternalListener(pulumi.CustomResource):
683
700
  serviced_asms: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalListenerServicedAsmArgs']]]]] = None,
684
701
  serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalListenerServicedDatabaseArgs']]]]] = None,
685
702
  state: Optional[pulumi.Input[str]] = None,
703
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
686
704
  time_created: Optional[pulumi.Input[str]] = None,
687
705
  time_updated: Optional[pulumi.Input[str]] = None,
688
706
  trace_directory: Optional[pulumi.Input[str]] = None,
@@ -721,6 +739,7 @@ class ExternalListener(pulumi.CustomResource):
721
739
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalListenerServicedAsmArgs']]]] serviced_asms: The list of ASMs that are serviced by the listener.
722
740
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalListenerServicedDatabaseArgs']]]] serviced_databases: The list of databases that are serviced by the listener.
723
741
  :param pulumi.Input[str] state: The current lifecycle state of the external listener.
742
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
724
743
  :param pulumi.Input[str] time_created: The date and time the external listener was created.
725
744
  :param pulumi.Input[str] time_updated: The date and time the external listener was last updated.
726
745
  :param pulumi.Input[str] trace_directory: The destination directory of the listener trace file.
@@ -753,6 +772,7 @@ class ExternalListener(pulumi.CustomResource):
753
772
  __props__.__dict__["serviced_asms"] = serviced_asms
754
773
  __props__.__dict__["serviced_databases"] = serviced_databases
755
774
  __props__.__dict__["state"] = state
775
+ __props__.__dict__["system_tags"] = system_tags
756
776
  __props__.__dict__["time_created"] = time_created
757
777
  __props__.__dict__["time_updated"] = time_updated
758
778
  __props__.__dict__["trace_directory"] = trace_directory
@@ -947,6 +967,14 @@ class ExternalListener(pulumi.CustomResource):
947
967
  """
948
968
  return pulumi.get(self, "state")
949
969
 
970
+ @property
971
+ @pulumi.getter(name="systemTags")
972
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
973
+ """
974
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
975
+ """
976
+ return pulumi.get(self, "system_tags")
977
+
950
978
  @property
951
979
  @pulumi.getter(name="timeCreated")
952
980
  def time_created(self) -> pulumi.Output[str]:
@@ -0,0 +1,275 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = ['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs', 'ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement']
15
+
16
+ @pulumi.input_type
17
+ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs:
18
+ def __init__(__self__, *,
19
+ enable_external_container_dbm_feature: pulumi.Input[bool],
20
+ external_container_database_id: pulumi.Input[str],
21
+ feature_details: Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']] = None):
22
+ """
23
+ The set of arguments for constructing a ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement resource.
24
+ :param pulumi.Input[bool] enable_external_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
25
+
26
+
27
+ ** IMPORTANT **
28
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
29
+ :param pulumi.Input[str] external_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
30
+ :param pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
31
+ """
32
+ pulumi.set(__self__, "enable_external_container_dbm_feature", enable_external_container_dbm_feature)
33
+ pulumi.set(__self__, "external_container_database_id", external_container_database_id)
34
+ if feature_details is not None:
35
+ pulumi.set(__self__, "feature_details", feature_details)
36
+
37
+ @property
38
+ @pulumi.getter(name="enableExternalContainerDbmFeature")
39
+ def enable_external_container_dbm_feature(self) -> pulumi.Input[bool]:
40
+ """
41
+ (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
42
+
43
+
44
+ ** IMPORTANT **
45
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
46
+ """
47
+ return pulumi.get(self, "enable_external_container_dbm_feature")
48
+
49
+ @enable_external_container_dbm_feature.setter
50
+ def enable_external_container_dbm_feature(self, value: pulumi.Input[bool]):
51
+ pulumi.set(self, "enable_external_container_dbm_feature", value)
52
+
53
+ @property
54
+ @pulumi.getter(name="externalContainerDatabaseId")
55
+ def external_container_database_id(self) -> pulumi.Input[str]:
56
+ """
57
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
58
+ """
59
+ return pulumi.get(self, "external_container_database_id")
60
+
61
+ @external_container_database_id.setter
62
+ def external_container_database_id(self, value: pulumi.Input[str]):
63
+ pulumi.set(self, "external_container_database_id", value)
64
+
65
+ @property
66
+ @pulumi.getter(name="featureDetails")
67
+ def feature_details(self) -> Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]:
68
+ """
69
+ The details required to enable the specified Database Management feature.
70
+ """
71
+ return pulumi.get(self, "feature_details")
72
+
73
+ @feature_details.setter
74
+ def feature_details(self, value: Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]):
75
+ pulumi.set(self, "feature_details", value)
76
+
77
+
78
+ @pulumi.input_type
79
+ class _ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementState:
80
+ def __init__(__self__, *,
81
+ enable_external_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
82
+ external_container_database_id: Optional[pulumi.Input[str]] = None,
83
+ feature_details: Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']] = None):
84
+ """
85
+ Input properties used for looking up and filtering ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement resources.
86
+ :param pulumi.Input[bool] enable_external_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
87
+
88
+
89
+ ** IMPORTANT **
90
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
91
+ :param pulumi.Input[str] external_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
92
+ :param pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs'] feature_details: The details required to enable the specified Database Management feature.
93
+ """
94
+ if enable_external_container_dbm_feature is not None:
95
+ pulumi.set(__self__, "enable_external_container_dbm_feature", enable_external_container_dbm_feature)
96
+ if external_container_database_id is not None:
97
+ pulumi.set(__self__, "external_container_database_id", external_container_database_id)
98
+ if feature_details is not None:
99
+ pulumi.set(__self__, "feature_details", feature_details)
100
+
101
+ @property
102
+ @pulumi.getter(name="enableExternalContainerDbmFeature")
103
+ def enable_external_container_dbm_feature(self) -> Optional[pulumi.Input[bool]]:
104
+ """
105
+ (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
106
+
107
+
108
+ ** IMPORTANT **
109
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
110
+ """
111
+ return pulumi.get(self, "enable_external_container_dbm_feature")
112
+
113
+ @enable_external_container_dbm_feature.setter
114
+ def enable_external_container_dbm_feature(self, value: Optional[pulumi.Input[bool]]):
115
+ pulumi.set(self, "enable_external_container_dbm_feature", value)
116
+
117
+ @property
118
+ @pulumi.getter(name="externalContainerDatabaseId")
119
+ def external_container_database_id(self) -> Optional[pulumi.Input[str]]:
120
+ """
121
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
122
+ """
123
+ return pulumi.get(self, "external_container_database_id")
124
+
125
+ @external_container_database_id.setter
126
+ def external_container_database_id(self, value: Optional[pulumi.Input[str]]):
127
+ pulumi.set(self, "external_container_database_id", value)
128
+
129
+ @property
130
+ @pulumi.getter(name="featureDetails")
131
+ def feature_details(self) -> Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]:
132
+ """
133
+ The details required to enable the specified Database Management feature.
134
+ """
135
+ return pulumi.get(self, "feature_details")
136
+
137
+ @feature_details.setter
138
+ def feature_details(self, value: Optional[pulumi.Input['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]):
139
+ pulumi.set(self, "feature_details", value)
140
+
141
+
142
+ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement(pulumi.CustomResource):
143
+ @overload
144
+ def __init__(__self__,
145
+ resource_name: str,
146
+ opts: Optional[pulumi.ResourceOptions] = None,
147
+ enable_external_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
148
+ external_container_database_id: Optional[pulumi.Input[str]] = None,
149
+ feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]] = None,
150
+ __props__=None):
151
+ """
152
+ This resource provides the Externalcontainerdatabase External Container Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
153
+
154
+ Enables a Database Management feature for the specified external container database.
155
+
156
+ :param str resource_name: The name of the resource.
157
+ :param pulumi.ResourceOptions opts: Options for the resource.
158
+ :param pulumi.Input[bool] enable_external_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
159
+
160
+
161
+ ** IMPORTANT **
162
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
163
+ :param pulumi.Input[str] external_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
164
+ :param pulumi.Input[pulumi.InputType['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
165
+ """
166
+ ...
167
+ @overload
168
+ def __init__(__self__,
169
+ resource_name: str,
170
+ args: ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs,
171
+ opts: Optional[pulumi.ResourceOptions] = None):
172
+ """
173
+ This resource provides the Externalcontainerdatabase External Container Dbm Features Management resource in Oracle Cloud Infrastructure Database Management service.
174
+
175
+ Enables a Database Management feature for the specified external container database.
176
+
177
+ :param str resource_name: The name of the resource.
178
+ :param ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs args: The arguments to use to populate this resource's properties.
179
+ :param pulumi.ResourceOptions opts: Options for the resource.
180
+ """
181
+ ...
182
+ def __init__(__self__, resource_name: str, *args, **kwargs):
183
+ resource_args, opts = _utilities.get_resource_args_opts(ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs, pulumi.ResourceOptions, *args, **kwargs)
184
+ if resource_args is not None:
185
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
186
+ else:
187
+ __self__._internal_init(resource_name, *args, **kwargs)
188
+
189
+ def _internal_init(__self__,
190
+ resource_name: str,
191
+ opts: Optional[pulumi.ResourceOptions] = None,
192
+ enable_external_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
193
+ external_container_database_id: Optional[pulumi.Input[str]] = None,
194
+ feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]] = None,
195
+ __props__=None):
196
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
197
+ if not isinstance(opts, pulumi.ResourceOptions):
198
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
199
+ if opts.id is None:
200
+ if __props__ is not None:
201
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
202
+ __props__ = ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs.__new__(ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementArgs)
203
+
204
+ if enable_external_container_dbm_feature is None and not opts.urn:
205
+ raise TypeError("Missing required property 'enable_external_container_dbm_feature'")
206
+ __props__.__dict__["enable_external_container_dbm_feature"] = enable_external_container_dbm_feature
207
+ if external_container_database_id is None and not opts.urn:
208
+ raise TypeError("Missing required property 'external_container_database_id'")
209
+ __props__.__dict__["external_container_database_id"] = external_container_database_id
210
+ __props__.__dict__["feature_details"] = feature_details
211
+ super(ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement, __self__).__init__(
212
+ 'oci:DatabaseManagement/externalcontainerdatabaseExternalContainerDbmFeaturesManagement:ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement',
213
+ resource_name,
214
+ __props__,
215
+ opts)
216
+
217
+ @staticmethod
218
+ def get(resource_name: str,
219
+ id: pulumi.Input[str],
220
+ opts: Optional[pulumi.ResourceOptions] = None,
221
+ enable_external_container_dbm_feature: Optional[pulumi.Input[bool]] = None,
222
+ external_container_database_id: Optional[pulumi.Input[str]] = None,
223
+ feature_details: Optional[pulumi.Input[pulumi.InputType['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']]] = None) -> 'ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement':
224
+ """
225
+ Get an existing ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement resource's state with the given name, id, and optional extra
226
+ properties used to qualify the lookup.
227
+
228
+ :param str resource_name: The unique name of the resulting resource.
229
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
230
+ :param pulumi.ResourceOptions opts: Options for the resource.
231
+ :param pulumi.Input[bool] enable_external_container_dbm_feature: (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
232
+
233
+
234
+ ** IMPORTANT **
235
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
236
+ :param pulumi.Input[str] external_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
237
+ :param pulumi.Input[pulumi.InputType['ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsArgs']] feature_details: The details required to enable the specified Database Management feature.
238
+ """
239
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
240
+
241
+ __props__ = _ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementState.__new__(_ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementState)
242
+
243
+ __props__.__dict__["enable_external_container_dbm_feature"] = enable_external_container_dbm_feature
244
+ __props__.__dict__["external_container_database_id"] = external_container_database_id
245
+ __props__.__dict__["feature_details"] = feature_details
246
+ return ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement(resource_name, opts=opts, __props__=__props__)
247
+
248
+ @property
249
+ @pulumi.getter(name="enableExternalContainerDbmFeature")
250
+ def enable_external_container_dbm_feature(self) -> pulumi.Output[bool]:
251
+ """
252
+ (Updatable) A required field when set to `true` calls enable action and when set to `false` calls disable action.
253
+
254
+
255
+ ** IMPORTANT **
256
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
257
+ """
258
+ return pulumi.get(self, "enable_external_container_dbm_feature")
259
+
260
+ @property
261
+ @pulumi.getter(name="externalContainerDatabaseId")
262
+ def external_container_database_id(self) -> pulumi.Output[str]:
263
+ """
264
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external container database.
265
+ """
266
+ return pulumi.get(self, "external_container_database_id")
267
+
268
+ @property
269
+ @pulumi.getter(name="featureDetails")
270
+ def feature_details(self) -> pulumi.Output['outputs.ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails']:
271
+ """
272
+ The details required to enable the specified Database Management feature.
273
+ """
274
+ return pulumi.get(self, "feature_details")
275
+