pulumi-oci 2.3.0a1721242122__py3-none-any.whl → 2.4.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 (89) hide show
  1. pulumi_oci/__init__.py +19 -11
  2. pulumi_oci/apmsynthetics/_inputs.py +457 -1
  3. pulumi_oci/apmsynthetics/config.py +172 -7
  4. pulumi_oci/apmsynthetics/get_monitor.py +42 -3
  5. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  6. pulumi_oci/apmsynthetics/outputs.py +1129 -9
  7. pulumi_oci/core/_inputs.py +8 -8
  8. pulumi_oci/core/outputs.py +24 -8
  9. pulumi_oci/database/_inputs.py +16 -0
  10. pulumi_oci/database/autonomous_database.py +83 -9
  11. pulumi_oci/database/cloud_autonomous_vm_cluster.py +7 -25
  12. pulumi_oci/database/cloud_exadata_infrastructure.py +66 -17
  13. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  14. pulumi_oci/database/database.py +0 -96
  15. pulumi_oci/database/get_autonomous_database.py +25 -1
  16. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  17. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  18. pulumi_oci/database/get_key_store.py +11 -1
  19. pulumi_oci/database/key_store.py +34 -0
  20. pulumi_oci/database/outputs.py +93 -0
  21. pulumi_oci/datasafe/__init__.py +1 -0
  22. pulumi_oci/datasafe/_inputs.py +130 -0
  23. pulumi_oci/datasafe/discovery_mod.py +67 -38
  24. pulumi_oci/datasafe/get_audit_events.py +2 -2
  25. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  26. pulumi_oci/datasafe/get_report.py +1 -1
  27. pulumi_oci/datasafe/get_report_definition.py +1 -1
  28. pulumi_oci/datasafe/get_reports.py +43 -1
  29. pulumi_oci/datasafe/get_security_assessment.py +14 -1
  30. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -3
  31. pulumi_oci/datasafe/get_security_assessment_findings.py +21 -3
  32. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  33. pulumi_oci/datasafe/get_sensitive_data_model_sensitive_types.py +153 -0
  34. pulumi_oci/datasafe/get_user_assessment.py +14 -1
  35. pulumi_oci/datasafe/outputs.py +530 -6
  36. pulumi_oci/datasafe/report.py +4 -4
  37. pulumi_oci/datasafe/report_definition.py +4 -4
  38. pulumi_oci/datasafe/security_assessment.py +49 -0
  39. pulumi_oci/datasafe/sensitive_data_model.py +60 -3
  40. pulumi_oci/datasafe/unset_security_assessment_baseline.py +69 -16
  41. pulumi_oci/datasafe/unset_user_assessment_baseline.py +58 -5
  42. pulumi_oci/datasafe/user_assessment.py +49 -0
  43. pulumi_oci/{emwarehouse → globallydistributeddatabase}/__init__.py +6 -6
  44. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  46. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  48. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  49. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  50. pulumi_oci/{emwarehouse/em_warehouse.py → globallydistributeddatabase/private_endpoint.py} +288 -267
  51. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  52. pulumi_oci/integration/_inputs.py +0 -2
  53. pulumi_oci/integration/get_integration_instance.py +0 -1
  54. pulumi_oci/integration/integration_instance.py +0 -27
  55. pulumi_oci/integration/outputs.py +4 -12
  56. pulumi_oci/opsi/_inputs.py +8 -8
  57. pulumi_oci/opsi/database_insight.py +71 -15
  58. pulumi_oci/opsi/get_database_insight.py +29 -3
  59. pulumi_oci/opsi/get_database_insights.py +1 -1
  60. pulumi_oci/opsi/get_enterprise_manager_bridges.py +2 -2
  61. pulumi_oci/opsi/get_host_insight.py +1 -4
  62. pulumi_oci/opsi/get_host_insights.py +3 -3
  63. pulumi_oci/opsi/get_news_report.py +1 -1
  64. pulumi_oci/opsi/get_news_reports.py +3 -3
  65. pulumi_oci/opsi/get_operations_insights_private_endpoint.py +1 -1
  66. pulumi_oci/opsi/get_operations_insights_private_endpoints.py +1 -1
  67. pulumi_oci/opsi/get_operations_insights_warehouse.py +7 -7
  68. pulumi_oci/opsi/get_operations_insights_warehouse_user.py +2 -2
  69. pulumi_oci/opsi/get_operations_insights_warehouses.py +5 -5
  70. pulumi_oci/opsi/host_insight.py +6 -14
  71. pulumi_oci/opsi/news_report.py +2 -2
  72. pulumi_oci/opsi/operations_insights_private_endpoint.py +9 -9
  73. pulumi_oci/opsi/operations_insights_warehouse.py +17 -17
  74. pulumi_oci/opsi/operations_insights_warehouse_download_warehouse_wallet.py +14 -14
  75. pulumi_oci/opsi/operations_insights_warehouse_rotate_warehouse_wallet.py +7 -7
  76. pulumi_oci/opsi/operations_insights_warehouse_user.py +14 -14
  77. pulumi_oci/opsi/outputs.py +46 -24
  78. pulumi_oci/pulumi-plugin.json +1 -1
  79. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/METADATA +1 -1
  80. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/RECORD +82 -81
  81. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/WHEEL +1 -1
  82. pulumi_oci/emwarehouse/_inputs.py +0 -94
  83. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  84. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  85. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  86. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  87. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  88. pulumi_oci/emwarehouse/outputs.py +0 -616
  89. {pulumi_oci-2.3.0a1721242122.dist-info → pulumi_oci-2.4.0.dist-info}/top_level.txt +0 -0
@@ -18,8 +18,8 @@ class OperationsInsightsWarehouseDownloadWarehouseWalletArgs:
18
18
  operations_insights_warehouse_wallet_password: pulumi.Input[str]):
19
19
  """
20
20
  The set of arguments for constructing a OperationsInsightsWarehouseDownloadWarehouseWallet resource.
21
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
22
- :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Operations Insights Warehouse.
21
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
22
+ :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Ops Insights Warehouse.
23
23
 
24
24
 
25
25
  ** IMPORTANT **
@@ -32,7 +32,7 @@ class OperationsInsightsWarehouseDownloadWarehouseWalletArgs:
32
32
  @pulumi.getter(name="operationsInsightsWarehouseId")
33
33
  def operations_insights_warehouse_id(self) -> pulumi.Input[str]:
34
34
  """
35
- Unique Operations Insights Warehouse identifier
35
+ Unique Ops Insights Warehouse identifier
36
36
  """
37
37
  return pulumi.get(self, "operations_insights_warehouse_id")
38
38
 
@@ -44,7 +44,7 @@ class OperationsInsightsWarehouseDownloadWarehouseWalletArgs:
44
44
  @pulumi.getter(name="operationsInsightsWarehouseWalletPassword")
45
45
  def operations_insights_warehouse_wallet_password(self) -> pulumi.Input[str]:
46
46
  """
47
- User provided ADW wallet password for the Operations Insights Warehouse.
47
+ User provided ADW wallet password for the Ops Insights Warehouse.
48
48
 
49
49
 
50
50
  ** IMPORTANT **
@@ -64,8 +64,8 @@ class _OperationsInsightsWarehouseDownloadWarehouseWalletState:
64
64
  operations_insights_warehouse_wallet_password: Optional[pulumi.Input[str]] = None):
65
65
  """
66
66
  Input properties used for looking up and filtering OperationsInsightsWarehouseDownloadWarehouseWallet resources.
67
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
68
- :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Operations Insights Warehouse.
67
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
68
+ :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Ops Insights Warehouse.
69
69
 
70
70
 
71
71
  ** IMPORTANT **
@@ -80,7 +80,7 @@ class _OperationsInsightsWarehouseDownloadWarehouseWalletState:
80
80
  @pulumi.getter(name="operationsInsightsWarehouseId")
81
81
  def operations_insights_warehouse_id(self) -> Optional[pulumi.Input[str]]:
82
82
  """
83
- Unique Operations Insights Warehouse identifier
83
+ Unique Ops Insights Warehouse identifier
84
84
  """
85
85
  return pulumi.get(self, "operations_insights_warehouse_id")
86
86
 
@@ -92,7 +92,7 @@ class _OperationsInsightsWarehouseDownloadWarehouseWalletState:
92
92
  @pulumi.getter(name="operationsInsightsWarehouseWalletPassword")
93
93
  def operations_insights_warehouse_wallet_password(self) -> Optional[pulumi.Input[str]]:
94
94
  """
95
- User provided ADW wallet password for the Operations Insights Warehouse.
95
+ User provided ADW wallet password for the Ops Insights Warehouse.
96
96
 
97
97
 
98
98
  ** IMPORTANT **
@@ -139,8 +139,8 @@ class OperationsInsightsWarehouseDownloadWarehouseWallet(pulumi.CustomResource):
139
139
 
140
140
  :param str resource_name: The name of the resource.
141
141
  :param pulumi.ResourceOptions opts: Options for the resource.
142
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
143
- :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Operations Insights Warehouse.
142
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
143
+ :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Ops Insights Warehouse.
144
144
 
145
145
 
146
146
  ** IMPORTANT **
@@ -229,8 +229,8 @@ class OperationsInsightsWarehouseDownloadWarehouseWallet(pulumi.CustomResource):
229
229
  :param str resource_name: The unique name of the resulting resource.
230
230
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
231
231
  :param pulumi.ResourceOptions opts: Options for the resource.
232
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
233
- :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Operations Insights Warehouse.
232
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
233
+ :param pulumi.Input[str] operations_insights_warehouse_wallet_password: User provided ADW wallet password for the Ops Insights Warehouse.
234
234
 
235
235
 
236
236
  ** IMPORTANT **
@@ -248,7 +248,7 @@ class OperationsInsightsWarehouseDownloadWarehouseWallet(pulumi.CustomResource):
248
248
  @pulumi.getter(name="operationsInsightsWarehouseId")
249
249
  def operations_insights_warehouse_id(self) -> pulumi.Output[str]:
250
250
  """
251
- Unique Operations Insights Warehouse identifier
251
+ Unique Ops Insights Warehouse identifier
252
252
  """
253
253
  return pulumi.get(self, "operations_insights_warehouse_id")
254
254
 
@@ -256,7 +256,7 @@ class OperationsInsightsWarehouseDownloadWarehouseWallet(pulumi.CustomResource):
256
256
  @pulumi.getter(name="operationsInsightsWarehouseWalletPassword")
257
257
  def operations_insights_warehouse_wallet_password(self) -> pulumi.Output[str]:
258
258
  """
259
- User provided ADW wallet password for the Operations Insights Warehouse.
259
+ User provided ADW wallet password for the Ops Insights Warehouse.
260
260
 
261
261
 
262
262
  ** IMPORTANT **
@@ -17,7 +17,7 @@ class OperationsInsightsWarehouseRotateWarehouseWalletArgs:
17
17
  operations_insights_warehouse_id: pulumi.Input[str]):
18
18
  """
19
19
  The set of arguments for constructing a OperationsInsightsWarehouseRotateWarehouseWallet resource.
20
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
20
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
21
21
 
22
22
 
23
23
  ** IMPORTANT **
@@ -29,7 +29,7 @@ class OperationsInsightsWarehouseRotateWarehouseWalletArgs:
29
29
  @pulumi.getter(name="operationsInsightsWarehouseId")
30
30
  def operations_insights_warehouse_id(self) -> pulumi.Input[str]:
31
31
  """
32
- Unique Operations Insights Warehouse identifier
32
+ Unique Ops Insights Warehouse identifier
33
33
 
34
34
 
35
35
  ** IMPORTANT **
@@ -48,7 +48,7 @@ class _OperationsInsightsWarehouseRotateWarehouseWalletState:
48
48
  operations_insights_warehouse_id: Optional[pulumi.Input[str]] = None):
49
49
  """
50
50
  Input properties used for looking up and filtering OperationsInsightsWarehouseRotateWarehouseWallet resources.
51
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
51
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
52
52
 
53
53
 
54
54
  ** IMPORTANT **
@@ -61,7 +61,7 @@ class _OperationsInsightsWarehouseRotateWarehouseWalletState:
61
61
  @pulumi.getter(name="operationsInsightsWarehouseId")
62
62
  def operations_insights_warehouse_id(self) -> Optional[pulumi.Input[str]]:
63
63
  """
64
- Unique Operations Insights Warehouse identifier
64
+ Unique Ops Insights Warehouse identifier
65
65
 
66
66
 
67
67
  ** IMPORTANT **
@@ -105,7 +105,7 @@ class OperationsInsightsWarehouseRotateWarehouseWallet(pulumi.CustomResource):
105
105
 
106
106
  :param str resource_name: The name of the resource.
107
107
  :param pulumi.ResourceOptions opts: Options for the resource.
108
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
108
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
109
109
 
110
110
 
111
111
  ** IMPORTANT **
@@ -185,7 +185,7 @@ class OperationsInsightsWarehouseRotateWarehouseWallet(pulumi.CustomResource):
185
185
  :param str resource_name: The unique name of the resulting resource.
186
186
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
187
187
  :param pulumi.ResourceOptions opts: Options for the resource.
188
- :param pulumi.Input[str] operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
188
+ :param pulumi.Input[str] operations_insights_warehouse_id: Unique Ops Insights Warehouse identifier
189
189
 
190
190
 
191
191
  ** IMPORTANT **
@@ -202,7 +202,7 @@ class OperationsInsightsWarehouseRotateWarehouseWallet(pulumi.CustomResource):
202
202
  @pulumi.getter(name="operationsInsightsWarehouseId")
203
203
  def operations_insights_warehouse_id(self) -> pulumi.Output[str]:
204
204
  """
205
- Unique Operations Insights Warehouse identifier
205
+ Unique Ops Insights Warehouse identifier
206
206
 
207
207
 
208
208
  ** IMPORTANT **
@@ -26,7 +26,7 @@ class OperationsInsightsWarehouseUserArgs:
26
26
  """
27
27
  The set of arguments for constructing a OperationsInsightsWarehouseUser resource.
28
28
  :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
29
- :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
29
+ :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
30
30
  :param pulumi.Input[bool] is_awr_data_access: (Updatable) Indicate whether user has access to AWR data.
31
31
  :param pulumi.Input[str] operations_insights_warehouse_id: OPSI Warehouse OCID
32
32
 
@@ -37,7 +37,7 @@ class OperationsInsightsWarehouseUserArgs:
37
37
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
38
38
  :param pulumi.Input[bool] is_em_data_access: (Updatable) Indicate whether user has access to EM data.
39
39
  :param pulumi.Input[bool] is_opsi_data_access: (Updatable) Indicate whether user has access to OPSI data.
40
- :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
40
+ :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
41
41
  """
42
42
  pulumi.set(__self__, "compartment_id", compartment_id)
43
43
  pulumi.set(__self__, "connection_password", connection_password)
@@ -70,7 +70,7 @@ class OperationsInsightsWarehouseUserArgs:
70
70
  @pulumi.getter(name="connectionPassword")
71
71
  def connection_password(self) -> pulumi.Input[str]:
72
72
  """
73
- (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
73
+ (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
74
74
  """
75
75
  return pulumi.get(self, "connection_password")
76
76
 
@@ -158,7 +158,7 @@ class OperationsInsightsWarehouseUserArgs:
158
158
  @pulumi.getter
159
159
  def name(self) -> Optional[pulumi.Input[str]]:
160
160
  """
161
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
161
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
162
162
  """
163
163
  return pulumi.get(self, "name")
164
164
 
@@ -187,14 +187,14 @@ class _OperationsInsightsWarehouseUserState:
187
187
  """
188
188
  Input properties used for looking up and filtering OperationsInsightsWarehouseUser resources.
189
189
  :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
190
- :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
190
+ :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
191
191
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
192
192
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
193
193
  :param pulumi.Input[bool] is_awr_data_access: (Updatable) Indicate whether user has access to AWR data.
194
194
  :param pulumi.Input[bool] is_em_data_access: (Updatable) Indicate whether user has access to EM data.
195
195
  :param pulumi.Input[bool] is_opsi_data_access: (Updatable) Indicate whether user has access to OPSI data.
196
196
  :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.
197
- :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
197
+ :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
198
198
  :param pulumi.Input[str] operations_insights_warehouse_id: OPSI Warehouse OCID
199
199
 
200
200
 
@@ -250,7 +250,7 @@ class _OperationsInsightsWarehouseUserState:
250
250
  @pulumi.getter(name="connectionPassword")
251
251
  def connection_password(self) -> Optional[pulumi.Input[str]]:
252
252
  """
253
- (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
253
+ (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
254
254
  """
255
255
  return pulumi.get(self, "connection_password")
256
256
 
@@ -334,7 +334,7 @@ class _OperationsInsightsWarehouseUserState:
334
334
  @pulumi.getter
335
335
  def name(self) -> Optional[pulumi.Input[str]]:
336
336
  """
337
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
337
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
338
338
  """
339
339
  return pulumi.get(self, "name")
340
340
 
@@ -461,13 +461,13 @@ class OperationsInsightsWarehouseUser(pulumi.CustomResource):
461
461
  :param str resource_name: The name of the resource.
462
462
  :param pulumi.ResourceOptions opts: Options for the resource.
463
463
  :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
464
- :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
464
+ :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
465
465
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
466
466
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
467
467
  :param pulumi.Input[bool] is_awr_data_access: (Updatable) Indicate whether user has access to AWR data.
468
468
  :param pulumi.Input[bool] is_em_data_access: (Updatable) Indicate whether user has access to EM data.
469
469
  :param pulumi.Input[bool] is_opsi_data_access: (Updatable) Indicate whether user has access to OPSI data.
470
- :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
470
+ :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
471
471
  :param pulumi.Input[str] operations_insights_warehouse_id: OPSI Warehouse OCID
472
472
 
473
473
 
@@ -605,14 +605,14 @@ class OperationsInsightsWarehouseUser(pulumi.CustomResource):
605
605
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
606
606
  :param pulumi.ResourceOptions opts: Options for the resource.
607
607
  :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
608
- :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
608
+ :param pulumi.Input[str] connection_password: (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
609
609
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
610
610
  :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
611
611
  :param pulumi.Input[bool] is_awr_data_access: (Updatable) Indicate whether user has access to AWR data.
612
612
  :param pulumi.Input[bool] is_em_data_access: (Updatable) Indicate whether user has access to EM data.
613
613
  :param pulumi.Input[bool] is_opsi_data_access: (Updatable) Indicate whether user has access to OPSI data.
614
614
  :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.
615
- :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
615
+ :param pulumi.Input[str] name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
616
616
  :param pulumi.Input[str] operations_insights_warehouse_id: OPSI Warehouse OCID
617
617
 
618
618
 
@@ -655,7 +655,7 @@ class OperationsInsightsWarehouseUser(pulumi.CustomResource):
655
655
  @pulumi.getter(name="connectionPassword")
656
656
  def connection_password(self) -> pulumi.Output[str]:
657
657
  """
658
- (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
658
+ (Updatable) User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
659
659
  """
660
660
  return pulumi.get(self, "connection_password")
661
661
 
@@ -711,7 +711,7 @@ class OperationsInsightsWarehouseUser(pulumi.CustomResource):
711
711
  @pulumi.getter
712
712
  def name(self) -> pulumi.Output[str]:
713
713
  """
714
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
714
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
715
715
  """
716
716
  return pulumi.get(self, "name")
717
717
 
@@ -142,7 +142,7 @@ class DatabaseInsightConnectionCredentialDetails(dict):
142
142
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
143
143
  :param str role: database user role.
144
144
  :param str user_name: database user name.
145
- :param str wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
145
+ :param str wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
146
146
  """
147
147
  if credential_source_name is not None:
148
148
  pulumi.set(__self__, "credential_source_name", credential_source_name)
@@ -201,7 +201,7 @@ class DatabaseInsightConnectionCredentialDetails(dict):
201
201
  @pulumi.getter(name="walletSecretId")
202
202
  def wallet_secret_id(self) -> Optional[str]:
203
203
  """
204
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
204
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
205
205
  """
206
206
  return pulumi.get(self, "wallet_secret_id")
207
207
 
@@ -380,7 +380,7 @@ class DatabaseInsightCredentialDetails(dict):
380
380
  :param str password_secret_id: The secret [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) mapping to the database credentials.
381
381
  :param str role: database user role.
382
382
  :param str user_name: database user name.
383
- :param str wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
383
+ :param str wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
384
384
  """
385
385
  pulumi.set(__self__, "credential_type", credential_type)
386
386
  if credential_source_name is not None:
@@ -438,7 +438,7 @@ class DatabaseInsightCredentialDetails(dict):
438
438
  @pulumi.getter(name="walletSecretId")
439
439
  def wallet_secret_id(self) -> Optional[str]:
440
440
  """
441
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored.
441
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database keystore contents are stored. This is used for TCPS support in BM/VM/ExaCS cases.
442
442
  """
443
443
  return pulumi.get(self, "wallet_secret_id")
444
444
 
@@ -595,7 +595,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
595
595
  """
596
596
  :param str compartment_id: (Updatable) Compartment Identifier of database
597
597
  :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailConnectionDetailsArgs' connection_details: Connection details of the private endpoints.
598
- :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs' credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
598
+ :param 'ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetailsArgs' credential_details: User credential details to connect to the database.
599
599
  :param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
600
600
  :param str database_resource_type: Oracle Cloud Infrastructure database resource type
601
601
  :param str dbm_private_endpoint_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint
@@ -654,7 +654,7 @@ class ExadataInsightMemberVmClusterDetailMemberDatabaseDetail(dict):
654
654
  @pulumi.getter(name="credentialDetails")
655
655
  def credential_details(self) -> Optional['outputs.ExadataInsightMemberVmClusterDetailMemberDatabaseDetailCredentialDetails']:
656
656
  """
657
- User credential details to connect to the database. This is supplied via the External Database Service.
657
+ User credential details to connect to the database.
658
658
  """
659
659
  return pulumi.get(self, "credential_details")
660
660
 
@@ -2517,6 +2517,8 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2517
2517
  exadata_insight_id: str,
2518
2518
  freeform_tags: Mapping[str, Any],
2519
2519
  id: str,
2520
+ is_heat_wave_cluster_attached: bool,
2521
+ is_highly_available: bool,
2520
2522
  lifecycle_details: str,
2521
2523
  opsi_private_endpoint_id: str,
2522
2524
  parent_id: str,
@@ -2530,9 +2532,9 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2530
2532
  time_updated: str):
2531
2533
  """
2532
2534
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2533
- :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetailArgs'] connection_credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
2535
+ :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetailArgs'] connection_credential_details: User credential details to connect to the database.
2534
2536
  :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetailArgs'] connection_details: Connection details to connect to the database. HostName, protocol, and port should be specified.
2535
- :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailArgs'] credential_details: User credential details to connect to the database. This is supplied via the External Database Service.
2537
+ :param Sequence['GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailArgs'] credential_details: User credential details to connect to the database.
2536
2538
  :param str database_connection_status_details: A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
2537
2539
  :param str database_display_name: Display name of database
2538
2540
  :param str database_id: Optional list of database [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated DBaaS entity.
@@ -2551,6 +2553,8 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2551
2553
  :param str exadata_insight_id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of exadata insight resource.
2552
2554
  :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"}`
2553
2555
  :param str id: Optional list of database insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
2556
+ :param bool is_heat_wave_cluster_attached: Specifies if MYSQL DB System has heatwave cluster attached.
2557
+ :param bool is_highly_available: Specifies if MYSQL DB System is highly available.
2554
2558
  :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.
2555
2559
  :param str opsi_private_endpoint_id: Unique Operations Insights PrivateEndpoint identifier
2556
2560
  :param str parent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
@@ -2587,6 +2591,8 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2587
2591
  pulumi.set(__self__, "exadata_insight_id", exadata_insight_id)
2588
2592
  pulumi.set(__self__, "freeform_tags", freeform_tags)
2589
2593
  pulumi.set(__self__, "id", id)
2594
+ pulumi.set(__self__, "is_heat_wave_cluster_attached", is_heat_wave_cluster_attached)
2595
+ pulumi.set(__self__, "is_highly_available", is_highly_available)
2590
2596
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
2591
2597
  pulumi.set(__self__, "opsi_private_endpoint_id", opsi_private_endpoint_id)
2592
2598
  pulumi.set(__self__, "parent_id", parent_id)
@@ -2611,7 +2617,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2611
2617
  @pulumi.getter(name="connectionCredentialDetails")
2612
2618
  def connection_credential_details(self) -> Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetailResult']:
2613
2619
  """
2614
- User credential details to connect to the database. This is supplied via the External Database Service.
2620
+ User credential details to connect to the database.
2615
2621
  """
2616
2622
  return pulumi.get(self, "connection_credential_details")
2617
2623
 
@@ -2627,7 +2633,7 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2627
2633
  @pulumi.getter(name="credentialDetails")
2628
2634
  def credential_details(self) -> Sequence['outputs.GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetailResult']:
2629
2635
  """
2630
- User credential details to connect to the database. This is supplied via the External Database Service.
2636
+ User credential details to connect to the database.
2631
2637
  """
2632
2638
  return pulumi.get(self, "credential_details")
2633
2639
 
@@ -2785,6 +2791,22 @@ class GetDatabaseInsightsDatabaseInsightsCollectionItemResult(dict):
2785
2791
  """
2786
2792
  return pulumi.get(self, "id")
2787
2793
 
2794
+ @property
2795
+ @pulumi.getter(name="isHeatWaveClusterAttached")
2796
+ def is_heat_wave_cluster_attached(self) -> bool:
2797
+ """
2798
+ Specifies if MYSQL DB System has heatwave cluster attached.
2799
+ """
2800
+ return pulumi.get(self, "is_heat_wave_cluster_attached")
2801
+
2802
+ @property
2803
+ @pulumi.getter(name="isHighlyAvailable")
2804
+ def is_highly_available(self) -> bool:
2805
+ """
2806
+ Specifies if MYSQL DB System is highly available.
2807
+ """
2808
+ return pulumi.get(self, "is_highly_available")
2809
+
2788
2810
  @property
2789
2811
  @pulumi.getter(name="lifecycleDetails")
2790
2812
  def lifecycle_details(self) -> str:
@@ -4269,7 +4291,7 @@ class GetHostInsightsHostInsightSummaryCollectionItemResult(dict):
4269
4291
  :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"}`
4270
4292
  :param str host_display_name: The user-friendly name for the host. The name does not have to be unique.
4271
4293
  :param str host_name: The host name. The host name is unique amongst the hosts managed by the same management agent.
4272
- :param str host_type: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST
4294
+ :param str host_type: Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
4273
4295
  :param str id: Optional list of host insight resource [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4274
4296
  :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.
4275
4297
  :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent
@@ -4427,7 +4449,7 @@ class GetHostInsightsHostInsightSummaryCollectionItemResult(dict):
4427
4449
  @pulumi.getter(name="hostType")
4428
4450
  def host_type(self) -> str:
4429
4451
  """
4430
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST
4452
+ Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST
4431
4453
  """
4432
4454
  return pulumi.get(self, "host_type")
4433
4455
 
@@ -5445,7 +5467,7 @@ class GetOperationsInsightsWarehouseUsersFilterResult(dict):
5445
5467
  values: Sequence[str],
5446
5468
  regex: Optional[bool] = None):
5447
5469
  """
5448
- :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5470
+ :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5449
5471
  """
5450
5472
  pulumi.set(__self__, "name", name)
5451
5473
  pulumi.set(__self__, "values", values)
@@ -5456,7 +5478,7 @@ class GetOperationsInsightsWarehouseUsersFilterResult(dict):
5456
5478
  @pulumi.getter
5457
5479
  def name(self) -> str:
5458
5480
  """
5459
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5481
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5460
5482
  """
5461
5483
  return pulumi.get(self, "name")
5462
5484
 
@@ -5503,7 +5525,7 @@ class GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryC
5503
5525
  time_updated: str):
5504
5526
  """
5505
5527
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
5506
- :param str connection_password: User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5528
+ :param str connection_password: User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5507
5529
  :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
5508
5530
  :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"}`
5509
5531
  :param str id: Unique Operations Insights Warehouse User identifier
@@ -5511,7 +5533,7 @@ class GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryC
5511
5533
  :param bool is_em_data_access: Indicate whether user has access to EM data.
5512
5534
  :param bool is_opsi_data_access: Indicate whether user has access to OPSI data.
5513
5535
  :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.
5514
- :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5536
+ :param str name: Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5515
5537
  :param str operations_insights_warehouse_id: Unique Operations Insights Warehouse identifier
5516
5538
  :param str state: Lifecycle states
5517
5539
  :param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -5546,7 +5568,7 @@ class GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryC
5546
5568
  @pulumi.getter(name="connectionPassword")
5547
5569
  def connection_password(self) -> str:
5548
5570
  """
5549
- User provided connection password for the AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5571
+ User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5550
5572
  """
5551
5573
  return pulumi.get(self, "connection_password")
5552
5574
 
@@ -5610,7 +5632,7 @@ class GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryC
5610
5632
  @pulumi.getter
5611
5633
  def name(self) -> str:
5612
5634
  """
5613
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Operations Insights OPSI Hub.
5635
+ Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
5614
5636
  """
5615
5637
  return pulumi.get(self, "name")
5616
5638
 
@@ -5722,15 +5744,15 @@ class GetOperationsInsightsWarehousesOperationsInsightsWarehouseSummaryCollectio
5722
5744
  :param str display_name: A filter to return only resources that match the entire display name.
5723
5745
  :param str dynamic_group_id: OCID of the dynamic group created for the warehouse
5724
5746
  :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"}`
5725
- :param str id: Unique Operations Insights Warehouse identifier
5747
+ :param str id: Unique Ops Insights Warehouse identifier
5726
5748
  :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.
5727
- :param str operations_insights_tenancy_id: Tenancy Identifier of Operations Insights service
5749
+ :param str operations_insights_tenancy_id: Tenancy Identifier of Ops Insights service
5728
5750
  :param str state: Lifecycle states
5729
5751
  :param float storage_allocated_in_gbs: Storage allocated to OPSI Warehouse ADW.
5730
5752
  :param float storage_used_in_gbs: Storage by OPSI Warehouse ADW in GB.
5731
5753
  :param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5732
5754
  :param str time_created: The time at which the resource was first created. An RFC3339 formatted datetime string
5733
- :param str time_last_wallet_rotated: The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
5755
+ :param str time_last_wallet_rotated: The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
5734
5756
  :param str time_updated: The time at which the resource was last updated. An RFC3339 formatted datetime string
5735
5757
  """
5736
5758
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -5811,7 +5833,7 @@ class GetOperationsInsightsWarehousesOperationsInsightsWarehouseSummaryCollectio
5811
5833
  @pulumi.getter
5812
5834
  def id(self) -> str:
5813
5835
  """
5814
- Unique Operations Insights Warehouse identifier
5836
+ Unique Ops Insights Warehouse identifier
5815
5837
  """
5816
5838
  return pulumi.get(self, "id")
5817
5839
 
@@ -5827,7 +5849,7 @@ class GetOperationsInsightsWarehousesOperationsInsightsWarehouseSummaryCollectio
5827
5849
  @pulumi.getter(name="operationsInsightsTenancyId")
5828
5850
  def operations_insights_tenancy_id(self) -> str:
5829
5851
  """
5830
- Tenancy Identifier of Operations Insights service
5852
+ Tenancy Identifier of Ops Insights service
5831
5853
  """
5832
5854
  return pulumi.get(self, "operations_insights_tenancy_id")
5833
5855
 
@@ -5875,7 +5897,7 @@ class GetOperationsInsightsWarehousesOperationsInsightsWarehouseSummaryCollectio
5875
5897
  @pulumi.getter(name="timeLastWalletRotated")
5876
5898
  def time_last_wallet_rotated(self) -> str:
5877
5899
  """
5878
- The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
5900
+ The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
5879
5901
  """
5880
5902
  return pulumi.get(self, "time_last_wallet_rotated")
5881
5903
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.3.0-alpha.1721242122"
4
+ "version": "2.4.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 2.3.0a1721242122
3
+ Version: 2.4.0
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com