pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. pulumi_oci/__init__.py +51 -0
  2. pulumi_oci/clusterplacementgroups/__init__.py +12 -0
  3. pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
  4. pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
  5. pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
  6. pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
  7. pulumi_oci/clusterplacementgroups/outputs.py +485 -0
  8. pulumi_oci/config/__init__.pyi +2 -2
  9. pulumi_oci/config/vars.py +2 -2
  10. pulumi_oci/core/_inputs.py +116 -28
  11. pulumi_oci/core/boot_volume.py +49 -0
  12. pulumi_oci/core/compute_capacity_reservation.py +2 -0
  13. pulumi_oci/core/compute_cluster.py +2 -4
  14. pulumi_oci/core/drg_route_distribution.py +7 -7
  15. pulumi_oci/core/get_boot_volume.py +14 -1
  16. pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
  17. pulumi_oci/core/get_instance.py +14 -1
  18. pulumi_oci/core/get_subnet.py +2 -2
  19. pulumi_oci/core/get_vcn.py +2 -2
  20. pulumi_oci/core/get_volume.py +14 -1
  21. pulumi_oci/core/get_volumes.py +21 -1
  22. pulumi_oci/core/instance.py +51 -4
  23. pulumi_oci/core/instance_configuration.py +8 -0
  24. pulumi_oci/core/outputs.py +302 -45
  25. pulumi_oci/core/volume.py +49 -0
  26. pulumi_oci/core/volume_attachment.py +28 -0
  27. pulumi_oci/core/volume_group.py +49 -0
  28. pulumi_oci/database/db_home.py +47 -0
  29. pulumi_oci/database/get_db_home.py +14 -1
  30. pulumi_oci/database/outputs.py +11 -0
  31. pulumi_oci/databasemanagement/__init__.py +5 -0
  32. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  33. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  34. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  35. pulumi_oci/databasemanagement/external_asm.py +28 -0
  36. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  37. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  38. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  39. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  40. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  41. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  42. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  43. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  44. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  45. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  46. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  47. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  48. pulumi_oci/databasemanagement/external_listener.py +28 -0
  49. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  50. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  51. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  52. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  53. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  54. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  55. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  56. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  57. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  58. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  59. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  60. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  61. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  62. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  63. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  64. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  65. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  66. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  67. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  68. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  69. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  70. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  71. pulumi_oci/databasemanagement/managed_database.py +28 -0
  72. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  73. pulumi_oci/databasemanagement/named_credential.py +28 -0
  74. pulumi_oci/databasemanagement/outputs.py +1723 -214
  75. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  76. pulumi_oci/databasemigration/_inputs.py +20 -0
  77. pulumi_oci/databasemigration/connection.py +13 -0
  78. pulumi_oci/databasemigration/get_connection.py +3 -0
  79. pulumi_oci/databasemigration/get_migration.py +3 -0
  80. pulumi_oci/databasemigration/migration.py +13 -0
  81. pulumi_oci/databasemigration/outputs.py +68 -0
  82. pulumi_oci/datasafe/__init__.py +3 -0
  83. pulumi_oci/datasafe/_inputs.py +80 -0
  84. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  85. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  86. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  87. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  88. pulumi_oci/datasafe/masking_policy.py +75 -28
  89. pulumi_oci/datasafe/outputs.py +287 -0
  90. pulumi_oci/networkloadbalancer/backend_set.py +49 -0
  91. pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
  92. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
  93. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  94. pulumi_oci/provider.py +8 -8
  95. pulumi_oci/recoverymod/_inputs.py +16 -0
  96. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  97. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  98. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  99. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  100. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  101. pulumi_oci/recoverymod/outputs.py +96 -24
  102. pulumi_oci/recoverymod/protected_database.py +95 -16
  103. pulumi_oci/recoverymod/protection_policy.py +121 -54
  104. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  105. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
  107. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
  108. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetExternalExadataStorageGridResult:
22
22
  """
23
23
  A collection of values returned by getExternalExadataStorageGrid.
24
24
  """
25
- def __init__(__self__, additional_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, external_exadata_storage_grid_id=None, freeform_tags=None, id=None, internal_id=None, lifecycle_details=None, resource_type=None, server_count=None, state=None, status=None, storage_servers=None, time_created=None, time_updated=None, version=None):
25
+ def __init__(__self__, additional_details=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, external_exadata_storage_grid_id=None, freeform_tags=None, id=None, internal_id=None, lifecycle_details=None, resource_type=None, server_count=None, state=None, status=None, storage_servers=None, system_tags=None, time_created=None, time_updated=None, version=None):
26
26
  if additional_details and not isinstance(additional_details, dict):
27
27
  raise TypeError("Expected argument 'additional_details' to be a dict")
28
28
  pulumi.set(__self__, "additional_details", additional_details)
@@ -65,6 +65,9 @@ class GetExternalExadataStorageGridResult:
65
65
  if storage_servers and not isinstance(storage_servers, list):
66
66
  raise TypeError("Expected argument 'storage_servers' to be a list")
67
67
  pulumi.set(__self__, "storage_servers", storage_servers)
68
+ if system_tags and not isinstance(system_tags, dict):
69
+ raise TypeError("Expected argument 'system_tags' to be a dict")
70
+ pulumi.set(__self__, "system_tags", system_tags)
68
71
  if time_created and not isinstance(time_created, str):
69
72
  raise TypeError("Expected argument 'time_created' to be a str")
70
73
  pulumi.set(__self__, "time_created", time_created)
@@ -184,6 +187,14 @@ class GetExternalExadataStorageGridResult:
184
187
  """
185
188
  return pulumi.get(self, "storage_servers")
186
189
 
190
+ @property
191
+ @pulumi.getter(name="systemTags")
192
+ def system_tags(self) -> Mapping[str, Any]:
193
+ """
194
+ 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"}`
195
+ """
196
+ return pulumi.get(self, "system_tags")
197
+
187
198
  @property
188
199
  @pulumi.getter(name="timeCreated")
189
200
  def time_created(self) -> str:
@@ -229,6 +240,7 @@ class AwaitableGetExternalExadataStorageGridResult(GetExternalExadataStorageGrid
229
240
  state=self.state,
230
241
  status=self.status,
231
242
  storage_servers=self.storage_servers,
243
+ system_tags=self.system_tags,
232
244
  time_created=self.time_created,
233
245
  time_updated=self.time_updated,
234
246
  version=self.version)
@@ -273,6 +285,7 @@ def get_external_exadata_storage_grid(external_exadata_storage_grid_id: Optional
273
285
  state=pulumi.get(__ret__, 'state'),
274
286
  status=pulumi.get(__ret__, 'status'),
275
287
  storage_servers=pulumi.get(__ret__, 'storage_servers'),
288
+ system_tags=pulumi.get(__ret__, 'system_tags'),
276
289
  time_created=pulumi.get(__ret__, 'time_created'),
277
290
  time_updated=pulumi.get(__ret__, 'time_updated'),
278
291
  version=pulumi.get(__ret__, 'version'))
@@ -22,7 +22,7 @@ class GetExternalExadataStorageServerResult:
22
22
  """
23
23
  A collection of values returned by getExternalExadataStorageServer.
24
24
  """
25
- def __init__(__self__, additional_details=None, connectors=None, cpu_count=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, external_exadata_storage_server_id=None, freeform_tags=None, id=None, internal_id=None, ip_address=None, lifecycle_details=None, make_model=None, max_flash_disk_iops=None, max_flash_disk_throughput=None, max_hard_disk_iops=None, max_hard_disk_throughput=None, memory_gb=None, resource_type=None, state=None, status=None, storage_grid_id=None, time_created=None, time_updated=None, version=None):
25
+ def __init__(__self__, additional_details=None, connectors=None, cpu_count=None, defined_tags=None, display_name=None, exadata_infrastructure_id=None, external_exadata_storage_server_id=None, freeform_tags=None, id=None, internal_id=None, ip_address=None, lifecycle_details=None, make_model=None, max_flash_disk_iops=None, max_flash_disk_throughput=None, max_hard_disk_iops=None, max_hard_disk_throughput=None, memory_gb=None, resource_type=None, state=None, status=None, storage_grid_id=None, system_tags=None, time_created=None, time_updated=None, version=None):
26
26
  if additional_details and not isinstance(additional_details, dict):
27
27
  raise TypeError("Expected argument 'additional_details' to be a dict")
28
28
  pulumi.set(__self__, "additional_details", additional_details)
@@ -89,6 +89,9 @@ class GetExternalExadataStorageServerResult:
89
89
  if storage_grid_id and not isinstance(storage_grid_id, str):
90
90
  raise TypeError("Expected argument 'storage_grid_id' to be a str")
91
91
  pulumi.set(__self__, "storage_grid_id", storage_grid_id)
92
+ if system_tags and not isinstance(system_tags, dict):
93
+ raise TypeError("Expected argument 'system_tags' to be a dict")
94
+ pulumi.set(__self__, "system_tags", system_tags)
92
95
  if time_created and not isinstance(time_created, str):
93
96
  raise TypeError("Expected argument 'time_created' to be a str")
94
97
  pulumi.set(__self__, "time_created", time_created)
@@ -272,6 +275,14 @@ class GetExternalExadataStorageServerResult:
272
275
  """
273
276
  return pulumi.get(self, "storage_grid_id")
274
277
 
278
+ @property
279
+ @pulumi.getter(name="systemTags")
280
+ def system_tags(self) -> Mapping[str, Any]:
281
+ """
282
+ 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"}`
283
+ """
284
+ return pulumi.get(self, "system_tags")
285
+
275
286
  @property
276
287
  @pulumi.getter(name="timeCreated")
277
288
  def time_created(self) -> str:
@@ -325,6 +336,7 @@ class AwaitableGetExternalExadataStorageServerResult(GetExternalExadataStorageSe
325
336
  state=self.state,
326
337
  status=self.status,
327
338
  storage_grid_id=self.storage_grid_id,
339
+ system_tags=self.system_tags,
328
340
  time_created=self.time_created,
329
341
  time_updated=self.time_updated,
330
342
  version=self.version)
@@ -377,6 +389,7 @@ def get_external_exadata_storage_server(external_exadata_storage_server_id: Opti
377
389
  state=pulumi.get(__ret__, 'state'),
378
390
  status=pulumi.get(__ret__, 'status'),
379
391
  storage_grid_id=pulumi.get(__ret__, 'storage_grid_id'),
392
+ system_tags=pulumi.get(__ret__, 'system_tags'),
380
393
  time_created=pulumi.get(__ret__, 'time_created'),
381
394
  time_updated=pulumi.get(__ret__, 'time_updated'),
382
395
  version=pulumi.get(__ret__, 'version'))
@@ -22,7 +22,7 @@ class GetExternalListenerResult:
22
22
  """
23
23
  A collection of values returned by getExternalListener.
24
24
  """
25
- def __init__(__self__, additional_details=None, adr_home_directory=None, compartment_id=None, component_name=None, defined_tags=None, display_name=None, endpoints=None, external_connector_id=None, external_db_home_id=None, external_db_node_id=None, external_db_system_id=None, external_listener_id=None, freeform_tags=None, host_name=None, id=None, lifecycle_details=None, listener_alias=None, listener_ora_location=None, listener_type=None, log_directory=None, oracle_home=None, serviced_asms=None, serviced_databases=None, state=None, time_created=None, time_updated=None, trace_directory=None, version=None):
25
+ def __init__(__self__, additional_details=None, adr_home_directory=None, compartment_id=None, component_name=None, defined_tags=None, display_name=None, endpoints=None, external_connector_id=None, external_db_home_id=None, external_db_node_id=None, external_db_system_id=None, external_listener_id=None, freeform_tags=None, host_name=None, id=None, lifecycle_details=None, listener_alias=None, listener_ora_location=None, listener_type=None, log_directory=None, oracle_home=None, serviced_asms=None, serviced_databases=None, state=None, system_tags=None, time_created=None, time_updated=None, trace_directory=None, version=None):
26
26
  if additional_details and not isinstance(additional_details, dict):
27
27
  raise TypeError("Expected argument 'additional_details' to be a dict")
28
28
  pulumi.set(__self__, "additional_details", additional_details)
@@ -95,6 +95,9 @@ class GetExternalListenerResult:
95
95
  if state and not isinstance(state, str):
96
96
  raise TypeError("Expected argument 'state' to be a str")
97
97
  pulumi.set(__self__, "state", state)
98
+ if system_tags and not isinstance(system_tags, dict):
99
+ raise TypeError("Expected argument 'system_tags' to be a dict")
100
+ pulumi.set(__self__, "system_tags", system_tags)
98
101
  if time_created and not isinstance(time_created, str):
99
102
  raise TypeError("Expected argument 'time_created' to be a str")
100
103
  pulumi.set(__self__, "time_created", time_created)
@@ -297,6 +300,14 @@ class GetExternalListenerResult:
297
300
  """
298
301
  return pulumi.get(self, "state")
299
302
 
303
+ @property
304
+ @pulumi.getter(name="systemTags")
305
+ def system_tags(self) -> Mapping[str, Any]:
306
+ """
307
+ 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"}`
308
+ """
309
+ return pulumi.get(self, "system_tags")
310
+
300
311
  @property
301
312
  @pulumi.getter(name="timeCreated")
302
313
  def time_created(self) -> str:
@@ -360,6 +371,7 @@ class AwaitableGetExternalListenerResult(GetExternalListenerResult):
360
371
  serviced_asms=self.serviced_asms,
361
372
  serviced_databases=self.serviced_databases,
362
373
  state=self.state,
374
+ system_tags=self.system_tags,
363
375
  time_created=self.time_created,
364
376
  time_updated=self.time_updated,
365
377
  trace_directory=self.trace_directory,
@@ -415,6 +427,7 @@ def get_external_listener(external_listener_id: Optional[str] = None,
415
427
  serviced_asms=pulumi.get(__ret__, 'serviced_asms'),
416
428
  serviced_databases=pulumi.get(__ret__, 'serviced_databases'),
417
429
  state=pulumi.get(__ret__, 'state'),
430
+ system_tags=pulumi.get(__ret__, 'system_tags'),
418
431
  time_created=pulumi.get(__ret__, 'time_created'),
419
432
  time_updated=pulumi.get(__ret__, 'time_updated'),
420
433
  trace_directory=pulumi.get(__ret__, 'trace_directory'),
@@ -22,7 +22,7 @@ class GetManagedDatabaseGroupResult:
22
22
  """
23
23
  A collection of values returned by getManagedDatabaseGroup.
24
24
  """
25
- def __init__(__self__, compartment_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, managed_database_group_id=None, managed_databases=None, name=None, state=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, compartment_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, managed_database_group_id=None, managed_databases=None, name=None, state=None, system_tags=None, time_created=None, time_updated=None):
26
26
  if compartment_id and not isinstance(compartment_id, str):
27
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
28
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -50,6 +50,9 @@ class GetManagedDatabaseGroupResult:
50
50
  if state and not isinstance(state, str):
51
51
  raise TypeError("Expected argument 'state' to be a str")
52
52
  pulumi.set(__self__, "state", state)
53
+ if system_tags and not isinstance(system_tags, dict):
54
+ raise TypeError("Expected argument 'system_tags' to be a dict")
55
+ pulumi.set(__self__, "system_tags", system_tags)
53
56
  if time_created and not isinstance(time_created, str):
54
57
  raise TypeError("Expected argument 'time_created' to be a str")
55
58
  pulumi.set(__self__, "time_created", time_created)
@@ -126,6 +129,14 @@ class GetManagedDatabaseGroupResult:
126
129
  """
127
130
  return pulumi.get(self, "state")
128
131
 
132
+ @property
133
+ @pulumi.getter(name="systemTags")
134
+ def system_tags(self) -> Mapping[str, Any]:
135
+ """
136
+ 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"}`
137
+ """
138
+ return pulumi.get(self, "system_tags")
139
+
129
140
  @property
130
141
  @pulumi.getter(name="timeCreated")
131
142
  def time_created(self) -> str:
@@ -158,6 +169,7 @@ class AwaitableGetManagedDatabaseGroupResult(GetManagedDatabaseGroupResult):
158
169
  managed_databases=self.managed_databases,
159
170
  name=self.name,
160
171
  state=self.state,
172
+ system_tags=self.system_tags,
161
173
  time_created=self.time_created,
162
174
  time_updated=self.time_updated)
163
175
 
@@ -196,6 +208,7 @@ def get_managed_database_group(managed_database_group_id: Optional[str] = None,
196
208
  managed_databases=pulumi.get(__ret__, 'managed_databases'),
197
209
  name=pulumi.get(__ret__, 'name'),
198
210
  state=pulumi.get(__ret__, 'state'),
211
+ system_tags=pulumi.get(__ret__, 'system_tags'),
199
212
  time_created=pulumi.get(__ret__, 'time_created'),
200
213
  time_updated=pulumi.get(__ret__, 'time_updated'))
201
214
 
@@ -113,7 +113,7 @@ class GetManagedMySqlDatabaseResult:
113
113
  @pulumi.getter(name="heatWaveNodeShape")
114
114
  def heat_wave_node_shape(self) -> str:
115
115
  """
116
- Shape of the nodes in the HeatWave cluster.
116
+ The shape of the nodes in the HeatWave cluster.
117
117
  """
118
118
  return pulumi.get(self, "heat_wave_node_shape")
119
119
 
@@ -121,7 +121,7 @@ class GetManagedMySqlDatabaseResult:
121
121
  @pulumi.getter(name="heatWaveNodes")
122
122
  def heat_wave_nodes(self) -> Sequence['outputs.GetManagedMySqlDatabaseHeatWaveNodeResult']:
123
123
  """
124
- The information about an individual HeatWave nodes in the cluster.
124
+ The information about individual HeatWave nodes in the cluster.
125
125
  """
126
126
  return pulumi.get(self, "heat_wave_nodes")
127
127
 
@@ -137,7 +137,7 @@ class GetManagedMySqlDatabaseResult:
137
137
  @pulumi.getter(name="isHeatWaveActive")
138
138
  def is_heat_wave_active(self) -> bool:
139
139
  """
140
- If the HeatWave cluster is active or not.
140
+ Indicates whether the HeatWave cluster is active or not.
141
141
  """
142
142
  return pulumi.get(self, "is_heat_wave_active")
143
143
 
@@ -145,7 +145,7 @@ class GetManagedMySqlDatabaseResult:
145
145
  @pulumi.getter(name="isHeatWaveEnabled")
146
146
  def is_heat_wave_enabled(self) -> bool:
147
147
  """
148
- If HeatWave is enabled for this db system or not.
148
+ Indicates whether HeatWave is enabled for the MySQL Database System or not.
149
149
  """
150
150
  return pulumi.get(self, "is_heat_wave_enabled")
151
151
 
@@ -153,7 +153,7 @@ class GetManagedMySqlDatabaseResult:
153
153
  @pulumi.getter(name="isLakehouseEnabled")
154
154
  def is_lakehouse_enabled(self) -> bool:
155
155
  """
156
- If HeatWave Lakehouse is enabled for the db system or not.
156
+ Indicates whether HeatWave Lakehouse is enabled for the MySQL Database System or not.
157
157
  """
158
158
  return pulumi.get(self, "is_lakehouse_enabled")
159
159
 
@@ -174,7 +174,7 @@ class GetManagedMySqlDatabaseResult:
174
174
  @pulumi.getter(name="timeCreated")
175
175
  def time_created(self) -> str:
176
176
  """
177
- The date and time the node was created.
177
+ The date and time the HeatWave node was created.
178
178
  """
179
179
  return pulumi.get(self, "time_created")
180
180
 
@@ -22,7 +22,7 @@ class GetNamedCredentialResult:
22
22
  """
23
23
  A collection of values returned by getNamedCredential.
24
24
  """
25
- def __init__(__self__, associated_resource=None, compartment_id=None, contents=None, defined_tags=None, description=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, named_credential_id=None, scope=None, state=None, time_created=None, time_updated=None, type=None):
25
+ def __init__(__self__, associated_resource=None, compartment_id=None, contents=None, defined_tags=None, description=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, named_credential_id=None, scope=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None):
26
26
  if associated_resource and not isinstance(associated_resource, str):
27
27
  raise TypeError("Expected argument 'associated_resource' to be a str")
28
28
  pulumi.set(__self__, "associated_resource", associated_resource)
@@ -59,6 +59,9 @@ class GetNamedCredentialResult:
59
59
  if state and not isinstance(state, str):
60
60
  raise TypeError("Expected argument 'state' to be a str")
61
61
  pulumi.set(__self__, "state", state)
62
+ if system_tags and not isinstance(system_tags, dict):
63
+ raise TypeError("Expected argument 'system_tags' to be a dict")
64
+ pulumi.set(__self__, "system_tags", system_tags)
62
65
  if time_created and not isinstance(time_created, str):
63
66
  raise TypeError("Expected argument 'time_created' to be a str")
64
67
  pulumi.set(__self__, "time_created", time_created)
@@ -162,6 +165,14 @@ class GetNamedCredentialResult:
162
165
  """
163
166
  return pulumi.get(self, "state")
164
167
 
168
+ @property
169
+ @pulumi.getter(name="systemTags")
170
+ def system_tags(self) -> Mapping[str, Any]:
171
+ """
172
+ 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"}`
173
+ """
174
+ return pulumi.get(self, "system_tags")
175
+
165
176
  @property
166
177
  @pulumi.getter(name="timeCreated")
167
178
  def time_created(self) -> str:
@@ -205,6 +216,7 @@ class AwaitableGetNamedCredentialResult(GetNamedCredentialResult):
205
216
  named_credential_id=self.named_credential_id,
206
217
  scope=self.scope,
207
218
  state=self.state,
219
+ system_tags=self.system_tags,
208
220
  time_created=self.time_created,
209
221
  time_updated=self.time_updated,
210
222
  type=self.type)
@@ -247,6 +259,7 @@ def get_named_credential(named_credential_id: Optional[str] = None,
247
259
  named_credential_id=pulumi.get(__ret__, 'named_credential_id'),
248
260
  scope=pulumi.get(__ret__, 'scope'),
249
261
  state=pulumi.get(__ret__, 'state'),
262
+ system_tags=pulumi.get(__ret__, 'system_tags'),
250
263
  time_created=pulumi.get(__ret__, 'time_created'),
251
264
  time_updated=pulumi.get(__ret__, 'time_updated'),
252
265
  type=pulumi.get(__ret__, 'type'))
@@ -96,6 +96,7 @@ class _ManagedDatabaseState:
96
96
  name: Optional[pulumi.Input[str]] = None,
97
97
  parent_container_id: Optional[pulumi.Input[str]] = None,
98
98
  storage_system_id: Optional[pulumi.Input[str]] = None,
99
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
99
100
  time_created: Optional[pulumi.Input[str]] = None,
100
101
  workload_type: Optional[pulumi.Input[str]] = None):
101
102
  """
@@ -121,6 +122,7 @@ class _ManagedDatabaseState:
121
122
  :param pulumi.Input[str] name: The name of the Managed Database.
122
123
  :param pulumi.Input[str] parent_container_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent Container Database if Managed Database is a Pluggable Database.
123
124
  :param pulumi.Input[str] storage_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the storage DB system.
125
+ :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"}`
124
126
  :param pulumi.Input[str] time_created: The date and time the Managed Database was created.
125
127
  :param pulumi.Input[str] workload_type: The workload type of the Autonomous Database.
126
128
  """
@@ -158,6 +160,8 @@ class _ManagedDatabaseState:
158
160
  pulumi.set(__self__, "parent_container_id", parent_container_id)
159
161
  if storage_system_id is not None:
160
162
  pulumi.set(__self__, "storage_system_id", storage_system_id)
163
+ if system_tags is not None:
164
+ pulumi.set(__self__, "system_tags", system_tags)
161
165
  if time_created is not None:
162
166
  pulumi.set(__self__, "time_created", time_created)
163
167
  if workload_type is not None:
@@ -371,6 +375,18 @@ class _ManagedDatabaseState:
371
375
  def storage_system_id(self, value: Optional[pulumi.Input[str]]):
372
376
  pulumi.set(self, "storage_system_id", value)
373
377
 
378
+ @property
379
+ @pulumi.getter(name="systemTags")
380
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
381
+ """
382
+ 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"}`
383
+ """
384
+ return pulumi.get(self, "system_tags")
385
+
386
+ @system_tags.setter
387
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
388
+ pulumi.set(self, "system_tags", value)
389
+
374
390
  @property
375
391
  @pulumi.getter(name="timeCreated")
376
392
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -493,6 +509,7 @@ class ManagedDatabase(pulumi.CustomResource):
493
509
  __props__.__dict__["name"] = None
494
510
  __props__.__dict__["parent_container_id"] = None
495
511
  __props__.__dict__["storage_system_id"] = None
512
+ __props__.__dict__["system_tags"] = None
496
513
  __props__.__dict__["time_created"] = None
497
514
  __props__.__dict__["workload_type"] = None
498
515
  super(ManagedDatabase, __self__).__init__(
@@ -522,6 +539,7 @@ class ManagedDatabase(pulumi.CustomResource):
522
539
  name: Optional[pulumi.Input[str]] = None,
523
540
  parent_container_id: Optional[pulumi.Input[str]] = None,
524
541
  storage_system_id: Optional[pulumi.Input[str]] = None,
542
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
525
543
  time_created: Optional[pulumi.Input[str]] = None,
526
544
  workload_type: Optional[pulumi.Input[str]] = None) -> 'ManagedDatabase':
527
545
  """
@@ -552,6 +570,7 @@ class ManagedDatabase(pulumi.CustomResource):
552
570
  :param pulumi.Input[str] name: The name of the Managed Database.
553
571
  :param pulumi.Input[str] parent_container_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent Container Database if Managed Database is a Pluggable Database.
554
572
  :param pulumi.Input[str] storage_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the storage DB system.
573
+ :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"}`
555
574
  :param pulumi.Input[str] time_created: The date and time the Managed Database was created.
556
575
  :param pulumi.Input[str] workload_type: The workload type of the Autonomous Database.
557
576
  """
@@ -576,6 +595,7 @@ class ManagedDatabase(pulumi.CustomResource):
576
595
  __props__.__dict__["name"] = name
577
596
  __props__.__dict__["parent_container_id"] = parent_container_id
578
597
  __props__.__dict__["storage_system_id"] = storage_system_id
598
+ __props__.__dict__["system_tags"] = system_tags
579
599
  __props__.__dict__["time_created"] = time_created
580
600
  __props__.__dict__["workload_type"] = workload_type
581
601
  return ManagedDatabase(resource_name, opts=opts, __props__=__props__)
@@ -720,6 +740,14 @@ class ManagedDatabase(pulumi.CustomResource):
720
740
  """
721
741
  return pulumi.get(self, "storage_system_id")
722
742
 
743
+ @property
744
+ @pulumi.getter(name="systemTags")
745
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
746
+ """
747
+ 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"}`
748
+ """
749
+ return pulumi.get(self, "system_tags")
750
+
723
751
  @property
724
752
  @pulumi.getter(name="timeCreated")
725
753
  def time_created(self) -> pulumi.Output[str]:
@@ -126,6 +126,7 @@ class _ManagedDatabaseGroupState:
126
126
  managed_databases: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseGroupManagedDatabaseArgs']]]] = None,
127
127
  name: Optional[pulumi.Input[str]] = None,
128
128
  state: Optional[pulumi.Input[str]] = None,
129
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
129
130
  time_created: Optional[pulumi.Input[str]] = None,
130
131
  time_updated: Optional[pulumi.Input[str]] = None):
131
132
  """
@@ -137,6 +138,7 @@ class _ManagedDatabaseGroupState:
137
138
  :param pulumi.Input[Sequence[pulumi.Input['ManagedDatabaseGroupManagedDatabaseArgs']]] managed_databases: (Updatable) Set of Managed Databases that the user wants to add to the Managed Database Group. Specifying a block will add the Managed Database to Managed Database Group and removing the block will remove Managed Database from the Managed Database Group.
138
139
  :param pulumi.Input[str] name: The name of the Managed Database Group. Valid characters are uppercase or lowercase letters, numbers, and "_". The name of the Managed Database Group cannot be modified. It must be unique in the compartment and must begin with an alphabetic character.
139
140
  :param pulumi.Input[str] state: The current lifecycle state of the Managed Database Group.
141
+ :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"}`
140
142
  :param pulumi.Input[str] time_created: The date and time the Managed Database Group was created.
141
143
  :param pulumi.Input[str] time_updated: The date and time the Managed Database Group was last updated.
142
144
  """
@@ -154,6 +156,8 @@ class _ManagedDatabaseGroupState:
154
156
  pulumi.set(__self__, "name", name)
155
157
  if state is not None:
156
158
  pulumi.set(__self__, "state", state)
159
+ if system_tags is not None:
160
+ pulumi.set(__self__, "system_tags", system_tags)
157
161
  if time_created is not None:
158
162
  pulumi.set(__self__, "time_created", time_created)
159
163
  if time_updated is not None:
@@ -243,6 +247,18 @@ class _ManagedDatabaseGroupState:
243
247
  def state(self, value: Optional[pulumi.Input[str]]):
244
248
  pulumi.set(self, "state", value)
245
249
 
250
+ @property
251
+ @pulumi.getter(name="systemTags")
252
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
253
+ """
254
+ 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"}`
255
+ """
256
+ return pulumi.get(self, "system_tags")
257
+
258
+ @system_tags.setter
259
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
260
+ pulumi.set(self, "system_tags", value)
261
+
246
262
  @property
247
263
  @pulumi.getter(name="timeCreated")
248
264
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -404,6 +420,7 @@ class ManagedDatabaseGroup(pulumi.CustomResource):
404
420
  __props__.__dict__["managed_databases"] = managed_databases
405
421
  __props__.__dict__["name"] = name
406
422
  __props__.__dict__["state"] = None
423
+ __props__.__dict__["system_tags"] = None
407
424
  __props__.__dict__["time_created"] = None
408
425
  __props__.__dict__["time_updated"] = None
409
426
  super(ManagedDatabaseGroup, __self__).__init__(
@@ -423,6 +440,7 @@ class ManagedDatabaseGroup(pulumi.CustomResource):
423
440
  managed_databases: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ManagedDatabaseGroupManagedDatabaseArgs']]]]] = None,
424
441
  name: Optional[pulumi.Input[str]] = None,
425
442
  state: Optional[pulumi.Input[str]] = None,
443
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
426
444
  time_created: Optional[pulumi.Input[str]] = None,
427
445
  time_updated: Optional[pulumi.Input[str]] = None) -> 'ManagedDatabaseGroup':
428
446
  """
@@ -439,6 +457,7 @@ class ManagedDatabaseGroup(pulumi.CustomResource):
439
457
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ManagedDatabaseGroupManagedDatabaseArgs']]]] managed_databases: (Updatable) Set of Managed Databases that the user wants to add to the Managed Database Group. Specifying a block will add the Managed Database to Managed Database Group and removing the block will remove Managed Database from the Managed Database Group.
440
458
  :param pulumi.Input[str] name: The name of the Managed Database Group. Valid characters are uppercase or lowercase letters, numbers, and "_". The name of the Managed Database Group cannot be modified. It must be unique in the compartment and must begin with an alphabetic character.
441
459
  :param pulumi.Input[str] state: The current lifecycle state of the Managed Database Group.
460
+ :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"}`
442
461
  :param pulumi.Input[str] time_created: The date and time the Managed Database Group was created.
443
462
  :param pulumi.Input[str] time_updated: The date and time the Managed Database Group was last updated.
444
463
  """
@@ -453,6 +472,7 @@ class ManagedDatabaseGroup(pulumi.CustomResource):
453
472
  __props__.__dict__["managed_databases"] = managed_databases
454
473
  __props__.__dict__["name"] = name
455
474
  __props__.__dict__["state"] = state
475
+ __props__.__dict__["system_tags"] = system_tags
456
476
  __props__.__dict__["time_created"] = time_created
457
477
  __props__.__dict__["time_updated"] = time_updated
458
478
  return ManagedDatabaseGroup(resource_name, opts=opts, __props__=__props__)
@@ -513,6 +533,14 @@ class ManagedDatabaseGroup(pulumi.CustomResource):
513
533
  """
514
534
  return pulumi.get(self, "state")
515
535
 
536
+ @property
537
+ @pulumi.getter(name="systemTags")
538
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
539
+ """
540
+ 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"}`
541
+ """
542
+ return pulumi.get(self, "system_tags")
543
+
516
544
  @property
517
545
  @pulumi.getter(name="timeCreated")
518
546
  def time_created(self) -> pulumi.Output[str]:
@@ -182,6 +182,7 @@ class _NamedCredentialState:
182
182
  name: Optional[pulumi.Input[str]] = None,
183
183
  scope: Optional[pulumi.Input[str]] = None,
184
184
  state: Optional[pulumi.Input[str]] = None,
185
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
185
186
  time_created: Optional[pulumi.Input[str]] = None,
186
187
  time_updated: Optional[pulumi.Input[str]] = None,
187
188
  type: Optional[pulumi.Input[str]] = None):
@@ -197,6 +198,7 @@ class _NamedCredentialState:
197
198
  :param pulumi.Input[str] name: The name of the named credential. Valid characters are uppercase or lowercase letters, numbers, and "_". The name of the named credential cannot be modified. It must be unique in the compartment and must begin with an alphabetic character.
198
199
  :param pulumi.Input[str] scope: (Updatable) The scope of the named credential.
199
200
  :param pulumi.Input[str] state: The current lifecycle state of the named credential.
201
+ :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"}`
200
202
  :param pulumi.Input[str] time_created: The date and time the named credential was created.
201
203
  :param pulumi.Input[str] time_updated: The date and time the named credential was last updated.
202
204
  :param pulumi.Input[str] type: The type of resource associated with the named credential.
@@ -225,6 +227,8 @@ class _NamedCredentialState:
225
227
  pulumi.set(__self__, "scope", scope)
226
228
  if state is not None:
227
229
  pulumi.set(__self__, "state", state)
230
+ if system_tags is not None:
231
+ pulumi.set(__self__, "system_tags", system_tags)
228
232
  if time_created is not None:
229
233
  pulumi.set(__self__, "time_created", time_created)
230
234
  if time_updated is not None:
@@ -352,6 +356,18 @@ class _NamedCredentialState:
352
356
  def state(self, value: Optional[pulumi.Input[str]]):
353
357
  pulumi.set(self, "state", value)
354
358
 
359
+ @property
360
+ @pulumi.getter(name="systemTags")
361
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
362
+ """
363
+ 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"}`
364
+ """
365
+ return pulumi.get(self, "system_tags")
366
+
367
+ @system_tags.setter
368
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
369
+ pulumi.set(self, "system_tags", value)
370
+
355
371
  @property
356
372
  @pulumi.getter(name="timeCreated")
357
373
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -564,6 +580,7 @@ class NamedCredential(pulumi.CustomResource):
564
580
  __props__.__dict__["type"] = type
565
581
  __props__.__dict__["lifecycle_details"] = None
566
582
  __props__.__dict__["state"] = None
583
+ __props__.__dict__["system_tags"] = None
567
584
  __props__.__dict__["time_created"] = None
568
585
  __props__.__dict__["time_updated"] = None
569
586
  super(NamedCredential, __self__).__init__(
@@ -586,6 +603,7 @@ class NamedCredential(pulumi.CustomResource):
586
603
  name: Optional[pulumi.Input[str]] = None,
587
604
  scope: Optional[pulumi.Input[str]] = None,
588
605
  state: Optional[pulumi.Input[str]] = None,
606
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
589
607
  time_created: Optional[pulumi.Input[str]] = None,
590
608
  time_updated: Optional[pulumi.Input[str]] = None,
591
609
  type: Optional[pulumi.Input[str]] = None) -> 'NamedCredential':
@@ -606,6 +624,7 @@ class NamedCredential(pulumi.CustomResource):
606
624
  :param pulumi.Input[str] name: The name of the named credential. Valid characters are uppercase or lowercase letters, numbers, and "_". The name of the named credential cannot be modified. It must be unique in the compartment and must begin with an alphabetic character.
607
625
  :param pulumi.Input[str] scope: (Updatable) The scope of the named credential.
608
626
  :param pulumi.Input[str] state: The current lifecycle state of the named credential.
627
+ :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"}`
609
628
  :param pulumi.Input[str] time_created: The date and time the named credential was created.
610
629
  :param pulumi.Input[str] time_updated: The date and time the named credential was last updated.
611
630
  :param pulumi.Input[str] type: The type of resource associated with the named credential.
@@ -628,6 +647,7 @@ class NamedCredential(pulumi.CustomResource):
628
647
  __props__.__dict__["name"] = name
629
648
  __props__.__dict__["scope"] = scope
630
649
  __props__.__dict__["state"] = state
650
+ __props__.__dict__["system_tags"] = system_tags
631
651
  __props__.__dict__["time_created"] = time_created
632
652
  __props__.__dict__["time_updated"] = time_updated
633
653
  __props__.__dict__["type"] = type
@@ -713,6 +733,14 @@ class NamedCredential(pulumi.CustomResource):
713
733
  """
714
734
  return pulumi.get(self, "state")
715
735
 
736
+ @property
737
+ @pulumi.getter(name="systemTags")
738
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
739
+ """
740
+ 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"}`
741
+ """
742
+ return pulumi.get(self, "system_tags")
743
+
716
744
  @property
717
745
  @pulumi.getter(name="timeCreated")
718
746
  def time_created(self) -> pulumi.Output[str]: