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
@@ -11,12 +11,19 @@ from .. import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'CatalogLock',
15
+ 'CatalogPrivateEndpointLock',
16
+ 'MetastoreLock',
17
+ 'GetCatalogLockResult',
18
+ 'GetCatalogPrivateEndpointLockResult',
14
19
  'GetCatalogPrivateEndpointsCatalogPrivateEndpointResult',
20
+ 'GetCatalogPrivateEndpointsCatalogPrivateEndpointLockResult',
15
21
  'GetCatalogPrivateEndpointsFilterResult',
16
22
  'GetCatalogTypesFilterResult',
17
23
  'GetCatalogTypesTypeCollectionResult',
18
24
  'GetCatalogTypesTypeCollectionItemResult',
19
25
  'GetCatalogsCatalogResult',
26
+ 'GetCatalogsCatalogLockResult',
20
27
  'GetCatalogsFilterResult',
21
28
  'GetConnectionsConnectionCollectionResult',
22
29
  'GetConnectionsConnectionCollectionItemResult',
@@ -24,10 +31,336 @@ __all__ = [
24
31
  'GetDataAssetsDataAssetCollectionResult',
25
32
  'GetDataAssetsDataAssetCollectionItemResult',
26
33
  'GetDataAssetsFilterResult',
34
+ 'GetMetastoreLockResult',
27
35
  'GetMetastoresFilterResult',
28
36
  'GetMetastoresMetastoreResult',
37
+ 'GetMetastoresMetastoreLockResult',
29
38
  ]
30
39
 
40
+ @pulumi.output_type
41
+ class CatalogLock(dict):
42
+ @staticmethod
43
+ def __key_warning(key: str):
44
+ suggest = None
45
+ if key == "relatedResourceId":
46
+ suggest = "related_resource_id"
47
+ elif key == "timeCreated":
48
+ suggest = "time_created"
49
+
50
+ if suggest:
51
+ pulumi.log.warn(f"Key '{key}' not found in CatalogLock. Access the value via the '{suggest}' property getter instead.")
52
+
53
+ def __getitem__(self, key: str) -> Any:
54
+ CatalogLock.__key_warning(key)
55
+ return super().__getitem__(key)
56
+
57
+ def get(self, key: str, default = None) -> Any:
58
+ CatalogLock.__key_warning(key)
59
+ return super().get(key, default)
60
+
61
+ def __init__(__self__, *,
62
+ message: Optional[str] = None,
63
+ related_resource_id: Optional[str] = None,
64
+ time_created: Optional[str] = None,
65
+ type: Optional[str] = None):
66
+ """
67
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
68
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
69
+ :param str time_created: The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
70
+ :param str type: Type of the lock.
71
+ """
72
+ if message is not None:
73
+ pulumi.set(__self__, "message", message)
74
+ if related_resource_id is not None:
75
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
76
+ if time_created is not None:
77
+ pulumi.set(__self__, "time_created", time_created)
78
+ if type is not None:
79
+ pulumi.set(__self__, "type", type)
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def message(self) -> Optional[str]:
84
+ """
85
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
86
+ """
87
+ return pulumi.get(self, "message")
88
+
89
+ @property
90
+ @pulumi.getter(name="relatedResourceId")
91
+ def related_resource_id(self) -> Optional[str]:
92
+ """
93
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
94
+ """
95
+ return pulumi.get(self, "related_resource_id")
96
+
97
+ @property
98
+ @pulumi.getter(name="timeCreated")
99
+ def time_created(self) -> Optional[str]:
100
+ """
101
+ The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
102
+ """
103
+ return pulumi.get(self, "time_created")
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def type(self) -> Optional[str]:
108
+ """
109
+ Type of the lock.
110
+ """
111
+ return pulumi.get(self, "type")
112
+
113
+
114
+ @pulumi.output_type
115
+ class CatalogPrivateEndpointLock(dict):
116
+ @staticmethod
117
+ def __key_warning(key: str):
118
+ suggest = None
119
+ if key == "relatedResourceId":
120
+ suggest = "related_resource_id"
121
+ elif key == "timeCreated":
122
+ suggest = "time_created"
123
+
124
+ if suggest:
125
+ pulumi.log.warn(f"Key '{key}' not found in CatalogPrivateEndpointLock. Access the value via the '{suggest}' property getter instead.")
126
+
127
+ def __getitem__(self, key: str) -> Any:
128
+ CatalogPrivateEndpointLock.__key_warning(key)
129
+ return super().__getitem__(key)
130
+
131
+ def get(self, key: str, default = None) -> Any:
132
+ CatalogPrivateEndpointLock.__key_warning(key)
133
+ return super().get(key, default)
134
+
135
+ def __init__(__self__, *,
136
+ message: Optional[str] = None,
137
+ related_resource_id: Optional[str] = None,
138
+ time_created: Optional[str] = None,
139
+ type: Optional[str] = None):
140
+ """
141
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
142
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
143
+ :param str time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
144
+ :param str type: Type of the lock.
145
+ """
146
+ if message is not None:
147
+ pulumi.set(__self__, "message", message)
148
+ if related_resource_id is not None:
149
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
150
+ if time_created is not None:
151
+ pulumi.set(__self__, "time_created", time_created)
152
+ if type is not None:
153
+ pulumi.set(__self__, "type", type)
154
+
155
+ @property
156
+ @pulumi.getter
157
+ def message(self) -> Optional[str]:
158
+ """
159
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
160
+ """
161
+ return pulumi.get(self, "message")
162
+
163
+ @property
164
+ @pulumi.getter(name="relatedResourceId")
165
+ def related_resource_id(self) -> Optional[str]:
166
+ """
167
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
168
+ """
169
+ return pulumi.get(self, "related_resource_id")
170
+
171
+ @property
172
+ @pulumi.getter(name="timeCreated")
173
+ def time_created(self) -> Optional[str]:
174
+ """
175
+ The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
176
+ """
177
+ return pulumi.get(self, "time_created")
178
+
179
+ @property
180
+ @pulumi.getter
181
+ def type(self) -> Optional[str]:
182
+ """
183
+ Type of the lock.
184
+ """
185
+ return pulumi.get(self, "type")
186
+
187
+
188
+ @pulumi.output_type
189
+ class MetastoreLock(dict):
190
+ @staticmethod
191
+ def __key_warning(key: str):
192
+ suggest = None
193
+ if key == "relatedResourceId":
194
+ suggest = "related_resource_id"
195
+ elif key == "timeCreated":
196
+ suggest = "time_created"
197
+
198
+ if suggest:
199
+ pulumi.log.warn(f"Key '{key}' not found in MetastoreLock. Access the value via the '{suggest}' property getter instead.")
200
+
201
+ def __getitem__(self, key: str) -> Any:
202
+ MetastoreLock.__key_warning(key)
203
+ return super().__getitem__(key)
204
+
205
+ def get(self, key: str, default = None) -> Any:
206
+ MetastoreLock.__key_warning(key)
207
+ return super().get(key, default)
208
+
209
+ def __init__(__self__, *,
210
+ message: Optional[str] = None,
211
+ related_resource_id: Optional[str] = None,
212
+ time_created: Optional[str] = None,
213
+ type: Optional[str] = None):
214
+ """
215
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
216
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
217
+ :param str time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
218
+ :param str type: Type of the lock.
219
+ """
220
+ if message is not None:
221
+ pulumi.set(__self__, "message", message)
222
+ if related_resource_id is not None:
223
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
224
+ if time_created is not None:
225
+ pulumi.set(__self__, "time_created", time_created)
226
+ if type is not None:
227
+ pulumi.set(__self__, "type", type)
228
+
229
+ @property
230
+ @pulumi.getter
231
+ def message(self) -> Optional[str]:
232
+ """
233
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
234
+ """
235
+ return pulumi.get(self, "message")
236
+
237
+ @property
238
+ @pulumi.getter(name="relatedResourceId")
239
+ def related_resource_id(self) -> Optional[str]:
240
+ """
241
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
242
+ """
243
+ return pulumi.get(self, "related_resource_id")
244
+
245
+ @property
246
+ @pulumi.getter(name="timeCreated")
247
+ def time_created(self) -> Optional[str]:
248
+ """
249
+ Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
250
+ """
251
+ return pulumi.get(self, "time_created")
252
+
253
+ @property
254
+ @pulumi.getter
255
+ def type(self) -> Optional[str]:
256
+ """
257
+ Type of the lock.
258
+ """
259
+ return pulumi.get(self, "type")
260
+
261
+
262
+ @pulumi.output_type
263
+ class GetCatalogLockResult(dict):
264
+ def __init__(__self__, *,
265
+ message: str,
266
+ related_resource_id: str,
267
+ time_created: str,
268
+ type: str):
269
+ """
270
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
271
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
272
+ :param str time_created: The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
273
+ :param str type: Type of the lock.
274
+ """
275
+ pulumi.set(__self__, "message", message)
276
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
277
+ pulumi.set(__self__, "time_created", time_created)
278
+ pulumi.set(__self__, "type", type)
279
+
280
+ @property
281
+ @pulumi.getter
282
+ def message(self) -> str:
283
+ """
284
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
285
+ """
286
+ return pulumi.get(self, "message")
287
+
288
+ @property
289
+ @pulumi.getter(name="relatedResourceId")
290
+ def related_resource_id(self) -> str:
291
+ """
292
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
293
+ """
294
+ return pulumi.get(self, "related_resource_id")
295
+
296
+ @property
297
+ @pulumi.getter(name="timeCreated")
298
+ def time_created(self) -> str:
299
+ """
300
+ The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
301
+ """
302
+ return pulumi.get(self, "time_created")
303
+
304
+ @property
305
+ @pulumi.getter
306
+ def type(self) -> str:
307
+ """
308
+ Type of the lock.
309
+ """
310
+ return pulumi.get(self, "type")
311
+
312
+
313
+ @pulumi.output_type
314
+ class GetCatalogPrivateEndpointLockResult(dict):
315
+ def __init__(__self__, *,
316
+ message: str,
317
+ related_resource_id: str,
318
+ time_created: str,
319
+ type: str):
320
+ """
321
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
322
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
323
+ :param str time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
324
+ :param str type: Type of the lock.
325
+ """
326
+ pulumi.set(__self__, "message", message)
327
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
328
+ pulumi.set(__self__, "time_created", time_created)
329
+ pulumi.set(__self__, "type", type)
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def message(self) -> str:
334
+ """
335
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
336
+ """
337
+ return pulumi.get(self, "message")
338
+
339
+ @property
340
+ @pulumi.getter(name="relatedResourceId")
341
+ def related_resource_id(self) -> str:
342
+ """
343
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
344
+ """
345
+ return pulumi.get(self, "related_resource_id")
346
+
347
+ @property
348
+ @pulumi.getter(name="timeCreated")
349
+ def time_created(self) -> str:
350
+ """
351
+ The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
352
+ """
353
+ return pulumi.get(self, "time_created")
354
+
355
+ @property
356
+ @pulumi.getter
357
+ def type(self) -> str:
358
+ """
359
+ Type of the lock.
360
+ """
361
+ return pulumi.get(self, "type")
362
+
363
+
31
364
  @pulumi.output_type
32
365
  class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
33
366
  def __init__(__self__, *,
@@ -39,8 +372,10 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
39
372
  freeform_tags: Mapping[str, Any],
40
373
  id: str,
41
374
  lifecycle_details: str,
375
+ locks: Sequence['outputs.GetCatalogPrivateEndpointsCatalogPrivateEndpointLockResult'],
42
376
  state: str,
43
377
  subnet_id: str,
378
+ system_tags: Mapping[str, Any],
44
379
  time_created: str,
45
380
  time_updated: str):
46
381
  """
@@ -52,8 +387,10 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
52
387
  :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
53
388
  :param str id: Unique identifier that is immutable
54
389
  :param 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.
390
+ :param Sequence['GetCatalogPrivateEndpointsCatalogPrivateEndpointLockArgs'] locks: Locks associated with this resource.
55
391
  :param str state: A filter to return only resources that match the specified lifecycle state. The value is case insensitive.
56
392
  :param str subnet_id: Subnet Identifier
393
+ :param 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"}`
57
394
  :param str time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
58
395
  :param str time_updated: The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
59
396
  """
@@ -65,8 +402,10 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
65
402
  pulumi.set(__self__, "freeform_tags", freeform_tags)
66
403
  pulumi.set(__self__, "id", id)
67
404
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
405
+ pulumi.set(__self__, "locks", locks)
68
406
  pulumi.set(__self__, "state", state)
69
407
  pulumi.set(__self__, "subnet_id", subnet_id)
408
+ pulumi.set(__self__, "system_tags", system_tags)
70
409
  pulumi.set(__self__, "time_created", time_created)
71
410
  pulumi.set(__self__, "time_updated", time_updated)
72
411
 
@@ -134,6 +473,14 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
134
473
  """
135
474
  return pulumi.get(self, "lifecycle_details")
136
475
 
476
+ @property
477
+ @pulumi.getter
478
+ def locks(self) -> Sequence['outputs.GetCatalogPrivateEndpointsCatalogPrivateEndpointLockResult']:
479
+ """
480
+ Locks associated with this resource.
481
+ """
482
+ return pulumi.get(self, "locks")
483
+
137
484
  @property
138
485
  @pulumi.getter
139
486
  def state(self) -> str:
@@ -150,6 +497,14 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
150
497
  """
151
498
  return pulumi.get(self, "subnet_id")
152
499
 
500
+ @property
501
+ @pulumi.getter(name="systemTags")
502
+ def system_tags(self) -> Mapping[str, Any]:
503
+ """
504
+ 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"}`
505
+ """
506
+ return pulumi.get(self, "system_tags")
507
+
153
508
  @property
154
509
  @pulumi.getter(name="timeCreated")
155
510
  def time_created(self) -> str:
@@ -167,6 +522,57 @@ class GetCatalogPrivateEndpointsCatalogPrivateEndpointResult(dict):
167
522
  return pulumi.get(self, "time_updated")
168
523
 
169
524
 
525
+ @pulumi.output_type
526
+ class GetCatalogPrivateEndpointsCatalogPrivateEndpointLockResult(dict):
527
+ def __init__(__self__, *,
528
+ message: str,
529
+ related_resource_id: str,
530
+ time_created: str,
531
+ type: str):
532
+ """
533
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
534
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
535
+ :param str time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
536
+ :param str type: Type of the lock.
537
+ """
538
+ pulumi.set(__self__, "message", message)
539
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
540
+ pulumi.set(__self__, "time_created", time_created)
541
+ pulumi.set(__self__, "type", type)
542
+
543
+ @property
544
+ @pulumi.getter
545
+ def message(self) -> str:
546
+ """
547
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
548
+ """
549
+ return pulumi.get(self, "message")
550
+
551
+ @property
552
+ @pulumi.getter(name="relatedResourceId")
553
+ def related_resource_id(self) -> str:
554
+ """
555
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
556
+ """
557
+ return pulumi.get(self, "related_resource_id")
558
+
559
+ @property
560
+ @pulumi.getter(name="timeCreated")
561
+ def time_created(self) -> str:
562
+ """
563
+ The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
564
+ """
565
+ return pulumi.get(self, "time_created")
566
+
567
+ @property
568
+ @pulumi.getter
569
+ def type(self) -> str:
570
+ """
571
+ Type of the lock.
572
+ """
573
+ return pulumi.get(self, "type")
574
+
575
+
170
576
  @pulumi.output_type
171
577
  class GetCatalogPrivateEndpointsFilterResult(dict):
172
578
  def __init__(__self__, *,
@@ -340,10 +746,12 @@ class GetCatalogsCatalogResult(dict):
340
746
  freeform_tags: Mapping[str, Any],
341
747
  id: str,
342
748
  lifecycle_details: str,
749
+ locks: Sequence['outputs.GetCatalogsCatalogLockResult'],
343
750
  number_of_objects: int,
344
751
  service_api_url: str,
345
752
  service_console_url: str,
346
753
  state: str,
754
+ system_tags: Mapping[str, Any],
347
755
  time_created: str,
348
756
  time_updated: str):
349
757
  """
@@ -354,10 +762,12 @@ class GetCatalogsCatalogResult(dict):
354
762
  :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
355
763
  :param str id: Unique identifier that is immutable on creation.
356
764
  :param str lifecycle_details: An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
765
+ :param Sequence['GetCatalogsCatalogLockArgs'] locks: Locks associated with this resource.
357
766
  :param int number_of_objects: The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
358
767
  :param str service_api_url: The REST front endpoint URL to the data catalog instance.
359
768
  :param str service_console_url: The console front endpoint URL to the data catalog instance.
360
769
  :param str state: A filter to return only resources that match the specified lifecycle state. The value is case insensitive.
770
+ :param 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"}`
361
771
  :param str time_created: The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
362
772
  :param str time_updated: The time the data catalog was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
363
773
  """
@@ -368,10 +778,12 @@ class GetCatalogsCatalogResult(dict):
368
778
  pulumi.set(__self__, "freeform_tags", freeform_tags)
369
779
  pulumi.set(__self__, "id", id)
370
780
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
781
+ pulumi.set(__self__, "locks", locks)
371
782
  pulumi.set(__self__, "number_of_objects", number_of_objects)
372
783
  pulumi.set(__self__, "service_api_url", service_api_url)
373
784
  pulumi.set(__self__, "service_console_url", service_console_url)
374
785
  pulumi.set(__self__, "state", state)
786
+ pulumi.set(__self__, "system_tags", system_tags)
375
787
  pulumi.set(__self__, "time_created", time_created)
376
788
  pulumi.set(__self__, "time_updated", time_updated)
377
789
 
@@ -431,6 +843,14 @@ class GetCatalogsCatalogResult(dict):
431
843
  """
432
844
  return pulumi.get(self, "lifecycle_details")
433
845
 
846
+ @property
847
+ @pulumi.getter
848
+ def locks(self) -> Sequence['outputs.GetCatalogsCatalogLockResult']:
849
+ """
850
+ Locks associated with this resource.
851
+ """
852
+ return pulumi.get(self, "locks")
853
+
434
854
  @property
435
855
  @pulumi.getter(name="numberOfObjects")
436
856
  def number_of_objects(self) -> int:
@@ -463,6 +883,14 @@ class GetCatalogsCatalogResult(dict):
463
883
  """
464
884
  return pulumi.get(self, "state")
465
885
 
886
+ @property
887
+ @pulumi.getter(name="systemTags")
888
+ def system_tags(self) -> Mapping[str, Any]:
889
+ """
890
+ 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"}`
891
+ """
892
+ return pulumi.get(self, "system_tags")
893
+
466
894
  @property
467
895
  @pulumi.getter(name="timeCreated")
468
896
  def time_created(self) -> str:
@@ -480,6 +908,57 @@ class GetCatalogsCatalogResult(dict):
480
908
  return pulumi.get(self, "time_updated")
481
909
 
482
910
 
911
+ @pulumi.output_type
912
+ class GetCatalogsCatalogLockResult(dict):
913
+ def __init__(__self__, *,
914
+ message: str,
915
+ related_resource_id: str,
916
+ time_created: str,
917
+ type: str):
918
+ """
919
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
920
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
921
+ :param str time_created: The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
922
+ :param str type: Type of the lock.
923
+ """
924
+ pulumi.set(__self__, "message", message)
925
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
926
+ pulumi.set(__self__, "time_created", time_created)
927
+ pulumi.set(__self__, "type", type)
928
+
929
+ @property
930
+ @pulumi.getter
931
+ def message(self) -> str:
932
+ """
933
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
934
+ """
935
+ return pulumi.get(self, "message")
936
+
937
+ @property
938
+ @pulumi.getter(name="relatedResourceId")
939
+ def related_resource_id(self) -> str:
940
+ """
941
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
942
+ """
943
+ return pulumi.get(self, "related_resource_id")
944
+
945
+ @property
946
+ @pulumi.getter(name="timeCreated")
947
+ def time_created(self) -> str:
948
+ """
949
+ The time the data catalog was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
950
+ """
951
+ return pulumi.get(self, "time_created")
952
+
953
+ @property
954
+ @pulumi.getter
955
+ def type(self) -> str:
956
+ """
957
+ Type of the lock.
958
+ """
959
+ return pulumi.get(self, "type")
960
+
961
+
483
962
  @pulumi.output_type
484
963
  class GetCatalogsFilterResult(dict):
485
964
  def __init__(__self__, *,
@@ -962,6 +1441,57 @@ class GetDataAssetsFilterResult(dict):
962
1441
  return pulumi.get(self, "regex")
963
1442
 
964
1443
 
1444
+ @pulumi.output_type
1445
+ class GetMetastoreLockResult(dict):
1446
+ def __init__(__self__, *,
1447
+ message: str,
1448
+ related_resource_id: str,
1449
+ time_created: str,
1450
+ type: str):
1451
+ """
1452
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1453
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1454
+ :param str time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1455
+ :param str type: Type of the lock.
1456
+ """
1457
+ pulumi.set(__self__, "message", message)
1458
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1459
+ pulumi.set(__self__, "time_created", time_created)
1460
+ pulumi.set(__self__, "type", type)
1461
+
1462
+ @property
1463
+ @pulumi.getter
1464
+ def message(self) -> str:
1465
+ """
1466
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1467
+ """
1468
+ return pulumi.get(self, "message")
1469
+
1470
+ @property
1471
+ @pulumi.getter(name="relatedResourceId")
1472
+ def related_resource_id(self) -> str:
1473
+ """
1474
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1475
+ """
1476
+ return pulumi.get(self, "related_resource_id")
1477
+
1478
+ @property
1479
+ @pulumi.getter(name="timeCreated")
1480
+ def time_created(self) -> str:
1481
+ """
1482
+ Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1483
+ """
1484
+ return pulumi.get(self, "time_created")
1485
+
1486
+ @property
1487
+ @pulumi.getter
1488
+ def type(self) -> str:
1489
+ """
1490
+ Type of the lock.
1491
+ """
1492
+ return pulumi.get(self, "type")
1493
+
1494
+
965
1495
  @pulumi.output_type
966
1496
  class GetMetastoresFilterResult(dict):
967
1497
  def __init__(__self__, *,
@@ -1000,7 +1530,9 @@ class GetMetastoresMetastoreResult(dict):
1000
1530
  freeform_tags: Mapping[str, Any],
1001
1531
  id: str,
1002
1532
  lifecycle_details: str,
1533
+ locks: Sequence['outputs.GetMetastoresMetastoreLockResult'],
1003
1534
  state: str,
1535
+ system_tags: Mapping[str, Any],
1004
1536
  time_created: str,
1005
1537
  time_updated: str):
1006
1538
  """
@@ -1012,7 +1544,9 @@ class GetMetastoresMetastoreResult(dict):
1012
1544
  :param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1013
1545
  :param str id: The metastore's OCID.
1014
1546
  :param 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.
1547
+ :param Sequence['GetMetastoresMetastoreLockArgs'] locks: Locks associated with this resource.
1015
1548
  :param str state: A filter to return only resources that match the specified lifecycle state. The value is case insensitive.
1549
+ :param 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"}`
1016
1550
  :param str time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1017
1551
  :param str time_updated: Time at which the metastore was last modified. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1018
1552
  """
@@ -1024,7 +1558,9 @@ class GetMetastoresMetastoreResult(dict):
1024
1558
  pulumi.set(__self__, "freeform_tags", freeform_tags)
1025
1559
  pulumi.set(__self__, "id", id)
1026
1560
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1561
+ pulumi.set(__self__, "locks", locks)
1027
1562
  pulumi.set(__self__, "state", state)
1563
+ pulumi.set(__self__, "system_tags", system_tags)
1028
1564
  pulumi.set(__self__, "time_created", time_created)
1029
1565
  pulumi.set(__self__, "time_updated", time_updated)
1030
1566
 
@@ -1092,6 +1628,14 @@ class GetMetastoresMetastoreResult(dict):
1092
1628
  """
1093
1629
  return pulumi.get(self, "lifecycle_details")
1094
1630
 
1631
+ @property
1632
+ @pulumi.getter
1633
+ def locks(self) -> Sequence['outputs.GetMetastoresMetastoreLockResult']:
1634
+ """
1635
+ Locks associated with this resource.
1636
+ """
1637
+ return pulumi.get(self, "locks")
1638
+
1095
1639
  @property
1096
1640
  @pulumi.getter
1097
1641
  def state(self) -> str:
@@ -1100,6 +1644,14 @@ class GetMetastoresMetastoreResult(dict):
1100
1644
  """
1101
1645
  return pulumi.get(self, "state")
1102
1646
 
1647
+ @property
1648
+ @pulumi.getter(name="systemTags")
1649
+ def system_tags(self) -> Mapping[str, Any]:
1650
+ """
1651
+ 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"}`
1652
+ """
1653
+ return pulumi.get(self, "system_tags")
1654
+
1103
1655
  @property
1104
1656
  @pulumi.getter(name="timeCreated")
1105
1657
  def time_created(self) -> str:
@@ -1117,3 +1669,54 @@ class GetMetastoresMetastoreResult(dict):
1117
1669
  return pulumi.get(self, "time_updated")
1118
1670
 
1119
1671
 
1672
+ @pulumi.output_type
1673
+ class GetMetastoresMetastoreLockResult(dict):
1674
+ def __init__(__self__, *,
1675
+ message: str,
1676
+ related_resource_id: str,
1677
+ time_created: str,
1678
+ type: str):
1679
+ """
1680
+ :param str message: A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1681
+ :param str related_resource_id: The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1682
+ :param str time_created: Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1683
+ :param str type: Type of the lock.
1684
+ """
1685
+ pulumi.set(__self__, "message", message)
1686
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1687
+ pulumi.set(__self__, "time_created", time_created)
1688
+ pulumi.set(__self__, "type", type)
1689
+
1690
+ @property
1691
+ @pulumi.getter
1692
+ def message(self) -> str:
1693
+ """
1694
+ A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
1695
+ """
1696
+ return pulumi.get(self, "message")
1697
+
1698
+ @property
1699
+ @pulumi.getter(name="relatedResourceId")
1700
+ def related_resource_id(self) -> str:
1701
+ """
1702
+ The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
1703
+ """
1704
+ return pulumi.get(self, "related_resource_id")
1705
+
1706
+ @property
1707
+ @pulumi.getter(name="timeCreated")
1708
+ def time_created(self) -> str:
1709
+ """
1710
+ Time at which the metastore was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1711
+ """
1712
+ return pulumi.get(self, "time_created")
1713
+
1714
+ @property
1715
+ @pulumi.getter
1716
+ def type(self) -> str:
1717
+ """
1718
+ Type of the lock.
1719
+ """
1720
+ return pulumi.get(self, "type")
1721
+
1722
+