pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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 (123) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +64 -24
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -32,6 +32,26 @@ class SqlFirewallPolicyManagementArgs:
32
32
  violation_audit: Optional[pulumi.Input[str]] = None):
33
33
  """
34
34
  The set of arguments for constructing a SqlFirewallPolicyManagement resource.
35
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
36
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
37
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
38
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
39
+ :param pulumi.Input[str] db_user_name: The database user name.
40
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
41
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
42
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
43
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
44
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
45
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
46
+ :param pulumi.Input[str] state: The current state of the SQL firewall policy.
47
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
48
+ :param pulumi.Input[str] target_id: Unique target identifier.
49
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
50
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
51
+
52
+
53
+ ** IMPORTANT **
54
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
35
55
  """
36
56
  if allowed_client_ips is not None:
37
57
  pulumi.set(__self__, "allowed_client_ips", allowed_client_ips)
@@ -69,6 +89,9 @@ class SqlFirewallPolicyManagementArgs:
69
89
  @property
70
90
  @pulumi.getter(name="allowedClientIps")
71
91
  def allowed_client_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
92
+ """
93
+ (Updatable) List of allowed ip addresses for the SQL firewall policy.
94
+ """
72
95
  return pulumi.get(self, "allowed_client_ips")
73
96
 
74
97
  @allowed_client_ips.setter
@@ -78,6 +101,9 @@ class SqlFirewallPolicyManagementArgs:
78
101
  @property
79
102
  @pulumi.getter(name="allowedClientOsUsernames")
80
103
  def allowed_client_os_usernames(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
104
+ """
105
+ (Updatable) List of allowed operating system user names for the SQL firewall policy.
106
+ """
81
107
  return pulumi.get(self, "allowed_client_os_usernames")
82
108
 
83
109
  @allowed_client_os_usernames.setter
@@ -87,6 +113,9 @@ class SqlFirewallPolicyManagementArgs:
87
113
  @property
88
114
  @pulumi.getter(name="allowedClientPrograms")
89
115
  def allowed_client_programs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
116
+ """
117
+ (Updatable) List of allowed client programs for the SQL firewall policy.
118
+ """
90
119
  return pulumi.get(self, "allowed_client_programs")
91
120
 
92
121
  @allowed_client_programs.setter
@@ -96,6 +125,9 @@ class SqlFirewallPolicyManagementArgs:
96
125
  @property
97
126
  @pulumi.getter(name="compartmentId")
98
127
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
128
+ """
129
+ (Updatable) The OCID of the compartment containing the SQL firewall policy.
130
+ """
99
131
  return pulumi.get(self, "compartment_id")
100
132
 
101
133
  @compartment_id.setter
@@ -105,6 +137,9 @@ class SqlFirewallPolicyManagementArgs:
105
137
  @property
106
138
  @pulumi.getter(name="dbUserName")
107
139
  def db_user_name(self) -> Optional[pulumi.Input[str]]:
140
+ """
141
+ The database user name.
142
+ """
108
143
  return pulumi.get(self, "db_user_name")
109
144
 
110
145
  @db_user_name.setter
@@ -114,6 +149,9 @@ class SqlFirewallPolicyManagementArgs:
114
149
  @property
115
150
  @pulumi.getter(name="definedTags")
116
151
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
152
+ """
153
+ (Updatable) 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"}`
154
+ """
117
155
  return pulumi.get(self, "defined_tags")
118
156
 
119
157
  @defined_tags.setter
@@ -123,6 +161,9 @@ class SqlFirewallPolicyManagementArgs:
123
161
  @property
124
162
  @pulumi.getter
125
163
  def description(self) -> Optional[pulumi.Input[str]]:
164
+ """
165
+ (Updatable) The description of the SQL firewall policy.
166
+ """
126
167
  return pulumi.get(self, "description")
127
168
 
128
169
  @description.setter
@@ -132,6 +173,9 @@ class SqlFirewallPolicyManagementArgs:
132
173
  @property
133
174
  @pulumi.getter(name="displayName")
134
175
  def display_name(self) -> Optional[pulumi.Input[str]]:
176
+ """
177
+ (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
178
+ """
135
179
  return pulumi.get(self, "display_name")
136
180
 
137
181
  @display_name.setter
@@ -141,6 +185,9 @@ class SqlFirewallPolicyManagementArgs:
141
185
  @property
142
186
  @pulumi.getter(name="enforcementScope")
143
187
  def enforcement_scope(self) -> Optional[pulumi.Input[str]]:
188
+ """
189
+ (Updatable) Specifies the SQL firewall policy enforcement option.
190
+ """
144
191
  return pulumi.get(self, "enforcement_scope")
145
192
 
146
193
  @enforcement_scope.setter
@@ -150,6 +197,9 @@ class SqlFirewallPolicyManagementArgs:
150
197
  @property
151
198
  @pulumi.getter(name="freeformTags")
152
199
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
200
+ """
201
+ (Updatable) 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"}`
202
+ """
153
203
  return pulumi.get(self, "freeform_tags")
154
204
 
155
205
  @freeform_tags.setter
@@ -159,6 +209,9 @@ class SqlFirewallPolicyManagementArgs:
159
209
  @property
160
210
  @pulumi.getter(name="sqlFirewallPolicyId")
161
211
  def sql_firewall_policy_id(self) -> Optional[pulumi.Input[str]]:
212
+ """
213
+ The OCID of the SQL firewall policy resource.
214
+ """
162
215
  return pulumi.get(self, "sql_firewall_policy_id")
163
216
 
164
217
  @sql_firewall_policy_id.setter
@@ -168,6 +221,9 @@ class SqlFirewallPolicyManagementArgs:
168
221
  @property
169
222
  @pulumi.getter
170
223
  def state(self) -> Optional[pulumi.Input[str]]:
224
+ """
225
+ The current state of the SQL firewall policy.
226
+ """
171
227
  return pulumi.get(self, "state")
172
228
 
173
229
  @state.setter
@@ -177,6 +233,9 @@ class SqlFirewallPolicyManagementArgs:
177
233
  @property
178
234
  @pulumi.getter
179
235
  def status(self) -> Optional[pulumi.Input[str]]:
236
+ """
237
+ (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
238
+ """
180
239
  return pulumi.get(self, "status")
181
240
 
182
241
  @status.setter
@@ -186,6 +245,9 @@ class SqlFirewallPolicyManagementArgs:
186
245
  @property
187
246
  @pulumi.getter(name="targetId")
188
247
  def target_id(self) -> Optional[pulumi.Input[str]]:
248
+ """
249
+ Unique target identifier.
250
+ """
189
251
  return pulumi.get(self, "target_id")
190
252
 
191
253
  @target_id.setter
@@ -195,6 +257,9 @@ class SqlFirewallPolicyManagementArgs:
195
257
  @property
196
258
  @pulumi.getter(name="violationAction")
197
259
  def violation_action(self) -> Optional[pulumi.Input[str]]:
260
+ """
261
+ (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
262
+ """
198
263
  return pulumi.get(self, "violation_action")
199
264
 
200
265
  @violation_action.setter
@@ -204,6 +269,13 @@ class SqlFirewallPolicyManagementArgs:
204
269
  @property
205
270
  @pulumi.getter(name="violationAudit")
206
271
  def violation_audit(self) -> Optional[pulumi.Input[str]]:
272
+ """
273
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
274
+
275
+
276
+ ** IMPORTANT **
277
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
278
+ """
207
279
  return pulumi.get(self, "violation_audit")
208
280
 
209
281
  @violation_audit.setter
@@ -238,6 +310,32 @@ class _SqlFirewallPolicyManagementState:
238
310
  violation_audit: Optional[pulumi.Input[str]] = None):
239
311
  """
240
312
  Input properties used for looking up and filtering SqlFirewallPolicyManagement resources.
313
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
314
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
315
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
316
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
317
+ :param pulumi.Input[str] db_user_name: The database user name.
318
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
319
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
320
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
321
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
322
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
323
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL firewall policy in Data Safe.
324
+ :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL firewall policy.
325
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
326
+ :param pulumi.Input[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.
327
+ :param pulumi.Input[str] state: The current state of the SQL firewall policy.
328
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
329
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
330
+ :param pulumi.Input[str] target_id: Unique target identifier.
331
+ :param pulumi.Input[str] time_created: The time that the SQL firewall policy was created, in the format defined by RFC3339.
332
+ :param pulumi.Input[str] time_updated: The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
333
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
334
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
335
+
336
+
337
+ ** IMPORTANT **
338
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
241
339
  """
242
340
  if allowed_client_ips is not None:
243
341
  pulumi.set(__self__, "allowed_client_ips", allowed_client_ips)
@@ -287,6 +385,9 @@ class _SqlFirewallPolicyManagementState:
287
385
  @property
288
386
  @pulumi.getter(name="allowedClientIps")
289
387
  def allowed_client_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
388
+ """
389
+ (Updatable) List of allowed ip addresses for the SQL firewall policy.
390
+ """
290
391
  return pulumi.get(self, "allowed_client_ips")
291
392
 
292
393
  @allowed_client_ips.setter
@@ -296,6 +397,9 @@ class _SqlFirewallPolicyManagementState:
296
397
  @property
297
398
  @pulumi.getter(name="allowedClientOsUsernames")
298
399
  def allowed_client_os_usernames(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
400
+ """
401
+ (Updatable) List of allowed operating system user names for the SQL firewall policy.
402
+ """
299
403
  return pulumi.get(self, "allowed_client_os_usernames")
300
404
 
301
405
  @allowed_client_os_usernames.setter
@@ -305,6 +409,9 @@ class _SqlFirewallPolicyManagementState:
305
409
  @property
306
410
  @pulumi.getter(name="allowedClientPrograms")
307
411
  def allowed_client_programs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
412
+ """
413
+ (Updatable) List of allowed client programs for the SQL firewall policy.
414
+ """
308
415
  return pulumi.get(self, "allowed_client_programs")
309
416
 
310
417
  @allowed_client_programs.setter
@@ -314,6 +421,9 @@ class _SqlFirewallPolicyManagementState:
314
421
  @property
315
422
  @pulumi.getter(name="compartmentId")
316
423
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
424
+ """
425
+ (Updatable) The OCID of the compartment containing the SQL firewall policy.
426
+ """
317
427
  return pulumi.get(self, "compartment_id")
318
428
 
319
429
  @compartment_id.setter
@@ -323,6 +433,9 @@ class _SqlFirewallPolicyManagementState:
323
433
  @property
324
434
  @pulumi.getter(name="dbUserName")
325
435
  def db_user_name(self) -> Optional[pulumi.Input[str]]:
436
+ """
437
+ The database user name.
438
+ """
326
439
  return pulumi.get(self, "db_user_name")
327
440
 
328
441
  @db_user_name.setter
@@ -332,6 +445,9 @@ class _SqlFirewallPolicyManagementState:
332
445
  @property
333
446
  @pulumi.getter(name="definedTags")
334
447
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
448
+ """
449
+ (Updatable) 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"}`
450
+ """
335
451
  return pulumi.get(self, "defined_tags")
336
452
 
337
453
  @defined_tags.setter
@@ -341,6 +457,9 @@ class _SqlFirewallPolicyManagementState:
341
457
  @property
342
458
  @pulumi.getter
343
459
  def description(self) -> Optional[pulumi.Input[str]]:
460
+ """
461
+ (Updatable) The description of the SQL firewall policy.
462
+ """
344
463
  return pulumi.get(self, "description")
345
464
 
346
465
  @description.setter
@@ -350,6 +469,9 @@ class _SqlFirewallPolicyManagementState:
350
469
  @property
351
470
  @pulumi.getter(name="displayName")
352
471
  def display_name(self) -> Optional[pulumi.Input[str]]:
472
+ """
473
+ (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
474
+ """
353
475
  return pulumi.get(self, "display_name")
354
476
 
355
477
  @display_name.setter
@@ -359,6 +481,9 @@ class _SqlFirewallPolicyManagementState:
359
481
  @property
360
482
  @pulumi.getter(name="enforcementScope")
361
483
  def enforcement_scope(self) -> Optional[pulumi.Input[str]]:
484
+ """
485
+ (Updatable) Specifies the SQL firewall policy enforcement option.
486
+ """
362
487
  return pulumi.get(self, "enforcement_scope")
363
488
 
364
489
  @enforcement_scope.setter
@@ -368,6 +493,9 @@ class _SqlFirewallPolicyManagementState:
368
493
  @property
369
494
  @pulumi.getter(name="freeformTags")
370
495
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
496
+ """
497
+ (Updatable) 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"}`
498
+ """
371
499
  return pulumi.get(self, "freeform_tags")
372
500
 
373
501
  @freeform_tags.setter
@@ -377,6 +505,9 @@ class _SqlFirewallPolicyManagementState:
377
505
  @property
378
506
  @pulumi.getter(name="lifecycleDetails")
379
507
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
508
+ """
509
+ Details about the current state of the SQL firewall policy in Data Safe.
510
+ """
380
511
  return pulumi.get(self, "lifecycle_details")
381
512
 
382
513
  @lifecycle_details.setter
@@ -386,6 +517,9 @@ class _SqlFirewallPolicyManagementState:
386
517
  @property
387
518
  @pulumi.getter(name="securityPolicyId")
388
519
  def security_policy_id(self) -> Optional[pulumi.Input[str]]:
520
+ """
521
+ The OCID of the security policy corresponding to the SQL firewall policy.
522
+ """
389
523
  return pulumi.get(self, "security_policy_id")
390
524
 
391
525
  @security_policy_id.setter
@@ -395,6 +529,9 @@ class _SqlFirewallPolicyManagementState:
395
529
  @property
396
530
  @pulumi.getter(name="sqlFirewallPolicyId")
397
531
  def sql_firewall_policy_id(self) -> Optional[pulumi.Input[str]]:
532
+ """
533
+ The OCID of the SQL firewall policy resource.
534
+ """
398
535
  return pulumi.get(self, "sql_firewall_policy_id")
399
536
 
400
537
  @sql_firewall_policy_id.setter
@@ -404,6 +541,9 @@ class _SqlFirewallPolicyManagementState:
404
541
  @property
405
542
  @pulumi.getter(name="sqlLevel")
406
543
  def sql_level(self) -> Optional[pulumi.Input[str]]:
544
+ """
545
+ 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.
546
+ """
407
547
  return pulumi.get(self, "sql_level")
408
548
 
409
549
  @sql_level.setter
@@ -413,6 +553,9 @@ class _SqlFirewallPolicyManagementState:
413
553
  @property
414
554
  @pulumi.getter
415
555
  def state(self) -> Optional[pulumi.Input[str]]:
556
+ """
557
+ The current state of the SQL firewall policy.
558
+ """
416
559
  return pulumi.get(self, "state")
417
560
 
418
561
  @state.setter
@@ -422,6 +565,9 @@ class _SqlFirewallPolicyManagementState:
422
565
  @property
423
566
  @pulumi.getter
424
567
  def status(self) -> Optional[pulumi.Input[str]]:
568
+ """
569
+ (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
570
+ """
425
571
  return pulumi.get(self, "status")
426
572
 
427
573
  @status.setter
@@ -431,6 +577,9 @@ class _SqlFirewallPolicyManagementState:
431
577
  @property
432
578
  @pulumi.getter(name="systemTags")
433
579
  def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
580
+ """
581
+ 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"}`
582
+ """
434
583
  return pulumi.get(self, "system_tags")
435
584
 
436
585
  @system_tags.setter
@@ -440,6 +589,9 @@ class _SqlFirewallPolicyManagementState:
440
589
  @property
441
590
  @pulumi.getter(name="targetId")
442
591
  def target_id(self) -> Optional[pulumi.Input[str]]:
592
+ """
593
+ Unique target identifier.
594
+ """
443
595
  return pulumi.get(self, "target_id")
444
596
 
445
597
  @target_id.setter
@@ -449,6 +601,9 @@ class _SqlFirewallPolicyManagementState:
449
601
  @property
450
602
  @pulumi.getter(name="timeCreated")
451
603
  def time_created(self) -> Optional[pulumi.Input[str]]:
604
+ """
605
+ The time that the SQL firewall policy was created, in the format defined by RFC3339.
606
+ """
452
607
  return pulumi.get(self, "time_created")
453
608
 
454
609
  @time_created.setter
@@ -458,6 +613,9 @@ class _SqlFirewallPolicyManagementState:
458
613
  @property
459
614
  @pulumi.getter(name="timeUpdated")
460
615
  def time_updated(self) -> Optional[pulumi.Input[str]]:
616
+ """
617
+ The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
618
+ """
461
619
  return pulumi.get(self, "time_updated")
462
620
 
463
621
  @time_updated.setter
@@ -467,6 +625,9 @@ class _SqlFirewallPolicyManagementState:
467
625
  @property
468
626
  @pulumi.getter(name="violationAction")
469
627
  def violation_action(self) -> Optional[pulumi.Input[str]]:
628
+ """
629
+ (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
630
+ """
470
631
  return pulumi.get(self, "violation_action")
471
632
 
472
633
  @violation_action.setter
@@ -476,6 +637,13 @@ class _SqlFirewallPolicyManagementState:
476
637
  @property
477
638
  @pulumi.getter(name="violationAudit")
478
639
  def violation_audit(self) -> Optional[pulumi.Input[str]]:
640
+ """
641
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
642
+
643
+
644
+ ** IMPORTANT **
645
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
646
+ """
479
647
  return pulumi.get(self, "violation_audit")
480
648
 
481
649
  @violation_audit.setter
@@ -506,9 +674,63 @@ class SqlFirewallPolicyManagement(pulumi.CustomResource):
506
674
  violation_audit: Optional[pulumi.Input[str]] = None,
507
675
  __props__=None):
508
676
  """
509
- Create a SqlFirewallPolicyManagement resource with the given unique name, props, and options.
677
+ This resource provides the Sql Firewall Policy Management resource in Oracle Cloud Infrastructure Data Safe service.
678
+
679
+ Updates the SQL firewall policy.
680
+
681
+ ## Example Usage
682
+
683
+ ```python
684
+ import pulumi
685
+ import pulumi_oci as oci
686
+
687
+ test_sql_firewall_policy_management = oci.data_safe.SqlFirewallPolicyManagement("test_sql_firewall_policy_management",
688
+ compartment_id=compartment_id,
689
+ target_id=test_target_database["id"],
690
+ db_user_name=test_user["name"],
691
+ allowed_client_ips=sql_firewall_policy_management_allowed_client_ips,
692
+ allowed_client_os_usernames=sql_firewall_policy_management_allowed_client_os_usernames,
693
+ allowed_client_programs=sql_firewall_policy_management_allowed_client_programs,
694
+ defined_tags={
695
+ "Operations.CostCenter": "42",
696
+ },
697
+ description=sql_firewall_policy_management_description,
698
+ display_name=sql_firewall_policy_management_display_name,
699
+ enforcement_scope=sql_firewall_policy_management_enforcement_scope,
700
+ freeform_tags={
701
+ "Department": "Finance",
702
+ },
703
+ status=sql_firewall_policy_management_status,
704
+ violation_action=sql_firewall_policy_management_violation_action,
705
+ violation_audit=sql_firewall_policy_management_violation_audit)
706
+ ```
707
+
708
+ ## Import
709
+
710
+ Import is not supported for this resource.
711
+
510
712
  :param str resource_name: The name of the resource.
511
713
  :param pulumi.ResourceOptions opts: Options for the resource.
714
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
715
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
716
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
717
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
718
+ :param pulumi.Input[str] db_user_name: The database user name.
719
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
720
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
721
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
722
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
723
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
724
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
725
+ :param pulumi.Input[str] state: The current state of the SQL firewall policy.
726
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
727
+ :param pulumi.Input[str] target_id: Unique target identifier.
728
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
729
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
730
+
731
+
732
+ ** IMPORTANT **
733
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
512
734
  """
513
735
  ...
514
736
  @overload
@@ -517,7 +739,41 @@ class SqlFirewallPolicyManagement(pulumi.CustomResource):
517
739
  args: Optional[SqlFirewallPolicyManagementArgs] = None,
518
740
  opts: Optional[pulumi.ResourceOptions] = None):
519
741
  """
520
- Create a SqlFirewallPolicyManagement resource with the given unique name, props, and options.
742
+ This resource provides the Sql Firewall Policy Management resource in Oracle Cloud Infrastructure Data Safe service.
743
+
744
+ Updates the SQL firewall policy.
745
+
746
+ ## Example Usage
747
+
748
+ ```python
749
+ import pulumi
750
+ import pulumi_oci as oci
751
+
752
+ test_sql_firewall_policy_management = oci.data_safe.SqlFirewallPolicyManagement("test_sql_firewall_policy_management",
753
+ compartment_id=compartment_id,
754
+ target_id=test_target_database["id"],
755
+ db_user_name=test_user["name"],
756
+ allowed_client_ips=sql_firewall_policy_management_allowed_client_ips,
757
+ allowed_client_os_usernames=sql_firewall_policy_management_allowed_client_os_usernames,
758
+ allowed_client_programs=sql_firewall_policy_management_allowed_client_programs,
759
+ defined_tags={
760
+ "Operations.CostCenter": "42",
761
+ },
762
+ description=sql_firewall_policy_management_description,
763
+ display_name=sql_firewall_policy_management_display_name,
764
+ enforcement_scope=sql_firewall_policy_management_enforcement_scope,
765
+ freeform_tags={
766
+ "Department": "Finance",
767
+ },
768
+ status=sql_firewall_policy_management_status,
769
+ violation_action=sql_firewall_policy_management_violation_action,
770
+ violation_audit=sql_firewall_policy_management_violation_audit)
771
+ ```
772
+
773
+ ## Import
774
+
775
+ Import is not supported for this resource.
776
+
521
777
  :param str resource_name: The name of the resource.
522
778
  :param SqlFirewallPolicyManagementArgs args: The arguments to use to populate this resource's properties.
523
779
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -619,6 +875,32 @@ class SqlFirewallPolicyManagement(pulumi.CustomResource):
619
875
  :param str resource_name: The unique name of the resulting resource.
620
876
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
621
877
  :param pulumi.ResourceOptions opts: Options for the resource.
878
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_ips: (Updatable) List of allowed ip addresses for the SQL firewall policy.
879
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_os_usernames: (Updatable) List of allowed operating system user names for the SQL firewall policy.
880
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_client_programs: (Updatable) List of allowed client programs for the SQL firewall policy.
881
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the SQL firewall policy.
882
+ :param pulumi.Input[str] db_user_name: The database user name.
883
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
884
+ :param pulumi.Input[str] description: (Updatable) The description of the SQL firewall policy.
885
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
886
+ :param pulumi.Input[str] enforcement_scope: (Updatable) Specifies the SQL firewall policy enforcement option.
887
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
888
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the SQL firewall policy in Data Safe.
889
+ :param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the SQL firewall policy.
890
+ :param pulumi.Input[str] sql_firewall_policy_id: The OCID of the SQL firewall policy resource.
891
+ :param pulumi.Input[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.
892
+ :param pulumi.Input[str] state: The current state of the SQL firewall policy.
893
+ :param pulumi.Input[str] status: (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
894
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
895
+ :param pulumi.Input[str] target_id: Unique target identifier.
896
+ :param pulumi.Input[str] time_created: The time that the SQL firewall policy was created, in the format defined by RFC3339.
897
+ :param pulumi.Input[str] time_updated: The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
898
+ :param pulumi.Input[str] violation_action: (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
899
+ :param pulumi.Input[str] violation_audit: (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
900
+
901
+
902
+ ** IMPORTANT **
903
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
622
904
  """
623
905
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
624
906
 
@@ -651,110 +933,180 @@ class SqlFirewallPolicyManagement(pulumi.CustomResource):
651
933
  @property
652
934
  @pulumi.getter(name="allowedClientIps")
653
935
  def allowed_client_ips(self) -> pulumi.Output[Sequence[str]]:
936
+ """
937
+ (Updatable) List of allowed ip addresses for the SQL firewall policy.
938
+ """
654
939
  return pulumi.get(self, "allowed_client_ips")
655
940
 
656
941
  @property
657
942
  @pulumi.getter(name="allowedClientOsUsernames")
658
943
  def allowed_client_os_usernames(self) -> pulumi.Output[Sequence[str]]:
944
+ """
945
+ (Updatable) List of allowed operating system user names for the SQL firewall policy.
946
+ """
659
947
  return pulumi.get(self, "allowed_client_os_usernames")
660
948
 
661
949
  @property
662
950
  @pulumi.getter(name="allowedClientPrograms")
663
951
  def allowed_client_programs(self) -> pulumi.Output[Sequence[str]]:
952
+ """
953
+ (Updatable) List of allowed client programs for the SQL firewall policy.
954
+ """
664
955
  return pulumi.get(self, "allowed_client_programs")
665
956
 
666
957
  @property
667
958
  @pulumi.getter(name="compartmentId")
668
959
  def compartment_id(self) -> pulumi.Output[str]:
960
+ """
961
+ (Updatable) The OCID of the compartment containing the SQL firewall policy.
962
+ """
669
963
  return pulumi.get(self, "compartment_id")
670
964
 
671
965
  @property
672
966
  @pulumi.getter(name="dbUserName")
673
967
  def db_user_name(self) -> pulumi.Output[str]:
968
+ """
969
+ The database user name.
970
+ """
674
971
  return pulumi.get(self, "db_user_name")
675
972
 
676
973
  @property
677
974
  @pulumi.getter(name="definedTags")
678
975
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
976
+ """
977
+ (Updatable) 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"}`
978
+ """
679
979
  return pulumi.get(self, "defined_tags")
680
980
 
681
981
  @property
682
982
  @pulumi.getter
683
983
  def description(self) -> pulumi.Output[str]:
984
+ """
985
+ (Updatable) The description of the SQL firewall policy.
986
+ """
684
987
  return pulumi.get(self, "description")
685
988
 
686
989
  @property
687
990
  @pulumi.getter(name="displayName")
688
991
  def display_name(self) -> pulumi.Output[str]:
992
+ """
993
+ (Updatable) The display name of the SQL firewall policy. The name does not have to be unique, and it is changeable.
994
+ """
689
995
  return pulumi.get(self, "display_name")
690
996
 
691
997
  @property
692
998
  @pulumi.getter(name="enforcementScope")
693
999
  def enforcement_scope(self) -> pulumi.Output[str]:
1000
+ """
1001
+ (Updatable) Specifies the SQL firewall policy enforcement option.
1002
+ """
694
1003
  return pulumi.get(self, "enforcement_scope")
695
1004
 
696
1005
  @property
697
1006
  @pulumi.getter(name="freeformTags")
698
1007
  def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
1008
+ """
1009
+ (Updatable) 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"}`
1010
+ """
699
1011
  return pulumi.get(self, "freeform_tags")
700
1012
 
701
1013
  @property
702
1014
  @pulumi.getter(name="lifecycleDetails")
703
1015
  def lifecycle_details(self) -> pulumi.Output[str]:
1016
+ """
1017
+ Details about the current state of the SQL firewall policy in Data Safe.
1018
+ """
704
1019
  return pulumi.get(self, "lifecycle_details")
705
1020
 
706
1021
  @property
707
1022
  @pulumi.getter(name="securityPolicyId")
708
1023
  def security_policy_id(self) -> pulumi.Output[str]:
1024
+ """
1025
+ The OCID of the security policy corresponding to the SQL firewall policy.
1026
+ """
709
1027
  return pulumi.get(self, "security_policy_id")
710
1028
 
711
1029
  @property
712
1030
  @pulumi.getter(name="sqlFirewallPolicyId")
713
1031
  def sql_firewall_policy_id(self) -> pulumi.Output[str]:
1032
+ """
1033
+ The OCID of the SQL firewall policy resource.
1034
+ """
714
1035
  return pulumi.get(self, "sql_firewall_policy_id")
715
1036
 
716
1037
  @property
717
1038
  @pulumi.getter(name="sqlLevel")
718
1039
  def sql_level(self) -> pulumi.Output[str]:
1040
+ """
1041
+ 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.
1042
+ """
719
1043
  return pulumi.get(self, "sql_level")
720
1044
 
721
1045
  @property
722
1046
  @pulumi.getter
723
1047
  def state(self) -> pulumi.Output[str]:
1048
+ """
1049
+ The current state of the SQL firewall policy.
1050
+ """
724
1051
  return pulumi.get(self, "state")
725
1052
 
726
1053
  @property
727
1054
  @pulumi.getter
728
1055
  def status(self) -> pulumi.Output[str]:
1056
+ """
1057
+ (Updatable) Specifies whether the SQL firewall policy is enabled or disabled.
1058
+ """
729
1059
  return pulumi.get(self, "status")
730
1060
 
731
1061
  @property
732
1062
  @pulumi.getter(name="systemTags")
733
1063
  def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
1064
+ """
1065
+ 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"}`
1066
+ """
734
1067
  return pulumi.get(self, "system_tags")
735
1068
 
736
1069
  @property
737
1070
  @pulumi.getter(name="targetId")
738
1071
  def target_id(self) -> pulumi.Output[str]:
1072
+ """
1073
+ Unique target identifier.
1074
+ """
739
1075
  return pulumi.get(self, "target_id")
740
1076
 
741
1077
  @property
742
1078
  @pulumi.getter(name="timeCreated")
743
1079
  def time_created(self) -> pulumi.Output[str]:
1080
+ """
1081
+ The time that the SQL firewall policy was created, in the format defined by RFC3339.
1082
+ """
744
1083
  return pulumi.get(self, "time_created")
745
1084
 
746
1085
  @property
747
1086
  @pulumi.getter(name="timeUpdated")
748
1087
  def time_updated(self) -> pulumi.Output[str]:
1088
+ """
1089
+ The date and time the SQL firewall policy was last updated, in the format defined by RFC3339.
1090
+ """
749
1091
  return pulumi.get(self, "time_updated")
750
1092
 
751
1093
  @property
752
1094
  @pulumi.getter(name="violationAction")
753
1095
  def violation_action(self) -> pulumi.Output[str]:
1096
+ """
1097
+ (Updatable) Specifies the SQL firewall action based on detection of SQL firewall violations.
1098
+ """
754
1099
  return pulumi.get(self, "violation_action")
755
1100
 
756
1101
  @property
757
1102
  @pulumi.getter(name="violationAudit")
758
1103
  def violation_audit(self) -> pulumi.Output[str]:
1104
+ """
1105
+ (Updatable) Specifies whether a unified audit policy should be enabled for auditing the SQL firewall policy violations.
1106
+
1107
+
1108
+ ** IMPORTANT **
1109
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1110
+ """
759
1111
  return pulumi.get(self, "violation_audit")
760
1112