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
@@ -109,6 +109,7 @@ class _ExternalClusterInstanceState:
109
109
  lifecycle_details: Optional[pulumi.Input[str]] = None,
110
110
  node_role: Optional[pulumi.Input[str]] = None,
111
111
  state: Optional[pulumi.Input[str]] = None,
112
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
112
113
  time_created: Optional[pulumi.Input[str]] = None,
113
114
  time_updated: Optional[pulumi.Input[str]] = None):
114
115
  """
@@ -133,6 +134,7 @@ class _ExternalClusterInstanceState:
133
134
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
134
135
  :param pulumi.Input[str] node_role: The role of the cluster node.
135
136
  :param pulumi.Input[str] state: The current lifecycle state of the external cluster instance.
137
+ :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"}`
136
138
  :param pulumi.Input[str] time_created: The date and time the external cluster instance was created.
137
139
  :param pulumi.Input[str] time_updated: The date and time the external cluster instance was last updated.
138
140
  """
@@ -168,6 +170,8 @@ class _ExternalClusterInstanceState:
168
170
  pulumi.set(__self__, "node_role", node_role)
169
171
  if state is not None:
170
172
  pulumi.set(__self__, "state", state)
173
+ if system_tags is not None:
174
+ pulumi.set(__self__, "system_tags", system_tags)
171
175
  if time_created is not None:
172
176
  pulumi.set(__self__, "time_created", time_created)
173
177
  if time_updated is not None:
@@ -369,6 +373,18 @@ class _ExternalClusterInstanceState:
369
373
  def state(self, value: Optional[pulumi.Input[str]]):
370
374
  pulumi.set(self, "state", value)
371
375
 
376
+ @property
377
+ @pulumi.getter(name="systemTags")
378
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
379
+ """
380
+ 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"}`
381
+ """
382
+ return pulumi.get(self, "system_tags")
383
+
384
+ @system_tags.setter
385
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
386
+ pulumi.set(self, "system_tags", value)
387
+
372
388
  @property
373
389
  @pulumi.getter(name="timeCreated")
374
390
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -493,6 +509,7 @@ class ExternalClusterInstance(pulumi.CustomResource):
493
509
  __props__.__dict__["lifecycle_details"] = None
494
510
  __props__.__dict__["node_role"] = None
495
511
  __props__.__dict__["state"] = None
512
+ __props__.__dict__["system_tags"] = None
496
513
  __props__.__dict__["time_created"] = None
497
514
  __props__.__dict__["time_updated"] = None
498
515
  super(ExternalClusterInstance, __self__).__init__(
@@ -521,6 +538,7 @@ class ExternalClusterInstance(pulumi.CustomResource):
521
538
  lifecycle_details: Optional[pulumi.Input[str]] = None,
522
539
  node_role: Optional[pulumi.Input[str]] = None,
523
540
  state: Optional[pulumi.Input[str]] = None,
541
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
524
542
  time_created: Optional[pulumi.Input[str]] = None,
525
543
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalClusterInstance':
526
544
  """
@@ -550,6 +568,7 @@ class ExternalClusterInstance(pulumi.CustomResource):
550
568
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
551
569
  :param pulumi.Input[str] node_role: The role of the cluster node.
552
570
  :param pulumi.Input[str] state: The current lifecycle state of the external cluster instance.
571
+ :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"}`
553
572
  :param pulumi.Input[str] time_created: The date and time the external cluster instance was created.
554
573
  :param pulumi.Input[str] time_updated: The date and time the external cluster instance was last updated.
555
574
  """
@@ -573,6 +592,7 @@ class ExternalClusterInstance(pulumi.CustomResource):
573
592
  __props__.__dict__["lifecycle_details"] = lifecycle_details
574
593
  __props__.__dict__["node_role"] = node_role
575
594
  __props__.__dict__["state"] = state
595
+ __props__.__dict__["system_tags"] = system_tags
576
596
  __props__.__dict__["time_created"] = time_created
577
597
  __props__.__dict__["time_updated"] = time_updated
578
598
  return ExternalClusterInstance(resource_name, opts=opts, __props__=__props__)
@@ -709,6 +729,14 @@ class ExternalClusterInstance(pulumi.CustomResource):
709
729
  """
710
730
  return pulumi.get(self, "state")
711
731
 
732
+ @property
733
+ @pulumi.getter(name="systemTags")
734
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
735
+ """
736
+ 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"}`
737
+ """
738
+ return pulumi.get(self, "system_tags")
739
+
712
740
  @property
713
741
  @pulumi.getter(name="timeCreated")
714
742
  def time_created(self) -> pulumi.Output[str]:
@@ -88,6 +88,7 @@ class _ExternalDbHomeState:
88
88
  home_directory: Optional[pulumi.Input[str]] = None,
89
89
  lifecycle_details: Optional[pulumi.Input[str]] = None,
90
90
  state: Optional[pulumi.Input[str]] = None,
91
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
91
92
  time_created: Optional[pulumi.Input[str]] = None,
92
93
  time_updated: Optional[pulumi.Input[str]] = None):
93
94
  """
@@ -107,6 +108,7 @@ class _ExternalDbHomeState:
107
108
  :param pulumi.Input[str] home_directory: The location of the DB home.
108
109
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
109
110
  :param pulumi.Input[str] state: The current lifecycle state of the external DB home.
111
+ :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"}`
110
112
  :param pulumi.Input[str] time_created: The date and time the external DB home was created.
111
113
  :param pulumi.Input[str] time_updated: The date and time the external DB home was last updated.
112
114
  """
@@ -132,6 +134,8 @@ class _ExternalDbHomeState:
132
134
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
133
135
  if state is not None:
134
136
  pulumi.set(__self__, "state", state)
137
+ if system_tags is not None:
138
+ pulumi.set(__self__, "system_tags", system_tags)
135
139
  if time_created is not None:
136
140
  pulumi.set(__self__, "time_created", time_created)
137
141
  if time_updated is not None:
@@ -273,6 +277,18 @@ class _ExternalDbHomeState:
273
277
  def state(self, value: Optional[pulumi.Input[str]]):
274
278
  pulumi.set(self, "state", value)
275
279
 
280
+ @property
281
+ @pulumi.getter(name="systemTags")
282
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
283
+ """
284
+ 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"}`
285
+ """
286
+ return pulumi.get(self, "system_tags")
287
+
288
+ @system_tags.setter
289
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
290
+ pulumi.set(self, "system_tags", value)
291
+
276
292
  @property
277
293
  @pulumi.getter(name="timeCreated")
278
294
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -389,6 +405,7 @@ class ExternalDbHome(pulumi.CustomResource):
389
405
  __props__.__dict__["home_directory"] = None
390
406
  __props__.__dict__["lifecycle_details"] = None
391
407
  __props__.__dict__["state"] = None
408
+ __props__.__dict__["system_tags"] = None
392
409
  __props__.__dict__["time_created"] = None
393
410
  __props__.__dict__["time_updated"] = None
394
411
  super(ExternalDbHome, __self__).__init__(
@@ -412,6 +429,7 @@ class ExternalDbHome(pulumi.CustomResource):
412
429
  home_directory: Optional[pulumi.Input[str]] = None,
413
430
  lifecycle_details: Optional[pulumi.Input[str]] = None,
414
431
  state: Optional[pulumi.Input[str]] = None,
432
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
415
433
  time_created: Optional[pulumi.Input[str]] = None,
416
434
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalDbHome':
417
435
  """
@@ -436,6 +454,7 @@ class ExternalDbHome(pulumi.CustomResource):
436
454
  :param pulumi.Input[str] home_directory: The location of the DB home.
437
455
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
438
456
  :param pulumi.Input[str] state: The current lifecycle state of the external DB home.
457
+ :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"}`
439
458
  :param pulumi.Input[str] time_created: The date and time the external DB home was created.
440
459
  :param pulumi.Input[str] time_updated: The date and time the external DB home was last updated.
441
460
  """
@@ -454,6 +473,7 @@ class ExternalDbHome(pulumi.CustomResource):
454
473
  __props__.__dict__["home_directory"] = home_directory
455
474
  __props__.__dict__["lifecycle_details"] = lifecycle_details
456
475
  __props__.__dict__["state"] = state
476
+ __props__.__dict__["system_tags"] = system_tags
457
477
  __props__.__dict__["time_created"] = time_created
458
478
  __props__.__dict__["time_updated"] = time_updated
459
479
  return ExternalDbHome(resource_name, opts=opts, __props__=__props__)
@@ -550,6 +570,14 @@ class ExternalDbHome(pulumi.CustomResource):
550
570
  """
551
571
  return pulumi.get(self, "state")
552
572
 
573
+ @property
574
+ @pulumi.getter(name="systemTags")
575
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
576
+ """
577
+ 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"}`
578
+ """
579
+ return pulumi.get(self, "system_tags")
580
+
553
581
  @property
554
582
  @pulumi.getter(name="timeCreated")
555
583
  def time_created(self) -> pulumi.Output[str]:
@@ -108,6 +108,7 @@ class _ExternalDbNodeState:
108
108
  lifecycle_details: Optional[pulumi.Input[str]] = None,
109
109
  memory_size_in_gbs: Optional[pulumi.Input[float]] = None,
110
110
  state: Optional[pulumi.Input[str]] = None,
111
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
111
112
  time_created: Optional[pulumi.Input[str]] = None,
112
113
  time_updated: Optional[pulumi.Input[str]] = None):
113
114
  """
@@ -131,6 +132,7 @@ class _ExternalDbNodeState:
131
132
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
132
133
  :param pulumi.Input[float] memory_size_in_gbs: The total memory in gigabytes (GB) on the DB node.
133
134
  :param pulumi.Input[str] state: The current lifecycle state of the external DB node.
135
+ :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"}`
134
136
  :param pulumi.Input[str] time_created: The date and time the external DB node was created.
135
137
  :param pulumi.Input[str] time_updated: The date and time the external DB node was last updated.
136
138
  """
@@ -164,6 +166,8 @@ class _ExternalDbNodeState:
164
166
  pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
165
167
  if state is not None:
166
168
  pulumi.set(__self__, "state", state)
169
+ if system_tags is not None:
170
+ pulumi.set(__self__, "system_tags", system_tags)
167
171
  if time_created is not None:
168
172
  pulumi.set(__self__, "time_created", time_created)
169
173
  if time_updated is not None:
@@ -353,6 +357,18 @@ class _ExternalDbNodeState:
353
357
  def state(self, value: Optional[pulumi.Input[str]]):
354
358
  pulumi.set(self, "state", value)
355
359
 
360
+ @property
361
+ @pulumi.getter(name="systemTags")
362
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
363
+ """
364
+ 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"}`
365
+ """
366
+ return pulumi.get(self, "system_tags")
367
+
368
+ @system_tags.setter
369
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
370
+ pulumi.set(self, "system_tags", value)
371
+
356
372
  @property
357
373
  @pulumi.getter(name="timeCreated")
358
374
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -476,6 +492,7 @@ class ExternalDbNode(pulumi.CustomResource):
476
492
  __props__.__dict__["lifecycle_details"] = None
477
493
  __props__.__dict__["memory_size_in_gbs"] = None
478
494
  __props__.__dict__["state"] = None
495
+ __props__.__dict__["system_tags"] = None
479
496
  __props__.__dict__["time_created"] = None
480
497
  __props__.__dict__["time_updated"] = None
481
498
  super(ExternalDbNode, __self__).__init__(
@@ -503,6 +520,7 @@ class ExternalDbNode(pulumi.CustomResource):
503
520
  lifecycle_details: Optional[pulumi.Input[str]] = None,
504
521
  memory_size_in_gbs: Optional[pulumi.Input[float]] = None,
505
522
  state: Optional[pulumi.Input[str]] = None,
523
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
506
524
  time_created: Optional[pulumi.Input[str]] = None,
507
525
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalDbNode':
508
526
  """
@@ -531,6 +549,7 @@ class ExternalDbNode(pulumi.CustomResource):
531
549
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
532
550
  :param pulumi.Input[float] memory_size_in_gbs: The total memory in gigabytes (GB) on the DB node.
533
551
  :param pulumi.Input[str] state: The current lifecycle state of the external DB node.
552
+ :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"}`
534
553
  :param pulumi.Input[str] time_created: The date and time the external DB node was created.
535
554
  :param pulumi.Input[str] time_updated: The date and time the external DB node was last updated.
536
555
  """
@@ -553,6 +572,7 @@ class ExternalDbNode(pulumi.CustomResource):
553
572
  __props__.__dict__["lifecycle_details"] = lifecycle_details
554
573
  __props__.__dict__["memory_size_in_gbs"] = memory_size_in_gbs
555
574
  __props__.__dict__["state"] = state
575
+ __props__.__dict__["system_tags"] = system_tags
556
576
  __props__.__dict__["time_created"] = time_created
557
577
  __props__.__dict__["time_updated"] = time_updated
558
578
  return ExternalDbNode(resource_name, opts=opts, __props__=__props__)
@@ -681,6 +701,14 @@ class ExternalDbNode(pulumi.CustomResource):
681
701
  """
682
702
  return pulumi.get(self, "state")
683
703
 
704
+ @property
705
+ @pulumi.getter(name="systemTags")
706
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
707
+ """
708
+ 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"}`
709
+ """
710
+ return pulumi.get(self, "system_tags")
711
+
684
712
  @property
685
713
  @pulumi.getter(name="timeCreated")
686
714
  def time_created(self) -> pulumi.Output[str]:
@@ -146,6 +146,7 @@ class _ExternalDbSystemState:
146
146
  lifecycle_details: Optional[pulumi.Input[str]] = None,
147
147
  stack_monitoring_config: Optional[pulumi.Input['ExternalDbSystemStackMonitoringConfigArgs']] = None,
148
148
  state: Optional[pulumi.Input[str]] = None,
149
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
149
150
  time_created: Optional[pulumi.Input[str]] = None,
150
151
  time_updated: Optional[pulumi.Input[str]] = None):
151
152
  """
@@ -162,6 +163,7 @@ class _ExternalDbSystemState:
162
163
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
163
164
  :param pulumi.Input['ExternalDbSystemStackMonitoringConfigArgs'] stack_monitoring_config: The details of the associated service that will be enabled or disabled for an external DB System.
164
165
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system resource.
166
+ :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"}`
165
167
  :param pulumi.Input[str] time_created: The date and time the external DB system was created.
166
168
  :param pulumi.Input[str] time_updated: The date and time the external DB system was last updated.
167
169
  """
@@ -189,6 +191,8 @@ class _ExternalDbSystemState:
189
191
  pulumi.set(__self__, "stack_monitoring_config", stack_monitoring_config)
190
192
  if state is not None:
191
193
  pulumi.set(__self__, "state", state)
194
+ if system_tags is not None:
195
+ pulumi.set(__self__, "system_tags", system_tags)
192
196
  if time_created is not None:
193
197
  pulumi.set(__self__, "time_created", time_created)
194
198
  if time_updated is not None:
@@ -338,6 +342,18 @@ class _ExternalDbSystemState:
338
342
  def state(self, value: Optional[pulumi.Input[str]]):
339
343
  pulumi.set(self, "state", value)
340
344
 
345
+ @property
346
+ @pulumi.getter(name="systemTags")
347
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
348
+ """
349
+ 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"}`
350
+ """
351
+ return pulumi.get(self, "system_tags")
352
+
353
+ @system_tags.setter
354
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
355
+ pulumi.set(self, "system_tags", value)
356
+
341
357
  @property
342
358
  @pulumi.getter(name="timeCreated")
343
359
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -515,6 +531,7 @@ class ExternalDbSystem(pulumi.CustomResource):
515
531
  __props__.__dict__["is_cluster"] = None
516
532
  __props__.__dict__["lifecycle_details"] = None
517
533
  __props__.__dict__["state"] = None
534
+ __props__.__dict__["system_tags"] = None
518
535
  __props__.__dict__["time_created"] = None
519
536
  __props__.__dict__["time_updated"] = None
520
537
  super(ExternalDbSystem, __self__).__init__(
@@ -539,6 +556,7 @@ class ExternalDbSystem(pulumi.CustomResource):
539
556
  lifecycle_details: Optional[pulumi.Input[str]] = None,
540
557
  stack_monitoring_config: Optional[pulumi.Input[pulumi.InputType['ExternalDbSystemStackMonitoringConfigArgs']]] = None,
541
558
  state: Optional[pulumi.Input[str]] = None,
559
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
542
560
  time_created: Optional[pulumi.Input[str]] = None,
543
561
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalDbSystem':
544
562
  """
@@ -560,6 +578,7 @@ class ExternalDbSystem(pulumi.CustomResource):
560
578
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
561
579
  :param pulumi.Input[pulumi.InputType['ExternalDbSystemStackMonitoringConfigArgs']] stack_monitoring_config: The details of the associated service that will be enabled or disabled for an external DB System.
562
580
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system resource.
581
+ :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"}`
563
582
  :param pulumi.Input[str] time_created: The date and time the external DB system was created.
564
583
  :param pulumi.Input[str] time_updated: The date and time the external DB system was last updated.
565
584
  """
@@ -579,6 +598,7 @@ class ExternalDbSystem(pulumi.CustomResource):
579
598
  __props__.__dict__["lifecycle_details"] = lifecycle_details
580
599
  __props__.__dict__["stack_monitoring_config"] = stack_monitoring_config
581
600
  __props__.__dict__["state"] = state
601
+ __props__.__dict__["system_tags"] = system_tags
582
602
  __props__.__dict__["time_created"] = time_created
583
603
  __props__.__dict__["time_updated"] = time_updated
584
604
  return ExternalDbSystem(resource_name, opts=opts, __props__=__props__)
@@ -679,6 +699,14 @@ class ExternalDbSystem(pulumi.CustomResource):
679
699
  """
680
700
  return pulumi.get(self, "state")
681
701
 
702
+ @property
703
+ @pulumi.getter(name="systemTags")
704
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
705
+ """
706
+ 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"}`
707
+ """
708
+ return pulumi.get(self, "system_tags")
709
+
682
710
  @property
683
711
  @pulumi.getter(name="timeCreated")
684
712
  def time_created(self) -> pulumi.Output[str]:
@@ -154,6 +154,7 @@ class _ExternalDbSystemConnectorState:
154
154
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
155
155
  lifecycle_details: Optional[pulumi.Input[str]] = None,
156
156
  state: Optional[pulumi.Input[str]] = None,
157
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
157
158
  time_connection_status_last_updated: Optional[pulumi.Input[str]] = None,
158
159
  time_created: Optional[pulumi.Input[str]] = None,
159
160
  time_updated: Optional[pulumi.Input[str]] = None):
@@ -175,6 +176,7 @@ class _ExternalDbSystemConnectorState:
175
176
  :param pulumi.Input[Mapping[str, Any]] 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"}`
176
177
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
177
178
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system connector.
179
+ :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"}`
178
180
  :param pulumi.Input[str] time_connection_status_last_updated: The date and time the connectionStatus of the external DB system connector was last updated.
179
181
  :param pulumi.Input[str] time_created: The date and time the external DB system connector was created.
180
182
  :param pulumi.Input[str] time_updated: The date and time the external DB system connector was last updated.
@@ -203,6 +205,8 @@ class _ExternalDbSystemConnectorState:
203
205
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
204
206
  if state is not None:
205
207
  pulumi.set(__self__, "state", state)
208
+ if system_tags is not None:
209
+ pulumi.set(__self__, "system_tags", system_tags)
206
210
  if time_connection_status_last_updated is not None:
207
211
  pulumi.set(__self__, "time_connection_status_last_updated", time_connection_status_last_updated)
208
212
  if time_created is not None:
@@ -358,6 +362,18 @@ class _ExternalDbSystemConnectorState:
358
362
  def state(self, value: Optional[pulumi.Input[str]]):
359
363
  pulumi.set(self, "state", value)
360
364
 
365
+ @property
366
+ @pulumi.getter(name="systemTags")
367
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
368
+ """
369
+ 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"}`
370
+ """
371
+ return pulumi.get(self, "system_tags")
372
+
373
+ @system_tags.setter
374
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
375
+ pulumi.set(self, "system_tags", value)
376
+
361
377
  @property
362
378
  @pulumi.getter(name="timeConnectionStatusLastUpdated")
363
379
  def time_connection_status_last_updated(self) -> Optional[pulumi.Input[str]]:
@@ -525,6 +541,7 @@ class ExternalDbSystemConnector(pulumi.CustomResource):
525
541
  __props__.__dict__["connection_status"] = None
526
542
  __props__.__dict__["lifecycle_details"] = None
527
543
  __props__.__dict__["state"] = None
544
+ __props__.__dict__["system_tags"] = None
528
545
  __props__.__dict__["time_connection_status_last_updated"] = None
529
546
  __props__.__dict__["time_created"] = None
530
547
  __props__.__dict__["time_updated"] = None
@@ -550,6 +567,7 @@ class ExternalDbSystemConnector(pulumi.CustomResource):
550
567
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
551
568
  lifecycle_details: Optional[pulumi.Input[str]] = None,
552
569
  state: Optional[pulumi.Input[str]] = None,
570
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
553
571
  time_connection_status_last_updated: Optional[pulumi.Input[str]] = None,
554
572
  time_created: Optional[pulumi.Input[str]] = None,
555
573
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalDbSystemConnector':
@@ -576,6 +594,7 @@ class ExternalDbSystemConnector(pulumi.CustomResource):
576
594
  :param pulumi.Input[Mapping[str, Any]] 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"}`
577
595
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
578
596
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system connector.
597
+ :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"}`
579
598
  :param pulumi.Input[str] time_connection_status_last_updated: The date and time the connectionStatus of the external DB system connector was last updated.
580
599
  :param pulumi.Input[str] time_created: The date and time the external DB system connector was created.
581
600
  :param pulumi.Input[str] time_updated: The date and time the external DB system connector was last updated.
@@ -596,6 +615,7 @@ class ExternalDbSystemConnector(pulumi.CustomResource):
596
615
  __props__.__dict__["freeform_tags"] = freeform_tags
597
616
  __props__.__dict__["lifecycle_details"] = lifecycle_details
598
617
  __props__.__dict__["state"] = state
618
+ __props__.__dict__["system_tags"] = system_tags
599
619
  __props__.__dict__["time_connection_status_last_updated"] = time_connection_status_last_updated
600
620
  __props__.__dict__["time_created"] = time_created
601
621
  __props__.__dict__["time_updated"] = time_updated
@@ -701,6 +721,14 @@ class ExternalDbSystemConnector(pulumi.CustomResource):
701
721
  """
702
722
  return pulumi.get(self, "state")
703
723
 
724
+ @property
725
+ @pulumi.getter(name="systemTags")
726
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
727
+ """
728
+ 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"}`
729
+ """
730
+ return pulumi.get(self, "system_tags")
731
+
704
732
  @property
705
733
  @pulumi.getter(name="timeConnectionStatusLastUpdated")
706
734
  def time_connection_status_last_updated(self) -> pulumi.Output[str]:
@@ -130,6 +130,7 @@ class _ExternalDbSystemDiscoveryState:
130
130
  patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalDbSystemDiscoveryPatchOperationArgs']]]] = None,
131
131
  resource_id: Optional[pulumi.Input[str]] = None,
132
132
  state: Optional[pulumi.Input[str]] = None,
133
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
133
134
  time_created: Optional[pulumi.Input[str]] = None,
134
135
  time_updated: Optional[pulumi.Input[str]] = None):
135
136
  """
@@ -145,6 +146,7 @@ class _ExternalDbSystemDiscoveryState:
145
146
  :param pulumi.Input[Sequence[pulumi.Input['ExternalDbSystemDiscoveryPatchOperationArgs']]] patch_operations: (Updatable)
146
147
  :param pulumi.Input[str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
147
148
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system discovery resource.
149
+ :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"}`
148
150
  :param pulumi.Input[str] time_created: The date and time the external DB system discovery was created.
149
151
  :param pulumi.Input[str] time_updated: The date and time the external DB system discovery was last updated.
150
152
  """
@@ -172,6 +174,8 @@ class _ExternalDbSystemDiscoveryState:
172
174
  pulumi.set(__self__, "resource_id", resource_id)
173
175
  if state is not None:
174
176
  pulumi.set(__self__, "state", state)
177
+ if system_tags is not None:
178
+ pulumi.set(__self__, "system_tags", system_tags)
175
179
  if time_created is not None:
176
180
  pulumi.set(__self__, "time_created", time_created)
177
181
  if time_updated is not None:
@@ -318,6 +322,18 @@ class _ExternalDbSystemDiscoveryState:
318
322
  def state(self, value: Optional[pulumi.Input[str]]):
319
323
  pulumi.set(self, "state", value)
320
324
 
325
+ @property
326
+ @pulumi.getter(name="systemTags")
327
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
328
+ """
329
+ 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"}`
330
+ """
331
+ return pulumi.get(self, "system_tags")
332
+
333
+ @system_tags.setter
334
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
335
+ pulumi.set(self, "system_tags", value)
336
+
321
337
  @property
322
338
  @pulumi.getter(name="timeCreated")
323
339
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -446,6 +462,7 @@ class ExternalDbSystemDiscovery(pulumi.CustomResource):
446
462
  __props__.__dict__["lifecycle_details"] = None
447
463
  __props__.__dict__["resource_id"] = None
448
464
  __props__.__dict__["state"] = None
465
+ __props__.__dict__["system_tags"] = None
449
466
  __props__.__dict__["time_created"] = None
450
467
  __props__.__dict__["time_updated"] = None
451
468
  super(ExternalDbSystemDiscovery, __self__).__init__(
@@ -470,6 +487,7 @@ class ExternalDbSystemDiscovery(pulumi.CustomResource):
470
487
  patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalDbSystemDiscoveryPatchOperationArgs']]]]] = None,
471
488
  resource_id: Optional[pulumi.Input[str]] = None,
472
489
  state: Optional[pulumi.Input[str]] = None,
490
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
473
491
  time_created: Optional[pulumi.Input[str]] = None,
474
492
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ExternalDbSystemDiscovery':
475
493
  """
@@ -490,6 +508,7 @@ class ExternalDbSystemDiscovery(pulumi.CustomResource):
490
508
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalDbSystemDiscoveryPatchOperationArgs']]]] patch_operations: (Updatable)
491
509
  :param pulumi.Input[str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
492
510
  :param pulumi.Input[str] state: The current lifecycle state of the external DB system discovery resource.
511
+ :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"}`
493
512
  :param pulumi.Input[str] time_created: The date and time the external DB system discovery was created.
494
513
  :param pulumi.Input[str] time_updated: The date and time the external DB system discovery was last updated.
495
514
  """
@@ -509,6 +528,7 @@ class ExternalDbSystemDiscovery(pulumi.CustomResource):
509
528
  __props__.__dict__["patch_operations"] = patch_operations
510
529
  __props__.__dict__["resource_id"] = resource_id
511
530
  __props__.__dict__["state"] = state
531
+ __props__.__dict__["system_tags"] = system_tags
512
532
  __props__.__dict__["time_created"] = time_created
513
533
  __props__.__dict__["time_updated"] = time_updated
514
534
  return ExternalDbSystemDiscovery(resource_name, opts=opts, __props__=__props__)
@@ -606,6 +626,14 @@ class ExternalDbSystemDiscovery(pulumi.CustomResource):
606
626
  """
607
627
  return pulumi.get(self, "state")
608
628
 
629
+ @property
630
+ @pulumi.getter(name="systemTags")
631
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
632
+ """
633
+ 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"}`
634
+ """
635
+ return pulumi.get(self, "system_tags")
636
+
609
637
  @property
610
638
  @pulumi.getter(name="timeCreated")
611
639
  def time_created(self) -> pulumi.Output[str]:
@@ -174,6 +174,7 @@ class _ExternalExadataInfrastructureState:
174
174
  status: Optional[pulumi.Input[str]] = None,
175
175
  storage_grids: Optional[pulumi.Input[Sequence[pulumi.Input['ExternalExadataInfrastructureStorageGridArgs']]]] = None,
176
176
  storage_server_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
177
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
177
178
  time_created: Optional[pulumi.Input[str]] = None,
178
179
  time_updated: Optional[pulumi.Input[str]] = None,
179
180
  version: Optional[pulumi.Input[str]] = None):
@@ -200,6 +201,7 @@ class _ExternalExadataInfrastructureState:
200
201
 
201
202
  ** IMPORTANT **
202
203
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
204
+ :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"}`
203
205
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
204
206
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
205
207
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -238,6 +240,8 @@ class _ExternalExadataInfrastructureState:
238
240
  pulumi.set(__self__, "storage_grids", storage_grids)
239
241
  if storage_server_names is not None:
240
242
  pulumi.set(__self__, "storage_server_names", storage_server_names)
243
+ if system_tags is not None:
244
+ pulumi.set(__self__, "system_tags", system_tags)
241
245
  if time_created is not None:
242
246
  pulumi.set(__self__, "time_created", time_created)
243
247
  if time_updated is not None:
@@ -453,6 +457,18 @@ class _ExternalExadataInfrastructureState:
453
457
  def storage_server_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
454
458
  pulumi.set(self, "storage_server_names", value)
455
459
 
460
+ @property
461
+ @pulumi.getter(name="systemTags")
462
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
463
+ """
464
+ 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"}`
465
+ """
466
+ return pulumi.get(self, "system_tags")
467
+
468
+ @system_tags.setter
469
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
470
+ pulumi.set(self, "system_tags", value)
471
+
456
472
  @property
457
473
  @pulumi.getter(name="timeCreated")
458
474
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -658,6 +674,7 @@ class ExternalExadataInfrastructure(pulumi.CustomResource):
658
674
  __props__.__dict__["state"] = None
659
675
  __props__.__dict__["status"] = None
660
676
  __props__.__dict__["storage_grids"] = None
677
+ __props__.__dict__["system_tags"] = None
661
678
  __props__.__dict__["time_created"] = None
662
679
  __props__.__dict__["time_updated"] = None
663
680
  __props__.__dict__["version"] = None
@@ -688,6 +705,7 @@ class ExternalExadataInfrastructure(pulumi.CustomResource):
688
705
  status: Optional[pulumi.Input[str]] = None,
689
706
  storage_grids: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExternalExadataInfrastructureStorageGridArgs']]]]] = None,
690
707
  storage_server_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
708
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
691
709
  time_created: Optional[pulumi.Input[str]] = None,
692
710
  time_updated: Optional[pulumi.Input[str]] = None,
693
711
  version: Optional[pulumi.Input[str]] = None) -> 'ExternalExadataInfrastructure':
@@ -719,6 +737,7 @@ class ExternalExadataInfrastructure(pulumi.CustomResource):
719
737
 
720
738
  ** IMPORTANT **
721
739
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
740
+ :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"}`
722
741
  :param pulumi.Input[str] time_created: The timestamp of the creation of the Exadata resource.
723
742
  :param pulumi.Input[str] time_updated: The timestamp of the last update of the Exadata resource.
724
743
  :param pulumi.Input[str] version: The version of the Exadata resource.
@@ -744,6 +763,7 @@ class ExternalExadataInfrastructure(pulumi.CustomResource):
744
763
  __props__.__dict__["status"] = status
745
764
  __props__.__dict__["storage_grids"] = storage_grids
746
765
  __props__.__dict__["storage_server_names"] = storage_server_names
766
+ __props__.__dict__["system_tags"] = system_tags
747
767
  __props__.__dict__["time_created"] = time_created
748
768
  __props__.__dict__["time_updated"] = time_updated
749
769
  __props__.__dict__["version"] = version
@@ -889,6 +909,14 @@ class ExternalExadataInfrastructure(pulumi.CustomResource):
889
909
  """
890
910
  return pulumi.get(self, "storage_server_names")
891
911
 
912
+ @property
913
+ @pulumi.getter(name="systemTags")
914
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
915
+ """
916
+ 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"}`
917
+ """
918
+ return pulumi.get(self, "system_tags")
919
+
892
920
  @property
893
921
  @pulumi.getter(name="timeCreated")
894
922
  def time_created(self) -> pulumi.Output[str]: