pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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 (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -8,6 +8,7 @@ import pulumi
8
8
  import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
+ from . import outputs
11
12
 
12
13
  __all__ = [
13
14
  'GetCatalogPrivateEndpointResult',
@@ -21,7 +22,7 @@ class GetCatalogPrivateEndpointResult:
21
22
  """
22
23
  A collection of values returned by getCatalogPrivateEndpoint.
23
24
  """
24
- def __init__(__self__, attached_catalogs=None, catalog_private_endpoint_id=None, compartment_id=None, defined_tags=None, display_name=None, dns_zones=None, freeform_tags=None, id=None, lifecycle_details=None, state=None, subnet_id=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, attached_catalogs=None, catalog_private_endpoint_id=None, compartment_id=None, defined_tags=None, display_name=None, dns_zones=None, freeform_tags=None, id=None, lifecycle_details=None, locks=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
25
26
  if attached_catalogs and not isinstance(attached_catalogs, list):
26
27
  raise TypeError("Expected argument 'attached_catalogs' to be a list")
27
28
  pulumi.set(__self__, "attached_catalogs", attached_catalogs)
@@ -49,12 +50,18 @@ class GetCatalogPrivateEndpointResult:
49
50
  if lifecycle_details and not isinstance(lifecycle_details, str):
50
51
  raise TypeError("Expected argument 'lifecycle_details' to be a str")
51
52
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
53
+ if locks and not isinstance(locks, list):
54
+ raise TypeError("Expected argument 'locks' to be a list")
55
+ pulumi.set(__self__, "locks", locks)
52
56
  if state and not isinstance(state, str):
53
57
  raise TypeError("Expected argument 'state' to be a str")
54
58
  pulumi.set(__self__, "state", state)
55
59
  if subnet_id and not isinstance(subnet_id, str):
56
60
  raise TypeError("Expected argument 'subnet_id' to be a str")
57
61
  pulumi.set(__self__, "subnet_id", subnet_id)
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)
58
65
  if time_created and not isinstance(time_created, str):
59
66
  raise TypeError("Expected argument 'time_created' to be a str")
60
67
  pulumi.set(__self__, "time_created", time_created)
@@ -131,6 +138,14 @@ class GetCatalogPrivateEndpointResult:
131
138
  """
132
139
  return pulumi.get(self, "lifecycle_details")
133
140
 
141
+ @property
142
+ @pulumi.getter
143
+ def locks(self) -> Sequence['outputs.GetCatalogPrivateEndpointLockResult']:
144
+ """
145
+ Locks associated with this resource.
146
+ """
147
+ return pulumi.get(self, "locks")
148
+
134
149
  @property
135
150
  @pulumi.getter
136
151
  def state(self) -> str:
@@ -147,6 +162,14 @@ class GetCatalogPrivateEndpointResult:
147
162
  """
148
163
  return pulumi.get(self, "subnet_id")
149
164
 
165
+ @property
166
+ @pulumi.getter(name="systemTags")
167
+ def system_tags(self) -> Mapping[str, Any]:
168
+ """
169
+ 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"}`
170
+ """
171
+ return pulumi.get(self, "system_tags")
172
+
150
173
  @property
151
174
  @pulumi.getter(name="timeCreated")
152
175
  def time_created(self) -> str:
@@ -179,8 +202,10 @@ class AwaitableGetCatalogPrivateEndpointResult(GetCatalogPrivateEndpointResult):
179
202
  freeform_tags=self.freeform_tags,
180
203
  id=self.id,
181
204
  lifecycle_details=self.lifecycle_details,
205
+ locks=self.locks,
182
206
  state=self.state,
183
207
  subnet_id=self.subnet_id,
208
+ system_tags=self.system_tags,
184
209
  time_created=self.time_created,
185
210
  time_updated=self.time_updated)
186
211
 
@@ -219,8 +244,10 @@ def get_catalog_private_endpoint(catalog_private_endpoint_id: Optional[str] = No
219
244
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
220
245
  id=pulumi.get(__ret__, 'id'),
221
246
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
247
+ locks=pulumi.get(__ret__, 'locks'),
222
248
  state=pulumi.get(__ret__, 'state'),
223
249
  subnet_id=pulumi.get(__ret__, 'subnet_id'),
250
+ system_tags=pulumi.get(__ret__, 'system_tags'),
224
251
  time_created=pulumi.get(__ret__, 'time_created'),
225
252
  time_updated=pulumi.get(__ret__, 'time_updated'))
226
253
 
@@ -8,6 +8,7 @@ import pulumi
8
8
  import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
+ from . import outputs
11
12
 
12
13
  __all__ = [
13
14
  'GetMetastoreResult',
@@ -21,7 +22,7 @@ class GetMetastoreResult:
21
22
  """
22
23
  A collection of values returned by getMetastore.
23
24
  """
24
- def __init__(__self__, compartment_id=None, default_external_table_location=None, default_managed_table_location=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, metastore_id=None, state=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, compartment_id=None, default_external_table_location=None, default_managed_table_location=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, locks=None, metastore_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
25
26
  if compartment_id and not isinstance(compartment_id, str):
26
27
  raise TypeError("Expected argument 'compartment_id' to be a str")
27
28
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -46,12 +47,18 @@ class GetMetastoreResult:
46
47
  if lifecycle_details and not isinstance(lifecycle_details, str):
47
48
  raise TypeError("Expected argument 'lifecycle_details' to be a str")
48
49
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
50
+ if locks and not isinstance(locks, list):
51
+ raise TypeError("Expected argument 'locks' to be a list")
52
+ pulumi.set(__self__, "locks", locks)
49
53
  if metastore_id and not isinstance(metastore_id, str):
50
54
  raise TypeError("Expected argument 'metastore_id' to be a str")
51
55
  pulumi.set(__self__, "metastore_id", metastore_id)
52
56
  if state and not isinstance(state, str):
53
57
  raise TypeError("Expected argument 'state' to be a str")
54
58
  pulumi.set(__self__, "state", state)
59
+ if system_tags and not isinstance(system_tags, dict):
60
+ raise TypeError("Expected argument 'system_tags' to be a dict")
61
+ pulumi.set(__self__, "system_tags", system_tags)
55
62
  if time_created and not isinstance(time_created, str):
56
63
  raise TypeError("Expected argument 'time_created' to be a str")
57
64
  pulumi.set(__self__, "time_created", time_created)
@@ -123,6 +130,14 @@ class GetMetastoreResult:
123
130
  """
124
131
  return pulumi.get(self, "lifecycle_details")
125
132
 
133
+ @property
134
+ @pulumi.getter
135
+ def locks(self) -> Sequence['outputs.GetMetastoreLockResult']:
136
+ """
137
+ Locks associated with this resource.
138
+ """
139
+ return pulumi.get(self, "locks")
140
+
126
141
  @property
127
142
  @pulumi.getter(name="metastoreId")
128
143
  def metastore_id(self) -> str:
@@ -136,6 +151,14 @@ class GetMetastoreResult:
136
151
  """
137
152
  return pulumi.get(self, "state")
138
153
 
154
+ @property
155
+ @pulumi.getter(name="systemTags")
156
+ def system_tags(self) -> Mapping[str, Any]:
157
+ """
158
+ 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"}`
159
+ """
160
+ return pulumi.get(self, "system_tags")
161
+
139
162
  @property
140
163
  @pulumi.getter(name="timeCreated")
141
164
  def time_created(self) -> str:
@@ -167,8 +190,10 @@ class AwaitableGetMetastoreResult(GetMetastoreResult):
167
190
  freeform_tags=self.freeform_tags,
168
191
  id=self.id,
169
192
  lifecycle_details=self.lifecycle_details,
193
+ locks=self.locks,
170
194
  metastore_id=self.metastore_id,
171
195
  state=self.state,
196
+ system_tags=self.system_tags,
172
197
  time_created=self.time_created,
173
198
  time_updated=self.time_updated)
174
199
 
@@ -206,8 +231,10 @@ def get_metastore(metastore_id: Optional[str] = None,
206
231
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
207
232
  id=pulumi.get(__ret__, 'id'),
208
233
  lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
234
+ locks=pulumi.get(__ret__, 'locks'),
209
235
  metastore_id=pulumi.get(__ret__, 'metastore_id'),
210
236
  state=pulumi.get(__ret__, 'state'),
237
+ system_tags=pulumi.get(__ret__, 'system_tags'),
211
238
  time_created=pulumi.get(__ret__, 'time_created'),
212
239
  time_updated=pulumi.get(__ret__, 'time_updated'))
213
240
 
@@ -8,6 +8,8 @@ import pulumi
8
8
  import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
11
13
 
12
14
  __all__ = ['MetastoreArgs', 'Metastore']
13
15
 
@@ -130,7 +132,9 @@ class _MetastoreState:
130
132
  display_name: Optional[pulumi.Input[str]] = None,
131
133
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
132
134
  lifecycle_details: Optional[pulumi.Input[str]] = None,
135
+ locks: Optional[pulumi.Input[Sequence[pulumi.Input['MetastoreLockArgs']]]] = None,
133
136
  state: Optional[pulumi.Input[str]] = None,
137
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
134
138
  time_created: Optional[pulumi.Input[str]] = None,
135
139
  time_updated: Optional[pulumi.Input[str]] = None):
136
140
  """
@@ -146,7 +150,9 @@ class _MetastoreState:
146
150
  ** IMPORTANT **
147
151
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
148
152
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
153
+ :param pulumi.Input[Sequence[pulumi.Input['MetastoreLockArgs']]] locks: Locks associated with this resource.
149
154
  :param pulumi.Input[str] state: The current state of the metastore.
155
+ :param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
150
156
  :param pulumi.Input[str] time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
151
157
  :param pulumi.Input[str] time_updated: Time at which the metastore was last modified. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
152
158
  """
@@ -164,8 +170,12 @@ class _MetastoreState:
164
170
  pulumi.set(__self__, "freeform_tags", freeform_tags)
165
171
  if lifecycle_details is not None:
166
172
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
173
+ if locks is not None:
174
+ pulumi.set(__self__, "locks", locks)
167
175
  if state is not None:
168
176
  pulumi.set(__self__, "state", state)
177
+ if system_tags is not None:
178
+ pulumi.set(__self__, "system_tags", system_tags)
169
179
  if time_created is not None:
170
180
  pulumi.set(__self__, "time_created", time_created)
171
181
  if time_updated is not None:
@@ -259,6 +269,18 @@ class _MetastoreState:
259
269
  def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
260
270
  pulumi.set(self, "lifecycle_details", value)
261
271
 
272
+ @property
273
+ @pulumi.getter
274
+ def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MetastoreLockArgs']]]]:
275
+ """
276
+ Locks associated with this resource.
277
+ """
278
+ return pulumi.get(self, "locks")
279
+
280
+ @locks.setter
281
+ def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MetastoreLockArgs']]]]):
282
+ pulumi.set(self, "locks", value)
283
+
262
284
  @property
263
285
  @pulumi.getter
264
286
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -271,6 +293,18 @@ class _MetastoreState:
271
293
  def state(self, value: Optional[pulumi.Input[str]]):
272
294
  pulumi.set(self, "state", value)
273
295
 
296
+ @property
297
+ @pulumi.getter(name="systemTags")
298
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
299
+ """
300
+ 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"}`
301
+ """
302
+ return pulumi.get(self, "system_tags")
303
+
304
+ @system_tags.setter
305
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
306
+ pulumi.set(self, "system_tags", value)
307
+
274
308
  @property
275
309
  @pulumi.getter(name="timeCreated")
276
310
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -434,7 +468,9 @@ class Metastore(pulumi.CustomResource):
434
468
  __props__.__dict__["display_name"] = display_name
435
469
  __props__.__dict__["freeform_tags"] = freeform_tags
436
470
  __props__.__dict__["lifecycle_details"] = None
471
+ __props__.__dict__["locks"] = None
437
472
  __props__.__dict__["state"] = None
473
+ __props__.__dict__["system_tags"] = None
438
474
  __props__.__dict__["time_created"] = None
439
475
  __props__.__dict__["time_updated"] = None
440
476
  super(Metastore, __self__).__init__(
@@ -454,7 +490,9 @@ class Metastore(pulumi.CustomResource):
454
490
  display_name: Optional[pulumi.Input[str]] = None,
455
491
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
456
492
  lifecycle_details: Optional[pulumi.Input[str]] = None,
493
+ locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MetastoreLockArgs']]]]] = None,
457
494
  state: Optional[pulumi.Input[str]] = None,
495
+ system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
458
496
  time_created: Optional[pulumi.Input[str]] = None,
459
497
  time_updated: Optional[pulumi.Input[str]] = None) -> 'Metastore':
460
498
  """
@@ -475,7 +513,9 @@ class Metastore(pulumi.CustomResource):
475
513
  ** IMPORTANT **
476
514
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
477
515
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
516
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MetastoreLockArgs']]]] locks: Locks associated with this resource.
478
517
  :param pulumi.Input[str] state: The current state of the metastore.
518
+ :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"}`
479
519
  :param pulumi.Input[str] time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
480
520
  :param pulumi.Input[str] time_updated: Time at which the metastore was last modified. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
481
521
  """
@@ -490,7 +530,9 @@ class Metastore(pulumi.CustomResource):
490
530
  __props__.__dict__["display_name"] = display_name
491
531
  __props__.__dict__["freeform_tags"] = freeform_tags
492
532
  __props__.__dict__["lifecycle_details"] = lifecycle_details
533
+ __props__.__dict__["locks"] = locks
493
534
  __props__.__dict__["state"] = state
535
+ __props__.__dict__["system_tags"] = system_tags
494
536
  __props__.__dict__["time_created"] = time_created
495
537
  __props__.__dict__["time_updated"] = time_updated
496
538
  return Metastore(resource_name, opts=opts, __props__=__props__)
@@ -555,6 +597,14 @@ class Metastore(pulumi.CustomResource):
555
597
  """
556
598
  return pulumi.get(self, "lifecycle_details")
557
599
 
600
+ @property
601
+ @pulumi.getter
602
+ def locks(self) -> pulumi.Output[Sequence['outputs.MetastoreLock']]:
603
+ """
604
+ Locks associated with this resource.
605
+ """
606
+ return pulumi.get(self, "locks")
607
+
558
608
  @property
559
609
  @pulumi.getter
560
610
  def state(self) -> pulumi.Output[str]:
@@ -563,6 +613,14 @@ class Metastore(pulumi.CustomResource):
563
613
  """
564
614
  return pulumi.get(self, "state")
565
615
 
616
+ @property
617
+ @pulumi.getter(name="systemTags")
618
+ def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
619
+ """
620
+ 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"}`
621
+ """
622
+ return pulumi.get(self, "system_tags")
623
+
566
624
  @property
567
625
  @pulumi.getter(name="timeCreated")
568
626
  def time_created(self) -> pulumi.Output[str]: