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
@@ -201,6 +201,24 @@ __all__ = [
201
201
  'GetSensitiveDataModelsSensitiveColumnsFilterArgsDict',
202
202
  'GetSensitiveTypesFilterArgs',
203
203
  'GetSensitiveTypesFilterArgsDict',
204
+ 'GetSqlCollectionAnalyticsFilterArgs',
205
+ 'GetSqlCollectionAnalyticsFilterArgsDict',
206
+ 'GetSqlCollectionLogInsightsFilterArgs',
207
+ 'GetSqlCollectionLogInsightsFilterArgsDict',
208
+ 'GetSqlCollectionsFilterArgs',
209
+ 'GetSqlCollectionsFilterArgsDict',
210
+ 'GetSqlFirewallAllowedSqlAnalyticsFilterArgs',
211
+ 'GetSqlFirewallAllowedSqlAnalyticsFilterArgsDict',
212
+ 'GetSqlFirewallAllowedSqlsFilterArgs',
213
+ 'GetSqlFirewallAllowedSqlsFilterArgsDict',
214
+ 'GetSqlFirewallPoliciesFilterArgs',
215
+ 'GetSqlFirewallPoliciesFilterArgsDict',
216
+ 'GetSqlFirewallPolicyAnalyticsFilterArgs',
217
+ 'GetSqlFirewallPolicyAnalyticsFilterArgsDict',
218
+ 'GetSqlFirewallViolationAnalyticsFilterArgs',
219
+ 'GetSqlFirewallViolationAnalyticsFilterArgsDict',
220
+ 'GetSqlFirewallViolationsFilterArgs',
221
+ 'GetSqlFirewallViolationsFilterArgsDict',
204
222
  'GetTargetAlertPolicyAssociationsFilterArgs',
205
223
  'GetTargetAlertPolicyAssociationsFilterArgsDict',
206
224
  'GetTargetDatabasePeerTargetDatabasesFilterArgs',
@@ -9145,6 +9163,429 @@ class GetSensitiveTypesFilterArgs:
9145
9163
  pulumi.set(self, "regex", value)
9146
9164
 
9147
9165
 
9166
+ if not MYPY:
9167
+ class GetSqlCollectionAnalyticsFilterArgsDict(TypedDict):
9168
+ name: str
9169
+ values: Sequence[str]
9170
+ regex: NotRequired[bool]
9171
+ elif False:
9172
+ GetSqlCollectionAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
9173
+
9174
+ @pulumi.input_type
9175
+ class GetSqlCollectionAnalyticsFilterArgs:
9176
+ def __init__(__self__, *,
9177
+ name: str,
9178
+ values: Sequence[str],
9179
+ regex: Optional[bool] = None):
9180
+ pulumi.set(__self__, "name", name)
9181
+ pulumi.set(__self__, "values", values)
9182
+ if regex is not None:
9183
+ pulumi.set(__self__, "regex", regex)
9184
+
9185
+ @property
9186
+ @pulumi.getter
9187
+ def name(self) -> str:
9188
+ return pulumi.get(self, "name")
9189
+
9190
+ @name.setter
9191
+ def name(self, value: str):
9192
+ pulumi.set(self, "name", value)
9193
+
9194
+ @property
9195
+ @pulumi.getter
9196
+ def values(self) -> Sequence[str]:
9197
+ return pulumi.get(self, "values")
9198
+
9199
+ @values.setter
9200
+ def values(self, value: Sequence[str]):
9201
+ pulumi.set(self, "values", value)
9202
+
9203
+ @property
9204
+ @pulumi.getter
9205
+ def regex(self) -> Optional[bool]:
9206
+ return pulumi.get(self, "regex")
9207
+
9208
+ @regex.setter
9209
+ def regex(self, value: Optional[bool]):
9210
+ pulumi.set(self, "regex", value)
9211
+
9212
+
9213
+ if not MYPY:
9214
+ class GetSqlCollectionLogInsightsFilterArgsDict(TypedDict):
9215
+ name: str
9216
+ values: Sequence[str]
9217
+ regex: NotRequired[bool]
9218
+ elif False:
9219
+ GetSqlCollectionLogInsightsFilterArgsDict: TypeAlias = Mapping[str, Any]
9220
+
9221
+ @pulumi.input_type
9222
+ class GetSqlCollectionLogInsightsFilterArgs:
9223
+ def __init__(__self__, *,
9224
+ name: str,
9225
+ values: Sequence[str],
9226
+ regex: Optional[bool] = None):
9227
+ pulumi.set(__self__, "name", name)
9228
+ pulumi.set(__self__, "values", values)
9229
+ if regex is not None:
9230
+ pulumi.set(__self__, "regex", regex)
9231
+
9232
+ @property
9233
+ @pulumi.getter
9234
+ def name(self) -> str:
9235
+ return pulumi.get(self, "name")
9236
+
9237
+ @name.setter
9238
+ def name(self, value: str):
9239
+ pulumi.set(self, "name", value)
9240
+
9241
+ @property
9242
+ @pulumi.getter
9243
+ def values(self) -> Sequence[str]:
9244
+ return pulumi.get(self, "values")
9245
+
9246
+ @values.setter
9247
+ def values(self, value: Sequence[str]):
9248
+ pulumi.set(self, "values", value)
9249
+
9250
+ @property
9251
+ @pulumi.getter
9252
+ def regex(self) -> Optional[bool]:
9253
+ return pulumi.get(self, "regex")
9254
+
9255
+ @regex.setter
9256
+ def regex(self, value: Optional[bool]):
9257
+ pulumi.set(self, "regex", value)
9258
+
9259
+
9260
+ if not MYPY:
9261
+ class GetSqlCollectionsFilterArgsDict(TypedDict):
9262
+ name: str
9263
+ values: Sequence[str]
9264
+ regex: NotRequired[bool]
9265
+ elif False:
9266
+ GetSqlCollectionsFilterArgsDict: TypeAlias = Mapping[str, Any]
9267
+
9268
+ @pulumi.input_type
9269
+ class GetSqlCollectionsFilterArgs:
9270
+ def __init__(__self__, *,
9271
+ name: str,
9272
+ values: Sequence[str],
9273
+ regex: Optional[bool] = None):
9274
+ pulumi.set(__self__, "name", name)
9275
+ pulumi.set(__self__, "values", values)
9276
+ if regex is not None:
9277
+ pulumi.set(__self__, "regex", regex)
9278
+
9279
+ @property
9280
+ @pulumi.getter
9281
+ def name(self) -> str:
9282
+ return pulumi.get(self, "name")
9283
+
9284
+ @name.setter
9285
+ def name(self, value: str):
9286
+ pulumi.set(self, "name", value)
9287
+
9288
+ @property
9289
+ @pulumi.getter
9290
+ def values(self) -> Sequence[str]:
9291
+ return pulumi.get(self, "values")
9292
+
9293
+ @values.setter
9294
+ def values(self, value: Sequence[str]):
9295
+ pulumi.set(self, "values", value)
9296
+
9297
+ @property
9298
+ @pulumi.getter
9299
+ def regex(self) -> Optional[bool]:
9300
+ return pulumi.get(self, "regex")
9301
+
9302
+ @regex.setter
9303
+ def regex(self, value: Optional[bool]):
9304
+ pulumi.set(self, "regex", value)
9305
+
9306
+
9307
+ if not MYPY:
9308
+ class GetSqlFirewallAllowedSqlAnalyticsFilterArgsDict(TypedDict):
9309
+ name: str
9310
+ values: Sequence[str]
9311
+ regex: NotRequired[bool]
9312
+ elif False:
9313
+ GetSqlFirewallAllowedSqlAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
9314
+
9315
+ @pulumi.input_type
9316
+ class GetSqlFirewallAllowedSqlAnalyticsFilterArgs:
9317
+ def __init__(__self__, *,
9318
+ name: str,
9319
+ values: Sequence[str],
9320
+ regex: Optional[bool] = None):
9321
+ pulumi.set(__self__, "name", name)
9322
+ pulumi.set(__self__, "values", values)
9323
+ if regex is not None:
9324
+ pulumi.set(__self__, "regex", regex)
9325
+
9326
+ @property
9327
+ @pulumi.getter
9328
+ def name(self) -> str:
9329
+ return pulumi.get(self, "name")
9330
+
9331
+ @name.setter
9332
+ def name(self, value: str):
9333
+ pulumi.set(self, "name", value)
9334
+
9335
+ @property
9336
+ @pulumi.getter
9337
+ def values(self) -> Sequence[str]:
9338
+ return pulumi.get(self, "values")
9339
+
9340
+ @values.setter
9341
+ def values(self, value: Sequence[str]):
9342
+ pulumi.set(self, "values", value)
9343
+
9344
+ @property
9345
+ @pulumi.getter
9346
+ def regex(self) -> Optional[bool]:
9347
+ return pulumi.get(self, "regex")
9348
+
9349
+ @regex.setter
9350
+ def regex(self, value: Optional[bool]):
9351
+ pulumi.set(self, "regex", value)
9352
+
9353
+
9354
+ if not MYPY:
9355
+ class GetSqlFirewallAllowedSqlsFilterArgsDict(TypedDict):
9356
+ name: str
9357
+ values: Sequence[str]
9358
+ regex: NotRequired[bool]
9359
+ elif False:
9360
+ GetSqlFirewallAllowedSqlsFilterArgsDict: TypeAlias = Mapping[str, Any]
9361
+
9362
+ @pulumi.input_type
9363
+ class GetSqlFirewallAllowedSqlsFilterArgs:
9364
+ def __init__(__self__, *,
9365
+ name: str,
9366
+ values: Sequence[str],
9367
+ regex: Optional[bool] = None):
9368
+ pulumi.set(__self__, "name", name)
9369
+ pulumi.set(__self__, "values", values)
9370
+ if regex is not None:
9371
+ pulumi.set(__self__, "regex", regex)
9372
+
9373
+ @property
9374
+ @pulumi.getter
9375
+ def name(self) -> str:
9376
+ return pulumi.get(self, "name")
9377
+
9378
+ @name.setter
9379
+ def name(self, value: str):
9380
+ pulumi.set(self, "name", value)
9381
+
9382
+ @property
9383
+ @pulumi.getter
9384
+ def values(self) -> Sequence[str]:
9385
+ return pulumi.get(self, "values")
9386
+
9387
+ @values.setter
9388
+ def values(self, value: Sequence[str]):
9389
+ pulumi.set(self, "values", value)
9390
+
9391
+ @property
9392
+ @pulumi.getter
9393
+ def regex(self) -> Optional[bool]:
9394
+ return pulumi.get(self, "regex")
9395
+
9396
+ @regex.setter
9397
+ def regex(self, value: Optional[bool]):
9398
+ pulumi.set(self, "regex", value)
9399
+
9400
+
9401
+ if not MYPY:
9402
+ class GetSqlFirewallPoliciesFilterArgsDict(TypedDict):
9403
+ name: str
9404
+ values: Sequence[str]
9405
+ regex: NotRequired[bool]
9406
+ elif False:
9407
+ GetSqlFirewallPoliciesFilterArgsDict: TypeAlias = Mapping[str, Any]
9408
+
9409
+ @pulumi.input_type
9410
+ class GetSqlFirewallPoliciesFilterArgs:
9411
+ def __init__(__self__, *,
9412
+ name: str,
9413
+ values: Sequence[str],
9414
+ regex: Optional[bool] = None):
9415
+ pulumi.set(__self__, "name", name)
9416
+ pulumi.set(__self__, "values", values)
9417
+ if regex is not None:
9418
+ pulumi.set(__self__, "regex", regex)
9419
+
9420
+ @property
9421
+ @pulumi.getter
9422
+ def name(self) -> str:
9423
+ return pulumi.get(self, "name")
9424
+
9425
+ @name.setter
9426
+ def name(self, value: str):
9427
+ pulumi.set(self, "name", value)
9428
+
9429
+ @property
9430
+ @pulumi.getter
9431
+ def values(self) -> Sequence[str]:
9432
+ return pulumi.get(self, "values")
9433
+
9434
+ @values.setter
9435
+ def values(self, value: Sequence[str]):
9436
+ pulumi.set(self, "values", value)
9437
+
9438
+ @property
9439
+ @pulumi.getter
9440
+ def regex(self) -> Optional[bool]:
9441
+ return pulumi.get(self, "regex")
9442
+
9443
+ @regex.setter
9444
+ def regex(self, value: Optional[bool]):
9445
+ pulumi.set(self, "regex", value)
9446
+
9447
+
9448
+ if not MYPY:
9449
+ class GetSqlFirewallPolicyAnalyticsFilterArgsDict(TypedDict):
9450
+ name: str
9451
+ values: Sequence[str]
9452
+ regex: NotRequired[bool]
9453
+ elif False:
9454
+ GetSqlFirewallPolicyAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
9455
+
9456
+ @pulumi.input_type
9457
+ class GetSqlFirewallPolicyAnalyticsFilterArgs:
9458
+ def __init__(__self__, *,
9459
+ name: str,
9460
+ values: Sequence[str],
9461
+ regex: Optional[bool] = None):
9462
+ pulumi.set(__self__, "name", name)
9463
+ pulumi.set(__self__, "values", values)
9464
+ if regex is not None:
9465
+ pulumi.set(__self__, "regex", regex)
9466
+
9467
+ @property
9468
+ @pulumi.getter
9469
+ def name(self) -> str:
9470
+ return pulumi.get(self, "name")
9471
+
9472
+ @name.setter
9473
+ def name(self, value: str):
9474
+ pulumi.set(self, "name", value)
9475
+
9476
+ @property
9477
+ @pulumi.getter
9478
+ def values(self) -> Sequence[str]:
9479
+ return pulumi.get(self, "values")
9480
+
9481
+ @values.setter
9482
+ def values(self, value: Sequence[str]):
9483
+ pulumi.set(self, "values", value)
9484
+
9485
+ @property
9486
+ @pulumi.getter
9487
+ def regex(self) -> Optional[bool]:
9488
+ return pulumi.get(self, "regex")
9489
+
9490
+ @regex.setter
9491
+ def regex(self, value: Optional[bool]):
9492
+ pulumi.set(self, "regex", value)
9493
+
9494
+
9495
+ if not MYPY:
9496
+ class GetSqlFirewallViolationAnalyticsFilterArgsDict(TypedDict):
9497
+ name: str
9498
+ values: Sequence[str]
9499
+ regex: NotRequired[bool]
9500
+ elif False:
9501
+ GetSqlFirewallViolationAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
9502
+
9503
+ @pulumi.input_type
9504
+ class GetSqlFirewallViolationAnalyticsFilterArgs:
9505
+ def __init__(__self__, *,
9506
+ name: str,
9507
+ values: Sequence[str],
9508
+ regex: Optional[bool] = None):
9509
+ pulumi.set(__self__, "name", name)
9510
+ pulumi.set(__self__, "values", values)
9511
+ if regex is not None:
9512
+ pulumi.set(__self__, "regex", regex)
9513
+
9514
+ @property
9515
+ @pulumi.getter
9516
+ def name(self) -> str:
9517
+ return pulumi.get(self, "name")
9518
+
9519
+ @name.setter
9520
+ def name(self, value: str):
9521
+ pulumi.set(self, "name", value)
9522
+
9523
+ @property
9524
+ @pulumi.getter
9525
+ def values(self) -> Sequence[str]:
9526
+ return pulumi.get(self, "values")
9527
+
9528
+ @values.setter
9529
+ def values(self, value: Sequence[str]):
9530
+ pulumi.set(self, "values", value)
9531
+
9532
+ @property
9533
+ @pulumi.getter
9534
+ def regex(self) -> Optional[bool]:
9535
+ return pulumi.get(self, "regex")
9536
+
9537
+ @regex.setter
9538
+ def regex(self, value: Optional[bool]):
9539
+ pulumi.set(self, "regex", value)
9540
+
9541
+
9542
+ if not MYPY:
9543
+ class GetSqlFirewallViolationsFilterArgsDict(TypedDict):
9544
+ name: str
9545
+ values: Sequence[str]
9546
+ regex: NotRequired[bool]
9547
+ elif False:
9548
+ GetSqlFirewallViolationsFilterArgsDict: TypeAlias = Mapping[str, Any]
9549
+
9550
+ @pulumi.input_type
9551
+ class GetSqlFirewallViolationsFilterArgs:
9552
+ def __init__(__self__, *,
9553
+ name: str,
9554
+ values: Sequence[str],
9555
+ regex: Optional[bool] = None):
9556
+ pulumi.set(__self__, "name", name)
9557
+ pulumi.set(__self__, "values", values)
9558
+ if regex is not None:
9559
+ pulumi.set(__self__, "regex", regex)
9560
+
9561
+ @property
9562
+ @pulumi.getter
9563
+ def name(self) -> str:
9564
+ return pulumi.get(self, "name")
9565
+
9566
+ @name.setter
9567
+ def name(self, value: str):
9568
+ pulumi.set(self, "name", value)
9569
+
9570
+ @property
9571
+ @pulumi.getter
9572
+ def values(self) -> Sequence[str]:
9573
+ return pulumi.get(self, "values")
9574
+
9575
+ @values.setter
9576
+ def values(self, value: Sequence[str]):
9577
+ pulumi.set(self, "values", value)
9578
+
9579
+ @property
9580
+ @pulumi.getter
9581
+ def regex(self) -> Optional[bool]:
9582
+ return pulumi.get(self, "regex")
9583
+
9584
+ @regex.setter
9585
+ def regex(self, value: Optional[bool]):
9586
+ pulumi.set(self, "regex", value)
9587
+
9588
+
9148
9589
  if not MYPY:
9149
9590
  class GetTargetAlertPolicyAssociationsFilterArgsDict(TypedDict):
9150
9591
  name: str