pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -315,6 +315,38 @@ __all__ = [
315
315
  'GetSensitiveTypesFilterResult',
316
316
  'GetSensitiveTypesSensitiveTypeCollectionResult',
317
317
  'GetSensitiveTypesSensitiveTypeCollectionItemResult',
318
+ 'GetSqlCollectionAnalyticsFilterResult',
319
+ 'GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionResult',
320
+ 'GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemResult',
321
+ 'GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemDimensionResult',
322
+ 'GetSqlCollectionLogInsightsFilterResult',
323
+ 'GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionResult',
324
+ 'GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemResult',
325
+ 'GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemDimensionResult',
326
+ 'GetSqlCollectionsFilterResult',
327
+ 'GetSqlCollectionsSqlCollectionCollectionResult',
328
+ 'GetSqlCollectionsSqlCollectionCollectionItemResult',
329
+ 'GetSqlFirewallAllowedSqlAnalyticsFilterResult',
330
+ 'GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionResult',
331
+ 'GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemResult',
332
+ 'GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemDimensionResult',
333
+ 'GetSqlFirewallAllowedSqlsFilterResult',
334
+ 'GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionResult',
335
+ 'GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionItemResult',
336
+ 'GetSqlFirewallPoliciesFilterResult',
337
+ 'GetSqlFirewallPoliciesSqlFirewallPolicyCollectionResult',
338
+ 'GetSqlFirewallPoliciesSqlFirewallPolicyCollectionItemResult',
339
+ 'GetSqlFirewallPolicyAnalyticsFilterResult',
340
+ 'GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionResult',
341
+ 'GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemResult',
342
+ 'GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimensionResult',
343
+ 'GetSqlFirewallViolationAnalyticsFilterResult',
344
+ 'GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionResult',
345
+ 'GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemResult',
346
+ 'GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemDimensionResult',
347
+ 'GetSqlFirewallViolationsFilterResult',
348
+ 'GetSqlFirewallViolationsSqlFirewallViolationsCollectionResult',
349
+ 'GetSqlFirewallViolationsSqlFirewallViolationsCollectionItemResult',
318
350
  'GetTargetAlertPolicyAssociationsFilterResult',
319
351
  'GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionResult',
320
352
  'GetTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemResult',
@@ -15065,7 +15097,7 @@ class GetReportsReportCollectionItemResult(dict):
15065
15097
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
15066
15098
  :param str id: The OCID of the report.
15067
15099
  :param str lifecycle_details: Details about the current state of the report in Data Safe.
15068
- :param str mime_type: Specifies the format of report to be .xls or .pdf or .json
15100
+ :param str mime_type: An optional filter to return only resources that match the specified mime type.
15069
15101
  :param str report_definition_id: The ID of the report definition to filter the list of reports
15070
15102
  :param str state: An optional filter to return only resources that match the specified lifecycle state.
15071
15103
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
@@ -15147,7 +15179,7 @@ class GetReportsReportCollectionItemResult(dict):
15147
15179
  @pulumi.getter(name="mimeType")
15148
15180
  def mime_type(self) -> str:
15149
15181
  """
15150
- Specifies the format of report to be .xls or .pdf or .json
15182
+ An optional filter to return only resources that match the specified mime type.
15151
15183
  """
15152
15184
  return pulumi.get(self, "mime_type")
15153
15185
 
@@ -25096,6 +25128,1780 @@ class GetSensitiveTypesSensitiveTypeCollectionItemResult(dict):
25096
25128
  return pulumi.get(self, "time_updated")
25097
25129
 
25098
25130
 
25131
+ @pulumi.output_type
25132
+ class GetSqlCollectionAnalyticsFilterResult(dict):
25133
+ def __init__(__self__, *,
25134
+ name: str,
25135
+ values: Sequence[str],
25136
+ regex: Optional[bool] = None):
25137
+ pulumi.set(__self__, "name", name)
25138
+ pulumi.set(__self__, "values", values)
25139
+ if regex is not None:
25140
+ pulumi.set(__self__, "regex", regex)
25141
+
25142
+ @property
25143
+ @pulumi.getter
25144
+ def name(self) -> str:
25145
+ return pulumi.get(self, "name")
25146
+
25147
+ @property
25148
+ @pulumi.getter
25149
+ def values(self) -> Sequence[str]:
25150
+ return pulumi.get(self, "values")
25151
+
25152
+ @property
25153
+ @pulumi.getter
25154
+ def regex(self) -> Optional[bool]:
25155
+ return pulumi.get(self, "regex")
25156
+
25157
+
25158
+ @pulumi.output_type
25159
+ class GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionResult(dict):
25160
+ def __init__(__self__, *,
25161
+ items: Sequence['outputs.GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemResult']):
25162
+ """
25163
+ :param Sequence['GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemArgs'] items: The aggregated data point items.
25164
+ """
25165
+ pulumi.set(__self__, "items", items)
25166
+
25167
+ @property
25168
+ @pulumi.getter
25169
+ def items(self) -> Sequence['outputs.GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemResult']:
25170
+ """
25171
+ The aggregated data point items.
25172
+ """
25173
+ return pulumi.get(self, "items")
25174
+
25175
+
25176
+ @pulumi.output_type
25177
+ class GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemResult(dict):
25178
+ def __init__(__self__, *,
25179
+ dimensions: Sequence['outputs.GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemDimensionResult'],
25180
+ sql_collection_analytic_count: str):
25181
+ """
25182
+ :param Sequence['GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemDimensionArgs'] dimensions: The dimensions available for SQL collection analytics.
25183
+ :param str sql_collection_analytic_count: The total count of the aggregated metric.
25184
+ """
25185
+ pulumi.set(__self__, "dimensions", dimensions)
25186
+ pulumi.set(__self__, "sql_collection_analytic_count", sql_collection_analytic_count)
25187
+
25188
+ @property
25189
+ @pulumi.getter
25190
+ def dimensions(self) -> Sequence['outputs.GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemDimensionResult']:
25191
+ """
25192
+ The dimensions available for SQL collection analytics.
25193
+ """
25194
+ return pulumi.get(self, "dimensions")
25195
+
25196
+ @property
25197
+ @pulumi.getter(name="sqlCollectionAnalyticCount")
25198
+ def sql_collection_analytic_count(self) -> str:
25199
+ """
25200
+ The total count of the aggregated metric.
25201
+ """
25202
+ return pulumi.get(self, "sql_collection_analytic_count")
25203
+
25204
+
25205
+ @pulumi.output_type
25206
+ class GetSqlCollectionAnalyticsSqlCollectionAnalyticsCollectionItemDimensionResult(dict):
25207
+ def __init__(__self__, *,
25208
+ state: str,
25209
+ target_id: str):
25210
+ """
25211
+ :param str state: The current state of the SQL collection.
25212
+ :param str target_id: A filter to return only items related to a specific target OCID.
25213
+ """
25214
+ pulumi.set(__self__, "state", state)
25215
+ pulumi.set(__self__, "target_id", target_id)
25216
+
25217
+ @property
25218
+ @pulumi.getter
25219
+ def state(self) -> str:
25220
+ """
25221
+ The current state of the SQL collection.
25222
+ """
25223
+ return pulumi.get(self, "state")
25224
+
25225
+ @property
25226
+ @pulumi.getter(name="targetId")
25227
+ def target_id(self) -> str:
25228
+ """
25229
+ A filter to return only items related to a specific target OCID.
25230
+ """
25231
+ return pulumi.get(self, "target_id")
25232
+
25233
+
25234
+ @pulumi.output_type
25235
+ class GetSqlCollectionLogInsightsFilterResult(dict):
25236
+ def __init__(__self__, *,
25237
+ name: str,
25238
+ values: Sequence[str],
25239
+ regex: Optional[bool] = None):
25240
+ pulumi.set(__self__, "name", name)
25241
+ pulumi.set(__self__, "values", values)
25242
+ if regex is not None:
25243
+ pulumi.set(__self__, "regex", regex)
25244
+
25245
+ @property
25246
+ @pulumi.getter
25247
+ def name(self) -> str:
25248
+ return pulumi.get(self, "name")
25249
+
25250
+ @property
25251
+ @pulumi.getter
25252
+ def values(self) -> Sequence[str]:
25253
+ return pulumi.get(self, "values")
25254
+
25255
+ @property
25256
+ @pulumi.getter
25257
+ def regex(self) -> Optional[bool]:
25258
+ return pulumi.get(self, "regex")
25259
+
25260
+
25261
+ @pulumi.output_type
25262
+ class GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionResult(dict):
25263
+ def __init__(__self__, *,
25264
+ items: Sequence['outputs.GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemResult']):
25265
+ """
25266
+ :param Sequence['GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemArgs'] items: The aggregated data point items.
25267
+ """
25268
+ pulumi.set(__self__, "items", items)
25269
+
25270
+ @property
25271
+ @pulumi.getter
25272
+ def items(self) -> Sequence['outputs.GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemResult']:
25273
+ """
25274
+ The aggregated data point items.
25275
+ """
25276
+ return pulumi.get(self, "items")
25277
+
25278
+
25279
+ @pulumi.output_type
25280
+ class GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemResult(dict):
25281
+ def __init__(__self__, *,
25282
+ dimensions: Sequence['outputs.GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemDimensionResult'],
25283
+ metric_name: str,
25284
+ sql_collection_log_insight_count: str,
25285
+ time_ended: str,
25286
+ time_started: str):
25287
+ """
25288
+ :param Sequence['GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemDimensionArgs'] dimensions: The dimensions available for SQL collection analytics.
25289
+ :param str metric_name: Name of the aggregation.
25290
+ :param str sql_collection_log_insight_count: Total count of aggregated value.
25291
+ :param str time_ended: An optional filter to return the stats of the SQL collection logs collected before the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
25292
+ :param str time_started: An optional filter to return the stats of the SQL collection logs collected after the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
25293
+ """
25294
+ pulumi.set(__self__, "dimensions", dimensions)
25295
+ pulumi.set(__self__, "metric_name", metric_name)
25296
+ pulumi.set(__self__, "sql_collection_log_insight_count", sql_collection_log_insight_count)
25297
+ pulumi.set(__self__, "time_ended", time_ended)
25298
+ pulumi.set(__self__, "time_started", time_started)
25299
+
25300
+ @property
25301
+ @pulumi.getter
25302
+ def dimensions(self) -> Sequence['outputs.GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemDimensionResult']:
25303
+ """
25304
+ The dimensions available for SQL collection analytics.
25305
+ """
25306
+ return pulumi.get(self, "dimensions")
25307
+
25308
+ @property
25309
+ @pulumi.getter(name="metricName")
25310
+ def metric_name(self) -> str:
25311
+ """
25312
+ Name of the aggregation.
25313
+ """
25314
+ return pulumi.get(self, "metric_name")
25315
+
25316
+ @property
25317
+ @pulumi.getter(name="sqlCollectionLogInsightCount")
25318
+ def sql_collection_log_insight_count(self) -> str:
25319
+ """
25320
+ Total count of aggregated value.
25321
+ """
25322
+ return pulumi.get(self, "sql_collection_log_insight_count")
25323
+
25324
+ @property
25325
+ @pulumi.getter(name="timeEnded")
25326
+ def time_ended(self) -> str:
25327
+ """
25328
+ An optional filter to return the stats of the SQL collection logs collected before the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
25329
+ """
25330
+ return pulumi.get(self, "time_ended")
25331
+
25332
+ @property
25333
+ @pulumi.getter(name="timeStarted")
25334
+ def time_started(self) -> str:
25335
+ """
25336
+ An optional filter to return the stats of the SQL collection logs collected after the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
25337
+ """
25338
+ return pulumi.get(self, "time_started")
25339
+
25340
+
25341
+ @pulumi.output_type
25342
+ class GetSqlCollectionLogInsightsSqlCollectionLogInsightsCollectionItemDimensionResult(dict):
25343
+ def __init__(__self__, *,
25344
+ client_ip: str,
25345
+ client_os_user_name: str,
25346
+ client_program: str):
25347
+ """
25348
+ :param str client_ip: The IP addresses for the SQL collection.
25349
+ :param str client_os_user_name: The operating system user names for the SQL collection.
25350
+ :param str client_program: The allowed client programs for the SQL collection.
25351
+ """
25352
+ pulumi.set(__self__, "client_ip", client_ip)
25353
+ pulumi.set(__self__, "client_os_user_name", client_os_user_name)
25354
+ pulumi.set(__self__, "client_program", client_program)
25355
+
25356
+ @property
25357
+ @pulumi.getter(name="clientIp")
25358
+ def client_ip(self) -> str:
25359
+ """
25360
+ The IP addresses for the SQL collection.
25361
+ """
25362
+ return pulumi.get(self, "client_ip")
25363
+
25364
+ @property
25365
+ @pulumi.getter(name="clientOsUserName")
25366
+ def client_os_user_name(self) -> str:
25367
+ """
25368
+ The operating system user names for the SQL collection.
25369
+ """
25370
+ return pulumi.get(self, "client_os_user_name")
25371
+
25372
+ @property
25373
+ @pulumi.getter(name="clientProgram")
25374
+ def client_program(self) -> str:
25375
+ """
25376
+ The allowed client programs for the SQL collection.
25377
+ """
25378
+ return pulumi.get(self, "client_program")
25379
+
25380
+
25381
+ @pulumi.output_type
25382
+ class GetSqlCollectionsFilterResult(dict):
25383
+ def __init__(__self__, *,
25384
+ name: str,
25385
+ values: Sequence[str],
25386
+ regex: Optional[bool] = None):
25387
+ pulumi.set(__self__, "name", name)
25388
+ pulumi.set(__self__, "values", values)
25389
+ if regex is not None:
25390
+ pulumi.set(__self__, "regex", regex)
25391
+
25392
+ @property
25393
+ @pulumi.getter
25394
+ def name(self) -> str:
25395
+ return pulumi.get(self, "name")
25396
+
25397
+ @property
25398
+ @pulumi.getter
25399
+ def values(self) -> Sequence[str]:
25400
+ return pulumi.get(self, "values")
25401
+
25402
+ @property
25403
+ @pulumi.getter
25404
+ def regex(self) -> Optional[bool]:
25405
+ return pulumi.get(self, "regex")
25406
+
25407
+
25408
+ @pulumi.output_type
25409
+ class GetSqlCollectionsSqlCollectionCollectionResult(dict):
25410
+ def __init__(__self__, *,
25411
+ items: Sequence['outputs.GetSqlCollectionsSqlCollectionCollectionItemResult']):
25412
+ pulumi.set(__self__, "items", items)
25413
+
25414
+ @property
25415
+ @pulumi.getter
25416
+ def items(self) -> Sequence['outputs.GetSqlCollectionsSqlCollectionCollectionItemResult']:
25417
+ return pulumi.get(self, "items")
25418
+
25419
+
25420
+ @pulumi.output_type
25421
+ class GetSqlCollectionsSqlCollectionCollectionItemResult(dict):
25422
+ def __init__(__self__, *,
25423
+ compartment_id: str,
25424
+ db_user_name: str,
25425
+ defined_tags: Mapping[str, str],
25426
+ description: str,
25427
+ display_name: str,
25428
+ freeform_tags: Mapping[str, str],
25429
+ generate_sql_firewall_policy_trigger: bool,
25430
+ id: str,
25431
+ lifecycle_details: str,
25432
+ purge_logs_trigger: bool,
25433
+ refresh_log_insights_trigger: bool,
25434
+ sql_level: str,
25435
+ start_trigger: bool,
25436
+ state: str,
25437
+ status: str,
25438
+ stop_trigger: bool,
25439
+ system_tags: Mapping[str, str],
25440
+ target_id: str,
25441
+ time_created: str,
25442
+ time_last_started: str,
25443
+ time_last_stopped: str,
25444
+ time_updated: str):
25445
+ """
25446
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
25447
+ :param str db_user_name: A filter to return only items that match the specified user name.
25448
+ :param Mapping[str, str] defined_tags: Defined 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) Example: `{"Operations.CostCenter": "42"}`
25449
+ :param str description: The description of the SQL collection.
25450
+ :param str display_name: A filter to return only resources that match the specified display name.
25451
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
25452
+ :param str id: The OCID of the SQL collection.
25453
+ :param str lifecycle_details: Details about the current state of the SQL collection in Data Safe.
25454
+ :param str sql_level: Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25455
+ :param str state: The current state of the SQL collection.
25456
+ :param str status: Specifies if the status of the SqlCollection. Enabled indicates that the collecting is in progress.
25457
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
25458
+ :param str target_id: A filter to return only items related to a specific target OCID.
25459
+ :param str time_created: The time that the SQL collection was created, in the format defined by RFC3339.
25460
+ :param str time_last_started: The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
25461
+ :param str time_last_stopped: The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
25462
+ :param str time_updated: The last date and time the SQL collection was updated, in the format defined by RFC3339.
25463
+ """
25464
+ pulumi.set(__self__, "compartment_id", compartment_id)
25465
+ pulumi.set(__self__, "db_user_name", db_user_name)
25466
+ pulumi.set(__self__, "defined_tags", defined_tags)
25467
+ pulumi.set(__self__, "description", description)
25468
+ pulumi.set(__self__, "display_name", display_name)
25469
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
25470
+ pulumi.set(__self__, "generate_sql_firewall_policy_trigger", generate_sql_firewall_policy_trigger)
25471
+ pulumi.set(__self__, "id", id)
25472
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
25473
+ pulumi.set(__self__, "purge_logs_trigger", purge_logs_trigger)
25474
+ pulumi.set(__self__, "refresh_log_insights_trigger", refresh_log_insights_trigger)
25475
+ pulumi.set(__self__, "sql_level", sql_level)
25476
+ pulumi.set(__self__, "start_trigger", start_trigger)
25477
+ pulumi.set(__self__, "state", state)
25478
+ pulumi.set(__self__, "status", status)
25479
+ pulumi.set(__self__, "stop_trigger", stop_trigger)
25480
+ pulumi.set(__self__, "system_tags", system_tags)
25481
+ pulumi.set(__self__, "target_id", target_id)
25482
+ pulumi.set(__self__, "time_created", time_created)
25483
+ pulumi.set(__self__, "time_last_started", time_last_started)
25484
+ pulumi.set(__self__, "time_last_stopped", time_last_stopped)
25485
+ pulumi.set(__self__, "time_updated", time_updated)
25486
+
25487
+ @property
25488
+ @pulumi.getter(name="compartmentId")
25489
+ def compartment_id(self) -> str:
25490
+ """
25491
+ A filter to return only resources that match the specified compartment OCID.
25492
+ """
25493
+ return pulumi.get(self, "compartment_id")
25494
+
25495
+ @property
25496
+ @pulumi.getter(name="dbUserName")
25497
+ def db_user_name(self) -> str:
25498
+ """
25499
+ A filter to return only items that match the specified user name.
25500
+ """
25501
+ return pulumi.get(self, "db_user_name")
25502
+
25503
+ @property
25504
+ @pulumi.getter(name="definedTags")
25505
+ def defined_tags(self) -> Mapping[str, str]:
25506
+ """
25507
+ Defined 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) Example: `{"Operations.CostCenter": "42"}`
25508
+ """
25509
+ return pulumi.get(self, "defined_tags")
25510
+
25511
+ @property
25512
+ @pulumi.getter
25513
+ def description(self) -> str:
25514
+ """
25515
+ The description of the SQL collection.
25516
+ """
25517
+ return pulumi.get(self, "description")
25518
+
25519
+ @property
25520
+ @pulumi.getter(name="displayName")
25521
+ def display_name(self) -> str:
25522
+ """
25523
+ A filter to return only resources that match the specified display name.
25524
+ """
25525
+ return pulumi.get(self, "display_name")
25526
+
25527
+ @property
25528
+ @pulumi.getter(name="freeformTags")
25529
+ def freeform_tags(self) -> Mapping[str, str]:
25530
+ """
25531
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
25532
+ """
25533
+ return pulumi.get(self, "freeform_tags")
25534
+
25535
+ @property
25536
+ @pulumi.getter(name="generateSqlFirewallPolicyTrigger")
25537
+ def generate_sql_firewall_policy_trigger(self) -> bool:
25538
+ return pulumi.get(self, "generate_sql_firewall_policy_trigger")
25539
+
25540
+ @property
25541
+ @pulumi.getter
25542
+ def id(self) -> str:
25543
+ """
25544
+ The OCID of the SQL collection.
25545
+ """
25546
+ return pulumi.get(self, "id")
25547
+
25548
+ @property
25549
+ @pulumi.getter(name="lifecycleDetails")
25550
+ def lifecycle_details(self) -> str:
25551
+ """
25552
+ Details about the current state of the SQL collection in Data Safe.
25553
+ """
25554
+ return pulumi.get(self, "lifecycle_details")
25555
+
25556
+ @property
25557
+ @pulumi.getter(name="purgeLogsTrigger")
25558
+ def purge_logs_trigger(self) -> bool:
25559
+ return pulumi.get(self, "purge_logs_trigger")
25560
+
25561
+ @property
25562
+ @pulumi.getter(name="refreshLogInsightsTrigger")
25563
+ def refresh_log_insights_trigger(self) -> bool:
25564
+ return pulumi.get(self, "refresh_log_insights_trigger")
25565
+
25566
+ @property
25567
+ @pulumi.getter(name="sqlLevel")
25568
+ def sql_level(self) -> str:
25569
+ """
25570
+ Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25571
+ """
25572
+ return pulumi.get(self, "sql_level")
25573
+
25574
+ @property
25575
+ @pulumi.getter(name="startTrigger")
25576
+ def start_trigger(self) -> bool:
25577
+ return pulumi.get(self, "start_trigger")
25578
+
25579
+ @property
25580
+ @pulumi.getter
25581
+ def state(self) -> str:
25582
+ """
25583
+ The current state of the SQL collection.
25584
+ """
25585
+ return pulumi.get(self, "state")
25586
+
25587
+ @property
25588
+ @pulumi.getter
25589
+ def status(self) -> str:
25590
+ """
25591
+ Specifies if the status of the SqlCollection. Enabled indicates that the collecting is in progress.
25592
+ """
25593
+ return pulumi.get(self, "status")
25594
+
25595
+ @property
25596
+ @pulumi.getter(name="stopTrigger")
25597
+ def stop_trigger(self) -> bool:
25598
+ return pulumi.get(self, "stop_trigger")
25599
+
25600
+ @property
25601
+ @pulumi.getter(name="systemTags")
25602
+ def system_tags(self) -> Mapping[str, str]:
25603
+ """
25604
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
25605
+ """
25606
+ return pulumi.get(self, "system_tags")
25607
+
25608
+ @property
25609
+ @pulumi.getter(name="targetId")
25610
+ def target_id(self) -> str:
25611
+ """
25612
+ A filter to return only items related to a specific target OCID.
25613
+ """
25614
+ return pulumi.get(self, "target_id")
25615
+
25616
+ @property
25617
+ @pulumi.getter(name="timeCreated")
25618
+ def time_created(self) -> str:
25619
+ """
25620
+ The time that the SQL collection was created, in the format defined by RFC3339.
25621
+ """
25622
+ return pulumi.get(self, "time_created")
25623
+
25624
+ @property
25625
+ @pulumi.getter(name="timeLastStarted")
25626
+ def time_last_started(self) -> str:
25627
+ """
25628
+ The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
25629
+ """
25630
+ return pulumi.get(self, "time_last_started")
25631
+
25632
+ @property
25633
+ @pulumi.getter(name="timeLastStopped")
25634
+ def time_last_stopped(self) -> str:
25635
+ """
25636
+ The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
25637
+ """
25638
+ return pulumi.get(self, "time_last_stopped")
25639
+
25640
+ @property
25641
+ @pulumi.getter(name="timeUpdated")
25642
+ def time_updated(self) -> str:
25643
+ """
25644
+ The last date and time the SQL collection was updated, in the format defined by RFC3339.
25645
+ """
25646
+ return pulumi.get(self, "time_updated")
25647
+
25648
+
25649
+ @pulumi.output_type
25650
+ class GetSqlFirewallAllowedSqlAnalyticsFilterResult(dict):
25651
+ def __init__(__self__, *,
25652
+ name: str,
25653
+ values: Sequence[str],
25654
+ regex: Optional[bool] = None):
25655
+ pulumi.set(__self__, "name", name)
25656
+ pulumi.set(__self__, "values", values)
25657
+ if regex is not None:
25658
+ pulumi.set(__self__, "regex", regex)
25659
+
25660
+ @property
25661
+ @pulumi.getter
25662
+ def name(self) -> str:
25663
+ return pulumi.get(self, "name")
25664
+
25665
+ @property
25666
+ @pulumi.getter
25667
+ def values(self) -> Sequence[str]:
25668
+ return pulumi.get(self, "values")
25669
+
25670
+ @property
25671
+ @pulumi.getter
25672
+ def regex(self) -> Optional[bool]:
25673
+ return pulumi.get(self, "regex")
25674
+
25675
+
25676
+ @pulumi.output_type
25677
+ class GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionResult(dict):
25678
+ def __init__(__self__, *,
25679
+ items: Sequence['outputs.GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemResult']):
25680
+ """
25681
+ :param Sequence['GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemArgs'] items: The aggregated data point items.
25682
+ """
25683
+ pulumi.set(__self__, "items", items)
25684
+
25685
+ @property
25686
+ @pulumi.getter
25687
+ def items(self) -> Sequence['outputs.GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemResult']:
25688
+ """
25689
+ The aggregated data point items.
25690
+ """
25691
+ return pulumi.get(self, "items")
25692
+
25693
+
25694
+ @pulumi.output_type
25695
+ class GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemResult(dict):
25696
+ def __init__(__self__, *,
25697
+ dimensions: Sequence['outputs.GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemDimensionResult'],
25698
+ sql_firewall_allowed_sql_analytic_count: str):
25699
+ """
25700
+ :param Sequence['GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemDimensionArgs'] dimensions: The dimensions available for SQL Firewall allow SQL analytics.
25701
+ :param str sql_firewall_allowed_sql_analytic_count: The total count of the aggregated metric.
25702
+ """
25703
+ pulumi.set(__self__, "dimensions", dimensions)
25704
+ pulumi.set(__self__, "sql_firewall_allowed_sql_analytic_count", sql_firewall_allowed_sql_analytic_count)
25705
+
25706
+ @property
25707
+ @pulumi.getter
25708
+ def dimensions(self) -> Sequence['outputs.GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemDimensionResult']:
25709
+ """
25710
+ The dimensions available for SQL Firewall allow SQL analytics.
25711
+ """
25712
+ return pulumi.get(self, "dimensions")
25713
+
25714
+ @property
25715
+ @pulumi.getter(name="sqlFirewallAllowedSqlAnalyticCount")
25716
+ def sql_firewall_allowed_sql_analytic_count(self) -> str:
25717
+ """
25718
+ The total count of the aggregated metric.
25719
+ """
25720
+ return pulumi.get(self, "sql_firewall_allowed_sql_analytic_count")
25721
+
25722
+
25723
+ @pulumi.output_type
25724
+ class GetSqlFirewallAllowedSqlAnalyticsSqlFirewallAllowedSqlAnalyticsCollectionItemDimensionResult(dict):
25725
+ def __init__(__self__, *,
25726
+ db_user_name: str,
25727
+ sql_firewall_policy_id: str,
25728
+ sql_level: str,
25729
+ state: str):
25730
+ """
25731
+ :param str db_user_name: The database user name.
25732
+ :param str sql_firewall_policy_id: The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.
25733
+ :param str sql_level: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25734
+ :param str state: The current state of the SQL Firewall allowed SQL.
25735
+ """
25736
+ pulumi.set(__self__, "db_user_name", db_user_name)
25737
+ pulumi.set(__self__, "sql_firewall_policy_id", sql_firewall_policy_id)
25738
+ pulumi.set(__self__, "sql_level", sql_level)
25739
+ pulumi.set(__self__, "state", state)
25740
+
25741
+ @property
25742
+ @pulumi.getter(name="dbUserName")
25743
+ def db_user_name(self) -> str:
25744
+ """
25745
+ The database user name.
25746
+ """
25747
+ return pulumi.get(self, "db_user_name")
25748
+
25749
+ @property
25750
+ @pulumi.getter(name="sqlFirewallPolicyId")
25751
+ def sql_firewall_policy_id(self) -> str:
25752
+ """
25753
+ The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.
25754
+ """
25755
+ return pulumi.get(self, "sql_firewall_policy_id")
25756
+
25757
+ @property
25758
+ @pulumi.getter(name="sqlLevel")
25759
+ def sql_level(self) -> str:
25760
+ """
25761
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25762
+ """
25763
+ return pulumi.get(self, "sql_level")
25764
+
25765
+ @property
25766
+ @pulumi.getter
25767
+ def state(self) -> str:
25768
+ """
25769
+ The current state of the SQL Firewall allowed SQL.
25770
+ """
25771
+ return pulumi.get(self, "state")
25772
+
25773
+
25774
+ @pulumi.output_type
25775
+ class GetSqlFirewallAllowedSqlsFilterResult(dict):
25776
+ def __init__(__self__, *,
25777
+ name: str,
25778
+ values: Sequence[str],
25779
+ regex: Optional[bool] = None):
25780
+ pulumi.set(__self__, "name", name)
25781
+ pulumi.set(__self__, "values", values)
25782
+ if regex is not None:
25783
+ pulumi.set(__self__, "regex", regex)
25784
+
25785
+ @property
25786
+ @pulumi.getter
25787
+ def name(self) -> str:
25788
+ return pulumi.get(self, "name")
25789
+
25790
+ @property
25791
+ @pulumi.getter
25792
+ def values(self) -> Sequence[str]:
25793
+ return pulumi.get(self, "values")
25794
+
25795
+ @property
25796
+ @pulumi.getter
25797
+ def regex(self) -> Optional[bool]:
25798
+ return pulumi.get(self, "regex")
25799
+
25800
+
25801
+ @pulumi.output_type
25802
+ class GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionResult(dict):
25803
+ def __init__(__self__, *,
25804
+ items: Sequence['outputs.GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionItemResult']):
25805
+ pulumi.set(__self__, "items", items)
25806
+
25807
+ @property
25808
+ @pulumi.getter
25809
+ def items(self) -> Sequence['outputs.GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionItemResult']:
25810
+ return pulumi.get(self, "items")
25811
+
25812
+
25813
+ @pulumi.output_type
25814
+ class GetSqlFirewallAllowedSqlsSqlFirewallAllowedSqlCollectionItemResult(dict):
25815
+ def __init__(__self__, *,
25816
+ compartment_id: str,
25817
+ current_user: str,
25818
+ db_user_name: str,
25819
+ defined_tags: Mapping[str, str],
25820
+ description: str,
25821
+ display_name: str,
25822
+ freeform_tags: Mapping[str, str],
25823
+ id: str,
25824
+ sql_accessed_objects: Sequence[str],
25825
+ sql_firewall_policy_id: str,
25826
+ sql_level: str,
25827
+ sql_text: str,
25828
+ state: str,
25829
+ system_tags: Mapping[str, str],
25830
+ time_collected: str,
25831
+ time_updated: str,
25832
+ version: float):
25833
+ """
25834
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
25835
+ :param str current_user: The name of the user that SQL was executed as.
25836
+ :param str db_user_name: The database user name.
25837
+ :param Mapping[str, str] defined_tags: Defined 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) Example: `{"Operations.CostCenter": "42"}`
25838
+ :param str description: The description of the SQL Firewall allowed SQL.
25839
+ :param str display_name: The display name of the SQL Firewall allowed SQL.
25840
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
25841
+ :param str id: The OCID of the SQL Firewall allowed SQL.
25842
+ :param Sequence[str] sql_accessed_objects: The objects accessed by the SQL.
25843
+ :param str sql_firewall_policy_id: The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.
25844
+ :param str sql_level: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25845
+ :param str sql_text: The SQL text of the SQL Firewall allowed SQL.
25846
+ :param str state: The current state of the SQL Firewall allowed SQL.
25847
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
25848
+ :param str time_collected: The time the the SQL Firewall allowed SQL was collected from the target database, in the format defined by RFC3339.
25849
+ :param str time_updated: The last date and time the SQL Firewall allowed SQL was updated, in the format defined by RFC3339.
25850
+ :param float version: Version of the associated SQL Firewall policy. This identifies whether the allowed SQLs were added in the same batch or not.
25851
+ """
25852
+ pulumi.set(__self__, "compartment_id", compartment_id)
25853
+ pulumi.set(__self__, "current_user", current_user)
25854
+ pulumi.set(__self__, "db_user_name", db_user_name)
25855
+ pulumi.set(__self__, "defined_tags", defined_tags)
25856
+ pulumi.set(__self__, "description", description)
25857
+ pulumi.set(__self__, "display_name", display_name)
25858
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
25859
+ pulumi.set(__self__, "id", id)
25860
+ pulumi.set(__self__, "sql_accessed_objects", sql_accessed_objects)
25861
+ pulumi.set(__self__, "sql_firewall_policy_id", sql_firewall_policy_id)
25862
+ pulumi.set(__self__, "sql_level", sql_level)
25863
+ pulumi.set(__self__, "sql_text", sql_text)
25864
+ pulumi.set(__self__, "state", state)
25865
+ pulumi.set(__self__, "system_tags", system_tags)
25866
+ pulumi.set(__self__, "time_collected", time_collected)
25867
+ pulumi.set(__self__, "time_updated", time_updated)
25868
+ pulumi.set(__self__, "version", version)
25869
+
25870
+ @property
25871
+ @pulumi.getter(name="compartmentId")
25872
+ def compartment_id(self) -> str:
25873
+ """
25874
+ A filter to return only resources that match the specified compartment OCID.
25875
+ """
25876
+ return pulumi.get(self, "compartment_id")
25877
+
25878
+ @property
25879
+ @pulumi.getter(name="currentUser")
25880
+ def current_user(self) -> str:
25881
+ """
25882
+ The name of the user that SQL was executed as.
25883
+ """
25884
+ return pulumi.get(self, "current_user")
25885
+
25886
+ @property
25887
+ @pulumi.getter(name="dbUserName")
25888
+ def db_user_name(self) -> str:
25889
+ """
25890
+ The database user name.
25891
+ """
25892
+ return pulumi.get(self, "db_user_name")
25893
+
25894
+ @property
25895
+ @pulumi.getter(name="definedTags")
25896
+ def defined_tags(self) -> Mapping[str, str]:
25897
+ """
25898
+ Defined 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) Example: `{"Operations.CostCenter": "42"}`
25899
+ """
25900
+ return pulumi.get(self, "defined_tags")
25901
+
25902
+ @property
25903
+ @pulumi.getter
25904
+ def description(self) -> str:
25905
+ """
25906
+ The description of the SQL Firewall allowed SQL.
25907
+ """
25908
+ return pulumi.get(self, "description")
25909
+
25910
+ @property
25911
+ @pulumi.getter(name="displayName")
25912
+ def display_name(self) -> str:
25913
+ """
25914
+ The display name of the SQL Firewall allowed SQL.
25915
+ """
25916
+ return pulumi.get(self, "display_name")
25917
+
25918
+ @property
25919
+ @pulumi.getter(name="freeformTags")
25920
+ def freeform_tags(self) -> Mapping[str, str]:
25921
+ """
25922
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
25923
+ """
25924
+ return pulumi.get(self, "freeform_tags")
25925
+
25926
+ @property
25927
+ @pulumi.getter
25928
+ def id(self) -> str:
25929
+ """
25930
+ The OCID of the SQL Firewall allowed SQL.
25931
+ """
25932
+ return pulumi.get(self, "id")
25933
+
25934
+ @property
25935
+ @pulumi.getter(name="sqlAccessedObjects")
25936
+ def sql_accessed_objects(self) -> Sequence[str]:
25937
+ """
25938
+ The objects accessed by the SQL.
25939
+ """
25940
+ return pulumi.get(self, "sql_accessed_objects")
25941
+
25942
+ @property
25943
+ @pulumi.getter(name="sqlFirewallPolicyId")
25944
+ def sql_firewall_policy_id(self) -> str:
25945
+ """
25946
+ The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.
25947
+ """
25948
+ return pulumi.get(self, "sql_firewall_policy_id")
25949
+
25950
+ @property
25951
+ @pulumi.getter(name="sqlLevel")
25952
+ def sql_level(self) -> str:
25953
+ """
25954
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
25955
+ """
25956
+ return pulumi.get(self, "sql_level")
25957
+
25958
+ @property
25959
+ @pulumi.getter(name="sqlText")
25960
+ def sql_text(self) -> str:
25961
+ """
25962
+ The SQL text of the SQL Firewall allowed SQL.
25963
+ """
25964
+ return pulumi.get(self, "sql_text")
25965
+
25966
+ @property
25967
+ @pulumi.getter
25968
+ def state(self) -> str:
25969
+ """
25970
+ The current state of the SQL Firewall allowed SQL.
25971
+ """
25972
+ return pulumi.get(self, "state")
25973
+
25974
+ @property
25975
+ @pulumi.getter(name="systemTags")
25976
+ def system_tags(self) -> Mapping[str, str]:
25977
+ """
25978
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
25979
+ """
25980
+ return pulumi.get(self, "system_tags")
25981
+
25982
+ @property
25983
+ @pulumi.getter(name="timeCollected")
25984
+ def time_collected(self) -> str:
25985
+ """
25986
+ The time the the SQL Firewall allowed SQL was collected from the target database, in the format defined by RFC3339.
25987
+ """
25988
+ return pulumi.get(self, "time_collected")
25989
+
25990
+ @property
25991
+ @pulumi.getter(name="timeUpdated")
25992
+ def time_updated(self) -> str:
25993
+ """
25994
+ The last date and time the SQL Firewall allowed SQL was updated, in the format defined by RFC3339.
25995
+ """
25996
+ return pulumi.get(self, "time_updated")
25997
+
25998
+ @property
25999
+ @pulumi.getter
26000
+ def version(self) -> float:
26001
+ """
26002
+ Version of the associated SQL Firewall policy. This identifies whether the allowed SQLs were added in the same batch or not.
26003
+ """
26004
+ return pulumi.get(self, "version")
26005
+
26006
+
26007
+ @pulumi.output_type
26008
+ class GetSqlFirewallPoliciesFilterResult(dict):
26009
+ def __init__(__self__, *,
26010
+ name: str,
26011
+ values: Sequence[str],
26012
+ regex: Optional[bool] = None):
26013
+ pulumi.set(__self__, "name", name)
26014
+ pulumi.set(__self__, "values", values)
26015
+ if regex is not None:
26016
+ pulumi.set(__self__, "regex", regex)
26017
+
26018
+ @property
26019
+ @pulumi.getter
26020
+ def name(self) -> str:
26021
+ return pulumi.get(self, "name")
26022
+
26023
+ @property
26024
+ @pulumi.getter
26025
+ def values(self) -> Sequence[str]:
26026
+ return pulumi.get(self, "values")
26027
+
26028
+ @property
26029
+ @pulumi.getter
26030
+ def regex(self) -> Optional[bool]:
26031
+ return pulumi.get(self, "regex")
26032
+
26033
+
26034
+ @pulumi.output_type
26035
+ class GetSqlFirewallPoliciesSqlFirewallPolicyCollectionResult(dict):
26036
+ def __init__(__self__, *,
26037
+ items: Sequence['outputs.GetSqlFirewallPoliciesSqlFirewallPolicyCollectionItemResult']):
26038
+ pulumi.set(__self__, "items", items)
26039
+
26040
+ @property
26041
+ @pulumi.getter
26042
+ def items(self) -> Sequence['outputs.GetSqlFirewallPoliciesSqlFirewallPolicyCollectionItemResult']:
26043
+ return pulumi.get(self, "items")
26044
+
26045
+
26046
+ @pulumi.output_type
26047
+ class GetSqlFirewallPoliciesSqlFirewallPolicyCollectionItemResult(dict):
26048
+ def __init__(__self__, *,
26049
+ allowed_client_ips: Sequence[str],
26050
+ allowed_client_os_usernames: Sequence[str],
26051
+ allowed_client_programs: Sequence[str],
26052
+ compartment_id: str,
26053
+ db_user_name: str,
26054
+ defined_tags: Mapping[str, str],
26055
+ description: str,
26056
+ display_name: str,
26057
+ enforcement_scope: str,
26058
+ freeform_tags: Mapping[str, str],
26059
+ id: str,
26060
+ lifecycle_details: str,
26061
+ security_policy_id: str,
26062
+ sql_firewall_policy_id: str,
26063
+ sql_level: str,
26064
+ state: str,
26065
+ status: str,
26066
+ system_tags: Mapping[str, str],
26067
+ time_created: str,
26068
+ time_updated: str,
26069
+ violation_action: str,
26070
+ violation_audit: str):
26071
+ """
26072
+ :param Sequence[str] allowed_client_ips: The list of allowed ip addresses for the SQL Firewall policy.
26073
+ :param Sequence[str] allowed_client_os_usernames: The list of allowed operating system user names for the SQL Firewall policy.
26074
+ :param Sequence[str] allowed_client_programs: The list of allowed client programs for the SQL Firewall policy.
26075
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
26076
+ :param str db_user_name: A filter to return only items that match the specified user name.
26077
+ :param Mapping[str, str] defined_tags: Defined 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) Example: `{"Operations.CostCenter": "42"}`
26078
+ :param str description: The description of the SQL Firewall policy.
26079
+ :param str display_name: A filter to return only resources that match the specified display name.
26080
+ :param str enforcement_scope: Specifies the SQL Firewall policy enforcement option.
26081
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
26082
+ :param str id: The OCID of the SQL Firewall policy.
26083
+ :param str lifecycle_details: Details about the current state of the SQL Firewall policy in Data Safe.
26084
+ :param str security_policy_id: An optional filter to return only resources that match the specified OCID of the security policy resource.
26085
+ :param str sql_firewall_policy_id: An optional filter to return only resources that match the specified OCID of the SQL Firewall policy resource.
26086
+ :param str sql_level: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26087
+ :param str state: The current state of the SQL Firewall policy.
26088
+ :param str status: Specifies whether the SQL Firewall policy is enabled or disabled.
26089
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
26090
+ :param str time_created: The time that the SQL Firewall policy was created, in the format defined by RFC3339.
26091
+ :param str time_updated: The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
26092
+ :param str violation_action: An optional filter to return only resources that match the specified violation action.
26093
+ :param str violation_audit: Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
26094
+ """
26095
+ pulumi.set(__self__, "allowed_client_ips", allowed_client_ips)
26096
+ pulumi.set(__self__, "allowed_client_os_usernames", allowed_client_os_usernames)
26097
+ pulumi.set(__self__, "allowed_client_programs", allowed_client_programs)
26098
+ pulumi.set(__self__, "compartment_id", compartment_id)
26099
+ pulumi.set(__self__, "db_user_name", db_user_name)
26100
+ pulumi.set(__self__, "defined_tags", defined_tags)
26101
+ pulumi.set(__self__, "description", description)
26102
+ pulumi.set(__self__, "display_name", display_name)
26103
+ pulumi.set(__self__, "enforcement_scope", enforcement_scope)
26104
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
26105
+ pulumi.set(__self__, "id", id)
26106
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
26107
+ pulumi.set(__self__, "security_policy_id", security_policy_id)
26108
+ pulumi.set(__self__, "sql_firewall_policy_id", sql_firewall_policy_id)
26109
+ pulumi.set(__self__, "sql_level", sql_level)
26110
+ pulumi.set(__self__, "state", state)
26111
+ pulumi.set(__self__, "status", status)
26112
+ pulumi.set(__self__, "system_tags", system_tags)
26113
+ pulumi.set(__self__, "time_created", time_created)
26114
+ pulumi.set(__self__, "time_updated", time_updated)
26115
+ pulumi.set(__self__, "violation_action", violation_action)
26116
+ pulumi.set(__self__, "violation_audit", violation_audit)
26117
+
26118
+ @property
26119
+ @pulumi.getter(name="allowedClientIps")
26120
+ def allowed_client_ips(self) -> Sequence[str]:
26121
+ """
26122
+ The list of allowed ip addresses for the SQL Firewall policy.
26123
+ """
26124
+ return pulumi.get(self, "allowed_client_ips")
26125
+
26126
+ @property
26127
+ @pulumi.getter(name="allowedClientOsUsernames")
26128
+ def allowed_client_os_usernames(self) -> Sequence[str]:
26129
+ """
26130
+ The list of allowed operating system user names for the SQL Firewall policy.
26131
+ """
26132
+ return pulumi.get(self, "allowed_client_os_usernames")
26133
+
26134
+ @property
26135
+ @pulumi.getter(name="allowedClientPrograms")
26136
+ def allowed_client_programs(self) -> Sequence[str]:
26137
+ """
26138
+ The list of allowed client programs for the SQL Firewall policy.
26139
+ """
26140
+ return pulumi.get(self, "allowed_client_programs")
26141
+
26142
+ @property
26143
+ @pulumi.getter(name="compartmentId")
26144
+ def compartment_id(self) -> str:
26145
+ """
26146
+ A filter to return only resources that match the specified compartment OCID.
26147
+ """
26148
+ return pulumi.get(self, "compartment_id")
26149
+
26150
+ @property
26151
+ @pulumi.getter(name="dbUserName")
26152
+ def db_user_name(self) -> str:
26153
+ """
26154
+ A filter to return only items that match the specified user name.
26155
+ """
26156
+ return pulumi.get(self, "db_user_name")
26157
+
26158
+ @property
26159
+ @pulumi.getter(name="definedTags")
26160
+ def defined_tags(self) -> Mapping[str, str]:
26161
+ """
26162
+ Defined 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) Example: `{"Operations.CostCenter": "42"}`
26163
+ """
26164
+ return pulumi.get(self, "defined_tags")
26165
+
26166
+ @property
26167
+ @pulumi.getter
26168
+ def description(self) -> str:
26169
+ """
26170
+ The description of the SQL Firewall policy.
26171
+ """
26172
+ return pulumi.get(self, "description")
26173
+
26174
+ @property
26175
+ @pulumi.getter(name="displayName")
26176
+ def display_name(self) -> str:
26177
+ """
26178
+ A filter to return only resources that match the specified display name.
26179
+ """
26180
+ return pulumi.get(self, "display_name")
26181
+
26182
+ @property
26183
+ @pulumi.getter(name="enforcementScope")
26184
+ def enforcement_scope(self) -> str:
26185
+ """
26186
+ Specifies the SQL Firewall policy enforcement option.
26187
+ """
26188
+ return pulumi.get(self, "enforcement_scope")
26189
+
26190
+ @property
26191
+ @pulumi.getter(name="freeformTags")
26192
+ def freeform_tags(self) -> Mapping[str, str]:
26193
+ """
26194
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}`
26195
+ """
26196
+ return pulumi.get(self, "freeform_tags")
26197
+
26198
+ @property
26199
+ @pulumi.getter
26200
+ def id(self) -> str:
26201
+ """
26202
+ The OCID of the SQL Firewall policy.
26203
+ """
26204
+ return pulumi.get(self, "id")
26205
+
26206
+ @property
26207
+ @pulumi.getter(name="lifecycleDetails")
26208
+ def lifecycle_details(self) -> str:
26209
+ """
26210
+ Details about the current state of the SQL Firewall policy in Data Safe.
26211
+ """
26212
+ return pulumi.get(self, "lifecycle_details")
26213
+
26214
+ @property
26215
+ @pulumi.getter(name="securityPolicyId")
26216
+ def security_policy_id(self) -> str:
26217
+ """
26218
+ An optional filter to return only resources that match the specified OCID of the security policy resource.
26219
+ """
26220
+ return pulumi.get(self, "security_policy_id")
26221
+
26222
+ @property
26223
+ @pulumi.getter(name="sqlFirewallPolicyId")
26224
+ def sql_firewall_policy_id(self) -> str:
26225
+ """
26226
+ An optional filter to return only resources that match the specified OCID of the SQL Firewall policy resource.
26227
+ """
26228
+ return pulumi.get(self, "sql_firewall_policy_id")
26229
+
26230
+ @property
26231
+ @pulumi.getter(name="sqlLevel")
26232
+ def sql_level(self) -> str:
26233
+ """
26234
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26235
+ """
26236
+ return pulumi.get(self, "sql_level")
26237
+
26238
+ @property
26239
+ @pulumi.getter
26240
+ def state(self) -> str:
26241
+ """
26242
+ The current state of the SQL Firewall policy.
26243
+ """
26244
+ return pulumi.get(self, "state")
26245
+
26246
+ @property
26247
+ @pulumi.getter
26248
+ def status(self) -> str:
26249
+ """
26250
+ Specifies whether the SQL Firewall policy is enabled or disabled.
26251
+ """
26252
+ return pulumi.get(self, "status")
26253
+
26254
+ @property
26255
+ @pulumi.getter(name="systemTags")
26256
+ def system_tags(self) -> Mapping[str, str]:
26257
+ """
26258
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
26259
+ """
26260
+ return pulumi.get(self, "system_tags")
26261
+
26262
+ @property
26263
+ @pulumi.getter(name="timeCreated")
26264
+ def time_created(self) -> str:
26265
+ """
26266
+ The time that the SQL Firewall policy was created, in the format defined by RFC3339.
26267
+ """
26268
+ return pulumi.get(self, "time_created")
26269
+
26270
+ @property
26271
+ @pulumi.getter(name="timeUpdated")
26272
+ def time_updated(self) -> str:
26273
+ """
26274
+ The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.
26275
+ """
26276
+ return pulumi.get(self, "time_updated")
26277
+
26278
+ @property
26279
+ @pulumi.getter(name="violationAction")
26280
+ def violation_action(self) -> str:
26281
+ """
26282
+ An optional filter to return only resources that match the specified violation action.
26283
+ """
26284
+ return pulumi.get(self, "violation_action")
26285
+
26286
+ @property
26287
+ @pulumi.getter(name="violationAudit")
26288
+ def violation_audit(self) -> str:
26289
+ """
26290
+ Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.
26291
+ """
26292
+ return pulumi.get(self, "violation_audit")
26293
+
26294
+
26295
+ @pulumi.output_type
26296
+ class GetSqlFirewallPolicyAnalyticsFilterResult(dict):
26297
+ def __init__(__self__, *,
26298
+ name: str,
26299
+ values: Sequence[str],
26300
+ regex: Optional[bool] = None):
26301
+ pulumi.set(__self__, "name", name)
26302
+ pulumi.set(__self__, "values", values)
26303
+ if regex is not None:
26304
+ pulumi.set(__self__, "regex", regex)
26305
+
26306
+ @property
26307
+ @pulumi.getter
26308
+ def name(self) -> str:
26309
+ return pulumi.get(self, "name")
26310
+
26311
+ @property
26312
+ @pulumi.getter
26313
+ def values(self) -> Sequence[str]:
26314
+ return pulumi.get(self, "values")
26315
+
26316
+ @property
26317
+ @pulumi.getter
26318
+ def regex(self) -> Optional[bool]:
26319
+ return pulumi.get(self, "regex")
26320
+
26321
+
26322
+ @pulumi.output_type
26323
+ class GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionResult(dict):
26324
+ def __init__(__self__, *,
26325
+ items: Sequence['outputs.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemResult']):
26326
+ """
26327
+ :param Sequence['GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemArgs'] items: The aggregated data point items.
26328
+ """
26329
+ pulumi.set(__self__, "items", items)
26330
+
26331
+ @property
26332
+ @pulumi.getter
26333
+ def items(self) -> Sequence['outputs.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemResult']:
26334
+ """
26335
+ The aggregated data point items.
26336
+ """
26337
+ return pulumi.get(self, "items")
26338
+
26339
+
26340
+ @pulumi.output_type
26341
+ class GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemResult(dict):
26342
+ def __init__(__self__, *,
26343
+ dimensions: Sequence['outputs.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimensionResult'],
26344
+ sql_firewall_policy_analytic_count: str):
26345
+ """
26346
+ :param Sequence['GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimensionArgs'] dimensions: The dimensions available for SQL Firewall policy analytics.
26347
+ :param str sql_firewall_policy_analytic_count: The total count of the aggregated metric.
26348
+ """
26349
+ pulumi.set(__self__, "dimensions", dimensions)
26350
+ pulumi.set(__self__, "sql_firewall_policy_analytic_count", sql_firewall_policy_analytic_count)
26351
+
26352
+ @property
26353
+ @pulumi.getter
26354
+ def dimensions(self) -> Sequence['outputs.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimensionResult']:
26355
+ """
26356
+ The dimensions available for SQL Firewall policy analytics.
26357
+ """
26358
+ return pulumi.get(self, "dimensions")
26359
+
26360
+ @property
26361
+ @pulumi.getter(name="sqlFirewallPolicyAnalyticCount")
26362
+ def sql_firewall_policy_analytic_count(self) -> str:
26363
+ """
26364
+ The total count of the aggregated metric.
26365
+ """
26366
+ return pulumi.get(self, "sql_firewall_policy_analytic_count")
26367
+
26368
+
26369
+ @pulumi.output_type
26370
+ class GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimensionResult(dict):
26371
+ def __init__(__self__, *,
26372
+ enforcement_scope: str,
26373
+ security_policy_id: str,
26374
+ state: str,
26375
+ violation_action: str):
26376
+ """
26377
+ :param str enforcement_scope: Specifies the SQL Firewall policy enforcement option.
26378
+ :param str security_policy_id: An optional filter to return only resources that match the specified OCID of the security policy resource.
26379
+ :param str state: The current state of the SQL Firewall policy.
26380
+ :param str violation_action: Specifies the mode in which the SQL Firewall policy is enabled.
26381
+ """
26382
+ pulumi.set(__self__, "enforcement_scope", enforcement_scope)
26383
+ pulumi.set(__self__, "security_policy_id", security_policy_id)
26384
+ pulumi.set(__self__, "state", state)
26385
+ pulumi.set(__self__, "violation_action", violation_action)
26386
+
26387
+ @property
26388
+ @pulumi.getter(name="enforcementScope")
26389
+ def enforcement_scope(self) -> str:
26390
+ """
26391
+ Specifies the SQL Firewall policy enforcement option.
26392
+ """
26393
+ return pulumi.get(self, "enforcement_scope")
26394
+
26395
+ @property
26396
+ @pulumi.getter(name="securityPolicyId")
26397
+ def security_policy_id(self) -> str:
26398
+ """
26399
+ An optional filter to return only resources that match the specified OCID of the security policy resource.
26400
+ """
26401
+ return pulumi.get(self, "security_policy_id")
26402
+
26403
+ @property
26404
+ @pulumi.getter
26405
+ def state(self) -> str:
26406
+ """
26407
+ The current state of the SQL Firewall policy.
26408
+ """
26409
+ return pulumi.get(self, "state")
26410
+
26411
+ @property
26412
+ @pulumi.getter(name="violationAction")
26413
+ def violation_action(self) -> str:
26414
+ """
26415
+ Specifies the mode in which the SQL Firewall policy is enabled.
26416
+ """
26417
+ return pulumi.get(self, "violation_action")
26418
+
26419
+
26420
+ @pulumi.output_type
26421
+ class GetSqlFirewallViolationAnalyticsFilterResult(dict):
26422
+ def __init__(__self__, *,
26423
+ name: str,
26424
+ values: Sequence[str],
26425
+ regex: Optional[bool] = None):
26426
+ pulumi.set(__self__, "name", name)
26427
+ pulumi.set(__self__, "values", values)
26428
+ if regex is not None:
26429
+ pulumi.set(__self__, "regex", regex)
26430
+
26431
+ @property
26432
+ @pulumi.getter
26433
+ def name(self) -> str:
26434
+ return pulumi.get(self, "name")
26435
+
26436
+ @property
26437
+ @pulumi.getter
26438
+ def values(self) -> Sequence[str]:
26439
+ return pulumi.get(self, "values")
26440
+
26441
+ @property
26442
+ @pulumi.getter
26443
+ def regex(self) -> Optional[bool]:
26444
+ return pulumi.get(self, "regex")
26445
+
26446
+
26447
+ @pulumi.output_type
26448
+ class GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionResult(dict):
26449
+ def __init__(__self__, *,
26450
+ items: Sequence['outputs.GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemResult']):
26451
+ """
26452
+ :param Sequence['GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemArgs'] items: The aggregated data point items.
26453
+ """
26454
+ pulumi.set(__self__, "items", items)
26455
+
26456
+ @property
26457
+ @pulumi.getter
26458
+ def items(self) -> Sequence['outputs.GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemResult']:
26459
+ """
26460
+ The aggregated data point items.
26461
+ """
26462
+ return pulumi.get(self, "items")
26463
+
26464
+
26465
+ @pulumi.output_type
26466
+ class GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemResult(dict):
26467
+ def __init__(__self__, *,
26468
+ dimensions: Sequence['outputs.GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemDimensionResult'],
26469
+ display_name: str,
26470
+ metric_name: str,
26471
+ sql_firewall_violation_analytic_count: str,
26472
+ time_ended: str,
26473
+ time_started: str):
26474
+ """
26475
+ :param Sequence['GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemDimensionArgs'] dimensions: The details of the aggregation dimensions used for summarizing SQL violations.
26476
+ :param str display_name: The display name of aggregation field.
26477
+ :param str metric_name: The name of the aggregation.
26478
+ :param str sql_firewall_violation_analytic_count: Total count of aggregated value.
26479
+ :param str time_ended: An optional filter to return audit events whose creation time in the database is less than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
26480
+ :param str time_started: An optional filter to return audit events whose creation time in the database is greater than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
26481
+ """
26482
+ pulumi.set(__self__, "dimensions", dimensions)
26483
+ pulumi.set(__self__, "display_name", display_name)
26484
+ pulumi.set(__self__, "metric_name", metric_name)
26485
+ pulumi.set(__self__, "sql_firewall_violation_analytic_count", sql_firewall_violation_analytic_count)
26486
+ pulumi.set(__self__, "time_ended", time_ended)
26487
+ pulumi.set(__self__, "time_started", time_started)
26488
+
26489
+ @property
26490
+ @pulumi.getter
26491
+ def dimensions(self) -> Sequence['outputs.GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemDimensionResult']:
26492
+ """
26493
+ The details of the aggregation dimensions used for summarizing SQL violations.
26494
+ """
26495
+ return pulumi.get(self, "dimensions")
26496
+
26497
+ @property
26498
+ @pulumi.getter(name="displayName")
26499
+ def display_name(self) -> str:
26500
+ """
26501
+ The display name of aggregation field.
26502
+ """
26503
+ return pulumi.get(self, "display_name")
26504
+
26505
+ @property
26506
+ @pulumi.getter(name="metricName")
26507
+ def metric_name(self) -> str:
26508
+ """
26509
+ The name of the aggregation.
26510
+ """
26511
+ return pulumi.get(self, "metric_name")
26512
+
26513
+ @property
26514
+ @pulumi.getter(name="sqlFirewallViolationAnalyticCount")
26515
+ def sql_firewall_violation_analytic_count(self) -> str:
26516
+ """
26517
+ Total count of aggregated value.
26518
+ """
26519
+ return pulumi.get(self, "sql_firewall_violation_analytic_count")
26520
+
26521
+ @property
26522
+ @pulumi.getter(name="timeEnded")
26523
+ def time_ended(self) -> str:
26524
+ """
26525
+ An optional filter to return audit events whose creation time in the database is less than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
26526
+ """
26527
+ return pulumi.get(self, "time_ended")
26528
+
26529
+ @property
26530
+ @pulumi.getter(name="timeStarted")
26531
+ def time_started(self) -> str:
26532
+ """
26533
+ An optional filter to return audit events whose creation time in the database is greater than and equal to the date-time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
26534
+ """
26535
+ return pulumi.get(self, "time_started")
26536
+
26537
+
26538
+ @pulumi.output_type
26539
+ class GetSqlFirewallViolationAnalyticsSqlFirewallViolationAnalyticsCollectionItemDimensionResult(dict):
26540
+ def __init__(__self__, *,
26541
+ client_ips: Sequence[str],
26542
+ client_os_user_names: Sequence[str],
26543
+ client_programs: Sequence[str],
26544
+ db_user_names: Sequence[str],
26545
+ operation_times: Sequence[str],
26546
+ operations: Sequence[str],
26547
+ sql_levels: Sequence[str],
26548
+ target_ids: Sequence[str],
26549
+ target_names: Sequence[str],
26550
+ violation_actions: Sequence[str],
26551
+ violation_causes: Sequence[str]):
26552
+ """
26553
+ :param Sequence[str] client_ips: The IP address of the host from which the session was spawned.
26554
+ :param Sequence[str] client_os_user_names: The name of the operating system user for the database session.
26555
+ :param Sequence[str] client_programs: The application from which the SQL violation was generated. Examples SQL Plus or SQL Developer.
26556
+ :param Sequence[str] db_user_names: The name of the database user.
26557
+ :param Sequence[str] operation_times: The time of the SQL violation occurrence in the target database.
26558
+ :param Sequence[str] operations: The name of the action executed by the user on the target database, for example, ALTER, CREATE, DROP.
26559
+ :param Sequence[str] sql_levels: Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26560
+ :param Sequence[str] target_ids: The OCID of the target database.
26561
+ :param Sequence[str] target_names: The name of the target database.
26562
+ :param Sequence[str] violation_actions: The action taken for this SQL violation.
26563
+ :param Sequence[str] violation_causes: Indicates whether SQL or context violation.
26564
+ """
26565
+ pulumi.set(__self__, "client_ips", client_ips)
26566
+ pulumi.set(__self__, "client_os_user_names", client_os_user_names)
26567
+ pulumi.set(__self__, "client_programs", client_programs)
26568
+ pulumi.set(__self__, "db_user_names", db_user_names)
26569
+ pulumi.set(__self__, "operation_times", operation_times)
26570
+ pulumi.set(__self__, "operations", operations)
26571
+ pulumi.set(__self__, "sql_levels", sql_levels)
26572
+ pulumi.set(__self__, "target_ids", target_ids)
26573
+ pulumi.set(__self__, "target_names", target_names)
26574
+ pulumi.set(__self__, "violation_actions", violation_actions)
26575
+ pulumi.set(__self__, "violation_causes", violation_causes)
26576
+
26577
+ @property
26578
+ @pulumi.getter(name="clientIps")
26579
+ def client_ips(self) -> Sequence[str]:
26580
+ """
26581
+ The IP address of the host from which the session was spawned.
26582
+ """
26583
+ return pulumi.get(self, "client_ips")
26584
+
26585
+ @property
26586
+ @pulumi.getter(name="clientOsUserNames")
26587
+ def client_os_user_names(self) -> Sequence[str]:
26588
+ """
26589
+ The name of the operating system user for the database session.
26590
+ """
26591
+ return pulumi.get(self, "client_os_user_names")
26592
+
26593
+ @property
26594
+ @pulumi.getter(name="clientPrograms")
26595
+ def client_programs(self) -> Sequence[str]:
26596
+ """
26597
+ The application from which the SQL violation was generated. Examples SQL Plus or SQL Developer.
26598
+ """
26599
+ return pulumi.get(self, "client_programs")
26600
+
26601
+ @property
26602
+ @pulumi.getter(name="dbUserNames")
26603
+ def db_user_names(self) -> Sequence[str]:
26604
+ """
26605
+ The name of the database user.
26606
+ """
26607
+ return pulumi.get(self, "db_user_names")
26608
+
26609
+ @property
26610
+ @pulumi.getter(name="operationTimes")
26611
+ def operation_times(self) -> Sequence[str]:
26612
+ """
26613
+ The time of the SQL violation occurrence in the target database.
26614
+ """
26615
+ return pulumi.get(self, "operation_times")
26616
+
26617
+ @property
26618
+ @pulumi.getter
26619
+ def operations(self) -> Sequence[str]:
26620
+ """
26621
+ The name of the action executed by the user on the target database, for example, ALTER, CREATE, DROP.
26622
+ """
26623
+ return pulumi.get(self, "operations")
26624
+
26625
+ @property
26626
+ @pulumi.getter(name="sqlLevels")
26627
+ def sql_levels(self) -> Sequence[str]:
26628
+ """
26629
+ Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26630
+ """
26631
+ return pulumi.get(self, "sql_levels")
26632
+
26633
+ @property
26634
+ @pulumi.getter(name="targetIds")
26635
+ def target_ids(self) -> Sequence[str]:
26636
+ """
26637
+ The OCID of the target database.
26638
+ """
26639
+ return pulumi.get(self, "target_ids")
26640
+
26641
+ @property
26642
+ @pulumi.getter(name="targetNames")
26643
+ def target_names(self) -> Sequence[str]:
26644
+ """
26645
+ The name of the target database.
26646
+ """
26647
+ return pulumi.get(self, "target_names")
26648
+
26649
+ @property
26650
+ @pulumi.getter(name="violationActions")
26651
+ def violation_actions(self) -> Sequence[str]:
26652
+ """
26653
+ The action taken for this SQL violation.
26654
+ """
26655
+ return pulumi.get(self, "violation_actions")
26656
+
26657
+ @property
26658
+ @pulumi.getter(name="violationCauses")
26659
+ def violation_causes(self) -> Sequence[str]:
26660
+ """
26661
+ Indicates whether SQL or context violation.
26662
+ """
26663
+ return pulumi.get(self, "violation_causes")
26664
+
26665
+
26666
+ @pulumi.output_type
26667
+ class GetSqlFirewallViolationsFilterResult(dict):
26668
+ def __init__(__self__, *,
26669
+ name: str,
26670
+ values: Sequence[str],
26671
+ regex: Optional[bool] = None):
26672
+ pulumi.set(__self__, "name", name)
26673
+ pulumi.set(__self__, "values", values)
26674
+ if regex is not None:
26675
+ pulumi.set(__self__, "regex", regex)
26676
+
26677
+ @property
26678
+ @pulumi.getter
26679
+ def name(self) -> str:
26680
+ return pulumi.get(self, "name")
26681
+
26682
+ @property
26683
+ @pulumi.getter
26684
+ def values(self) -> Sequence[str]:
26685
+ return pulumi.get(self, "values")
26686
+
26687
+ @property
26688
+ @pulumi.getter
26689
+ def regex(self) -> Optional[bool]:
26690
+ return pulumi.get(self, "regex")
26691
+
26692
+
26693
+ @pulumi.output_type
26694
+ class GetSqlFirewallViolationsSqlFirewallViolationsCollectionResult(dict):
26695
+ def __init__(__self__, *,
26696
+ items: Sequence['outputs.GetSqlFirewallViolationsSqlFirewallViolationsCollectionItemResult']):
26697
+ """
26698
+ :param Sequence['GetSqlFirewallViolationsSqlFirewallViolationsCollectionItemArgs'] items: Array of SQL violation summary.
26699
+ """
26700
+ pulumi.set(__self__, "items", items)
26701
+
26702
+ @property
26703
+ @pulumi.getter
26704
+ def items(self) -> Sequence['outputs.GetSqlFirewallViolationsSqlFirewallViolationsCollectionItemResult']:
26705
+ """
26706
+ Array of SQL violation summary.
26707
+ """
26708
+ return pulumi.get(self, "items")
26709
+
26710
+
26711
+ @pulumi.output_type
26712
+ class GetSqlFirewallViolationsSqlFirewallViolationsCollectionItemResult(dict):
26713
+ def __init__(__self__, *,
26714
+ client_ip: str,
26715
+ client_os_user_name: str,
26716
+ client_program: str,
26717
+ compartment_id: str,
26718
+ current_db_user_name: str,
26719
+ db_user_name: str,
26720
+ id: str,
26721
+ operation: str,
26722
+ operation_time: str,
26723
+ sql_accessed_objects: str,
26724
+ sql_level: str,
26725
+ sql_text: str,
26726
+ target_id: str,
26727
+ target_name: str,
26728
+ time_collected: str,
26729
+ violation_action: str,
26730
+ violation_cause: str):
26731
+ """
26732
+ :param str client_ip: The IP address of the host machine from which the session was generated.
26733
+ :param str client_os_user_name: The name of the operating system user for the database session.
26734
+ :param str client_program: The application from which the SQL violation was generated. Examples include SQL Plus or SQL Developer.
26735
+ :param str compartment_id: A filter to return only resources that match the specified compartment OCID.
26736
+ :param str current_db_user_name: The name of the user that SQL was executed as.
26737
+ :param str db_user_name: The name of the database user.
26738
+ :param str id: The OCID of the SQL violation.
26739
+ :param str operation: The name of the action executed by the user on the target database. For example, ALTER, CREATE, DROP.
26740
+ :param str operation_time: The time of the SQL violation occurrence in the target database.
26741
+ :param str sql_accessed_objects: The objects accessed by the SQL.
26742
+ :param str sql_level: Specifies the level of SQL for this violation. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26743
+ :param str sql_text: The SQL text caught by the firewall.
26744
+ :param str target_id: The OCID of the target database.
26745
+ :param str target_name: The name of the target database.
26746
+ :param str time_collected: The timestamp when this SQL violation was collected from the target database by Data Safe.
26747
+ :param str violation_action: The action taken for this SQL violation.
26748
+ :param str violation_cause: Indicates whether SQL or context violation.
26749
+ """
26750
+ pulumi.set(__self__, "client_ip", client_ip)
26751
+ pulumi.set(__self__, "client_os_user_name", client_os_user_name)
26752
+ pulumi.set(__self__, "client_program", client_program)
26753
+ pulumi.set(__self__, "compartment_id", compartment_id)
26754
+ pulumi.set(__self__, "current_db_user_name", current_db_user_name)
26755
+ pulumi.set(__self__, "db_user_name", db_user_name)
26756
+ pulumi.set(__self__, "id", id)
26757
+ pulumi.set(__self__, "operation", operation)
26758
+ pulumi.set(__self__, "operation_time", operation_time)
26759
+ pulumi.set(__self__, "sql_accessed_objects", sql_accessed_objects)
26760
+ pulumi.set(__self__, "sql_level", sql_level)
26761
+ pulumi.set(__self__, "sql_text", sql_text)
26762
+ pulumi.set(__self__, "target_id", target_id)
26763
+ pulumi.set(__self__, "target_name", target_name)
26764
+ pulumi.set(__self__, "time_collected", time_collected)
26765
+ pulumi.set(__self__, "violation_action", violation_action)
26766
+ pulumi.set(__self__, "violation_cause", violation_cause)
26767
+
26768
+ @property
26769
+ @pulumi.getter(name="clientIp")
26770
+ def client_ip(self) -> str:
26771
+ """
26772
+ The IP address of the host machine from which the session was generated.
26773
+ """
26774
+ return pulumi.get(self, "client_ip")
26775
+
26776
+ @property
26777
+ @pulumi.getter(name="clientOsUserName")
26778
+ def client_os_user_name(self) -> str:
26779
+ """
26780
+ The name of the operating system user for the database session.
26781
+ """
26782
+ return pulumi.get(self, "client_os_user_name")
26783
+
26784
+ @property
26785
+ @pulumi.getter(name="clientProgram")
26786
+ def client_program(self) -> str:
26787
+ """
26788
+ The application from which the SQL violation was generated. Examples include SQL Plus or SQL Developer.
26789
+ """
26790
+ return pulumi.get(self, "client_program")
26791
+
26792
+ @property
26793
+ @pulumi.getter(name="compartmentId")
26794
+ def compartment_id(self) -> str:
26795
+ """
26796
+ A filter to return only resources that match the specified compartment OCID.
26797
+ """
26798
+ return pulumi.get(self, "compartment_id")
26799
+
26800
+ @property
26801
+ @pulumi.getter(name="currentDbUserName")
26802
+ def current_db_user_name(self) -> str:
26803
+ """
26804
+ The name of the user that SQL was executed as.
26805
+ """
26806
+ return pulumi.get(self, "current_db_user_name")
26807
+
26808
+ @property
26809
+ @pulumi.getter(name="dbUserName")
26810
+ def db_user_name(self) -> str:
26811
+ """
26812
+ The name of the database user.
26813
+ """
26814
+ return pulumi.get(self, "db_user_name")
26815
+
26816
+ @property
26817
+ @pulumi.getter
26818
+ def id(self) -> str:
26819
+ """
26820
+ The OCID of the SQL violation.
26821
+ """
26822
+ return pulumi.get(self, "id")
26823
+
26824
+ @property
26825
+ @pulumi.getter
26826
+ def operation(self) -> str:
26827
+ """
26828
+ The name of the action executed by the user on the target database. For example, ALTER, CREATE, DROP.
26829
+ """
26830
+ return pulumi.get(self, "operation")
26831
+
26832
+ @property
26833
+ @pulumi.getter(name="operationTime")
26834
+ def operation_time(self) -> str:
26835
+ """
26836
+ The time of the SQL violation occurrence in the target database.
26837
+ """
26838
+ return pulumi.get(self, "operation_time")
26839
+
26840
+ @property
26841
+ @pulumi.getter(name="sqlAccessedObjects")
26842
+ def sql_accessed_objects(self) -> str:
26843
+ """
26844
+ The objects accessed by the SQL.
26845
+ """
26846
+ return pulumi.get(self, "sql_accessed_objects")
26847
+
26848
+ @property
26849
+ @pulumi.getter(name="sqlLevel")
26850
+ def sql_level(self) -> str:
26851
+ """
26852
+ Specifies the level of SQL for this violation. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
26853
+ """
26854
+ return pulumi.get(self, "sql_level")
26855
+
26856
+ @property
26857
+ @pulumi.getter(name="sqlText")
26858
+ def sql_text(self) -> str:
26859
+ """
26860
+ The SQL text caught by the firewall.
26861
+ """
26862
+ return pulumi.get(self, "sql_text")
26863
+
26864
+ @property
26865
+ @pulumi.getter(name="targetId")
26866
+ def target_id(self) -> str:
26867
+ """
26868
+ The OCID of the target database.
26869
+ """
26870
+ return pulumi.get(self, "target_id")
26871
+
26872
+ @property
26873
+ @pulumi.getter(name="targetName")
26874
+ def target_name(self) -> str:
26875
+ """
26876
+ The name of the target database.
26877
+ """
26878
+ return pulumi.get(self, "target_name")
26879
+
26880
+ @property
26881
+ @pulumi.getter(name="timeCollected")
26882
+ def time_collected(self) -> str:
26883
+ """
26884
+ The timestamp when this SQL violation was collected from the target database by Data Safe.
26885
+ """
26886
+ return pulumi.get(self, "time_collected")
26887
+
26888
+ @property
26889
+ @pulumi.getter(name="violationAction")
26890
+ def violation_action(self) -> str:
26891
+ """
26892
+ The action taken for this SQL violation.
26893
+ """
26894
+ return pulumi.get(self, "violation_action")
26895
+
26896
+ @property
26897
+ @pulumi.getter(name="violationCause")
26898
+ def violation_cause(self) -> str:
26899
+ """
26900
+ Indicates whether SQL or context violation.
26901
+ """
26902
+ return pulumi.get(self, "violation_cause")
26903
+
26904
+
25099
26905
  @pulumi.output_type
25100
26906
  class GetTargetAlertPolicyAssociationsFilterResult(dict):
25101
26907
  def __init__(__self__, *,