pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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 (282) hide show
  1. pulumi_oci/__init__.py +299 -0
  2. pulumi_oci/capacitymanagement/__init__.py +18 -0
  3. pulumi_oci/capacitymanagement/_inputs.py +459 -0
  4. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
  5. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
  6. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
  7. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
  8. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
  9. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
  10. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
  11. pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
  12. pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
  13. pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
  14. pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
  15. pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
  16. pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
  17. pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
  18. pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
  19. pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
  20. pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
  21. pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
  22. pulumi_oci/capacitymanagement/outputs.py +3499 -1230
  23. pulumi_oci/containerengine/get_cluster.py +7 -7
  24. pulumi_oci/core/__init__.py +4 -0
  25. pulumi_oci/core/_inputs.py +477 -0
  26. pulumi_oci/core/compute_host.py +910 -0
  27. pulumi_oci/core/compute_host_group.py +648 -0
  28. pulumi_oci/core/dedicated_vm_host.py +56 -0
  29. pulumi_oci/core/get_compute_host.py +72 -1
  30. pulumi_oci/core/get_compute_host_group.py +269 -0
  31. pulumi_oci/core/get_compute_host_groups.py +148 -0
  32. pulumi_oci/core/get_compute_hosts.py +37 -1
  33. pulumi_oci/core/get_dedicated_vm_host.py +29 -1
  34. pulumi_oci/core/outputs.py +912 -24
  35. pulumi_oci/database/__init__.py +2 -0
  36. pulumi_oci/database/_inputs.py +739 -52
  37. pulumi_oci/database/autonomous_container_database.py +141 -12
  38. pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
  39. pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
  40. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
  41. pulumi_oci/database/autonomous_database_software_image.py +28 -0
  42. pulumi_oci/database/autonomous_vm_cluster.py +28 -0
  43. pulumi_oci/database/backup_destination.py +28 -0
  44. pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
  45. pulumi_oci/database/cloud_vm_cluster.py +82 -7
  46. pulumi_oci/database/database.py +28 -0
  47. pulumi_oci/database/database_software_image.py +28 -0
  48. pulumi_oci/database/database_upgrade.py +28 -0
  49. pulumi_oci/database/db_home.py +28 -0
  50. pulumi_oci/database/db_node.py +28 -0
  51. pulumi_oci/database/db_system.py +28 -0
  52. pulumi_oci/database/exadata_infrastructure.py +28 -0
  53. pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
  54. pulumi_oci/database/external_container_database.py +28 -0
  55. pulumi_oci/database/external_database_connector.py +28 -0
  56. pulumi_oci/database/external_non_container_database.py +28 -0
  57. pulumi_oci/database/external_pluggable_database.py +28 -0
  58. pulumi_oci/database/get_autonomous_container_database.py +52 -2
  59. pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
  60. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
  61. pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
  62. pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
  63. pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
  64. pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
  65. pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
  66. pulumi_oci/database/get_backup_destination.py +15 -1
  67. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
  68. pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
  69. pulumi_oci/database/get_database.py +15 -1
  70. pulumi_oci/database/get_database_software_image.py +15 -1
  71. pulumi_oci/database/get_db_home.py +15 -1
  72. pulumi_oci/database/get_db_node.py +15 -1
  73. pulumi_oci/database/get_db_nodes.py +2 -2
  74. pulumi_oci/database/get_db_server.py +15 -1
  75. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  76. pulumi_oci/database/get_external_container_database.py +15 -1
  77. pulumi_oci/database/get_external_database_connector.py +15 -1
  78. pulumi_oci/database/get_external_non_container_database.py +15 -1
  79. pulumi_oci/database/get_external_pluggable_database.py +15 -1
  80. pulumi_oci/database/get_key_store.py +15 -1
  81. pulumi_oci/database/get_maintenance_run.py +15 -1
  82. pulumi_oci/database/get_oneoff_patch.py +15 -1
  83. pulumi_oci/database/get_pluggable_database.py +15 -1
  84. pulumi_oci/database/get_vm_cluster.py +15 -1
  85. pulumi_oci/database/get_vm_cluster_network.py +15 -1
  86. pulumi_oci/database/key_store.py +28 -0
  87. pulumi_oci/database/maintenance_run.py +28 -0
  88. pulumi_oci/database/oneoff_patch.py +28 -0
  89. pulumi_oci/database/outputs.py +1624 -54
  90. pulumi_oci/database/pluggable_database.py +28 -0
  91. pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
  92. pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
  93. pulumi_oci/database/vm_cluster.py +28 -0
  94. pulumi_oci/database/vm_cluster_network.py +28 -0
  95. pulumi_oci/databasemanagement/__init__.py +7 -0
  96. pulumi_oci/databasemanagement/_inputs.py +196 -0
  97. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
  98. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
  99. pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
  100. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
  101. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
  102. pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
  105. pulumi_oci/databasemanagement/outputs.py +1330 -19
  106. pulumi_oci/databasemigration/_inputs.py +94 -0
  107. pulumi_oci/databasemigration/get_migration.py +15 -1
  108. pulumi_oci/databasemigration/get_migrations.py +15 -1
  109. pulumi_oci/databasemigration/job.py +28 -0
  110. pulumi_oci/databasemigration/migration.py +52 -3
  111. pulumi_oci/databasemigration/outputs.py +73 -0
  112. pulumi_oci/dataflow/_inputs.py +20 -0
  113. pulumi_oci/dataflow/outputs.py +36 -0
  114. pulumi_oci/fleetappsmanagement/__init__.py +48 -0
  115. pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
  116. pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
  117. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
  118. pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
  119. pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
  120. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  121. pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
  122. pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
  123. pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
  124. pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
  125. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
  126. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
  127. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
  128. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
  129. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
  130. pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
  131. pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
  132. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
  133. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
  134. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
  135. pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
  136. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
  137. pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
  138. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
  139. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
  140. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  141. pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
  142. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
  143. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
  144. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
  145. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
  146. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
  147. pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
  148. pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
  149. pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
  150. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
  151. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
  152. pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
  153. pulumi_oci/fleetappsmanagement/get_property.py +1 -1
  154. pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
  155. pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
  156. pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
  157. pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
  158. pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
  159. pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
  160. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
  161. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
  162. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
  163. pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
  164. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
  165. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
  166. pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
  167. pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
  168. pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
  169. pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
  170. pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
  171. pulumi_oci/fleetappsmanagement/patch.py +980 -0
  172. pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
  173. pulumi_oci/fleetappsmanagement/property.py +28 -27
  174. pulumi_oci/fleetappsmanagement/provision.py +1195 -0
  175. pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
  176. pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
  177. pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
  178. pulumi_oci/fleetappsmanagement/task_record.py +786 -0
  179. pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
  180. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
  181. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
  182. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
  183. pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
  184. pulumi_oci/goldengate/_inputs.py +449 -3
  185. pulumi_oci/goldengate/connection.py +200 -56
  186. pulumi_oci/goldengate/get_connection.py +59 -28
  187. pulumi_oci/goldengate/get_connections.py +0 -3
  188. pulumi_oci/goldengate/outputs.py +886 -22
  189. pulumi_oci/loadbalancer/_inputs.py +24 -6
  190. pulumi_oci/loadbalancer/backend.py +35 -7
  191. pulumi_oci/loadbalancer/backend_set.py +35 -7
  192. pulumi_oci/loadbalancer/listener.py +7 -7
  193. pulumi_oci/loadbalancer/load_balancer.py +81 -0
  194. pulumi_oci/loadbalancer/outputs.py +29 -10
  195. pulumi_oci/loganalytics/__init__.py +3 -0
  196. pulumi_oci/loganalytics/_inputs.py +123 -0
  197. pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
  198. pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
  199. pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
  200. pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
  201. pulumi_oci/loganalytics/outputs.py +258 -0
  202. pulumi_oci/mysql/_inputs.py +274 -0
  203. pulumi_oci/mysql/get_mysql_backup.py +29 -1
  204. pulumi_oci/mysql/get_mysql_backups.py +23 -1
  205. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  206. pulumi_oci/mysql/get_replica.py +15 -1
  207. pulumi_oci/mysql/mysql_backup.py +98 -2
  208. pulumi_oci/mysql/mysql_db_system.py +57 -0
  209. pulumi_oci/mysql/outputs.py +594 -0
  210. pulumi_oci/mysql/replica.py +28 -0
  211. pulumi_oci/nosql/__init__.py +2 -0
  212. pulumi_oci/nosql/_inputs.py +129 -3
  213. pulumi_oci/nosql/configuration.py +383 -0
  214. pulumi_oci/nosql/get_configuration.py +162 -0
  215. pulumi_oci/nosql/index.py +7 -7
  216. pulumi_oci/nosql/outputs.py +164 -2
  217. pulumi_oci/nosql/table_replica.py +9 -9
  218. pulumi_oci/oci/__init__.py +56 -0
  219. pulumi_oci/oci/_inputs.py +1615 -0
  220. pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
  221. pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
  222. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
  223. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
  224. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
  225. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
  226. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
  227. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
  228. pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
  229. pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
  230. pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
  231. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
  232. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
  233. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
  234. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
  235. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
  236. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
  237. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
  238. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
  239. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
  240. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
  241. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
  242. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
  243. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
  244. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
  245. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
  246. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
  247. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
  248. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
  249. pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
  250. pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
  251. pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
  252. pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
  253. pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
  254. pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
  255. pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
  256. pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
  257. pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
  258. pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
  259. pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
  260. pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
  261. pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
  262. pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
  263. pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
  264. pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
  265. pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
  266. pulumi_oci/oci/outputs.py +5617 -0
  267. pulumi_oci/pulumi-plugin.json +1 -1
  268. pulumi_oci/redis/__init__.py +8 -0
  269. pulumi_oci/redis/_inputs.py +179 -0
  270. pulumi_oci/redis/get_oci_cache_user.py +283 -0
  271. pulumi_oci/redis/get_oci_cache_users.py +192 -0
  272. pulumi_oci/redis/oci_cache_user.py +695 -0
  273. pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
  274. pulumi_oci/redis/outputs.py +330 -0
  275. pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
  276. pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
  277. pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
  278. pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
  279. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -20,10 +20,14 @@ __all__ = [
20
20
  'ConnectionAdditionalAttributeArgsDict',
21
21
  'ConnectionBootstrapServerArgs',
22
22
  'ConnectionBootstrapServerArgsDict',
23
+ 'ConnectionCatalogArgs',
24
+ 'ConnectionCatalogArgsDict',
23
25
  'ConnectionIngressIpArgs',
24
26
  'ConnectionIngressIpArgsDict',
25
27
  'ConnectionLockArgs',
26
28
  'ConnectionLockArgsDict',
29
+ 'ConnectionStorageArgs',
30
+ 'ConnectionStorageArgsDict',
27
31
  'DeploymentBackupLockArgs',
28
32
  'DeploymentBackupLockArgsDict',
29
33
  'DeploymentBackupScheduleArgs',
@@ -232,6 +236,197 @@ class ConnectionBootstrapServerArgs:
232
236
  pulumi.set(self, "private_ip", value)
233
237
 
234
238
 
239
+ if not MYPY:
240
+ class ConnectionCatalogArgsDict(TypedDict):
241
+ catalog_type: pulumi.Input[builtins.str]
242
+ """
243
+ (Updatable) The catalog type.
244
+ """
245
+ branch: NotRequired[pulumi.Input[builtins.str]]
246
+ """
247
+ (Updatable) The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
248
+ """
249
+ client_id: NotRequired[pulumi.Input[builtins.str]]
250
+ """
251
+ (Updatable) The OAuth client ID used for authentication.
252
+ """
253
+ client_secret_secret_id: NotRequired[pulumi.Input[builtins.str]]
254
+ """
255
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password Oracle GoldenGate uses to connect to Snowflake platform.
256
+ """
257
+ glue_id: NotRequired[pulumi.Input[builtins.str]]
258
+ """
259
+ (Updatable) The AWS Glue Catalog ID where Iceberg tables are registered.
260
+ """
261
+ name: NotRequired[pulumi.Input[builtins.str]]
262
+ """
263
+ (Updatable) The catalog name within Polaris where Iceberg tables are registered.
264
+ """
265
+ principal_role: NotRequired[pulumi.Input[builtins.str]]
266
+ """
267
+ (Updatable) The Snowflake role used to access Polaris.
268
+ """
269
+ properties_secret_id: NotRequired[pulumi.Input[builtins.str]]
270
+ """
271
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
272
+ """
273
+ uri: NotRequired[pulumi.Input[builtins.str]]
274
+ """
275
+ (Updatable) The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
276
+ """
277
+ elif False:
278
+ ConnectionCatalogArgsDict: TypeAlias = Mapping[str, Any]
279
+
280
+ @pulumi.input_type
281
+ class ConnectionCatalogArgs:
282
+ def __init__(__self__, *,
283
+ catalog_type: pulumi.Input[builtins.str],
284
+ branch: Optional[pulumi.Input[builtins.str]] = None,
285
+ client_id: Optional[pulumi.Input[builtins.str]] = None,
286
+ client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
287
+ glue_id: Optional[pulumi.Input[builtins.str]] = None,
288
+ name: Optional[pulumi.Input[builtins.str]] = None,
289
+ principal_role: Optional[pulumi.Input[builtins.str]] = None,
290
+ properties_secret_id: Optional[pulumi.Input[builtins.str]] = None,
291
+ uri: Optional[pulumi.Input[builtins.str]] = None):
292
+ """
293
+ :param pulumi.Input[builtins.str] catalog_type: (Updatable) The catalog type.
294
+ :param pulumi.Input[builtins.str] branch: (Updatable) The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
295
+ :param pulumi.Input[builtins.str] client_id: (Updatable) The OAuth client ID used for authentication.
296
+ :param pulumi.Input[builtins.str] client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password Oracle GoldenGate uses to connect to Snowflake platform.
297
+ :param pulumi.Input[builtins.str] glue_id: (Updatable) The AWS Glue Catalog ID where Iceberg tables are registered.
298
+ :param pulumi.Input[builtins.str] name: (Updatable) The catalog name within Polaris where Iceberg tables are registered.
299
+ :param pulumi.Input[builtins.str] principal_role: (Updatable) The Snowflake role used to access Polaris.
300
+ :param pulumi.Input[builtins.str] properties_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
301
+ :param pulumi.Input[builtins.str] uri: (Updatable) The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
302
+ """
303
+ pulumi.set(__self__, "catalog_type", catalog_type)
304
+ if branch is not None:
305
+ pulumi.set(__self__, "branch", branch)
306
+ if client_id is not None:
307
+ pulumi.set(__self__, "client_id", client_id)
308
+ if client_secret_secret_id is not None:
309
+ pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
310
+ if glue_id is not None:
311
+ pulumi.set(__self__, "glue_id", glue_id)
312
+ if name is not None:
313
+ pulumi.set(__self__, "name", name)
314
+ if principal_role is not None:
315
+ pulumi.set(__self__, "principal_role", principal_role)
316
+ if properties_secret_id is not None:
317
+ pulumi.set(__self__, "properties_secret_id", properties_secret_id)
318
+ if uri is not None:
319
+ pulumi.set(__self__, "uri", uri)
320
+
321
+ @property
322
+ @pulumi.getter(name="catalogType")
323
+ def catalog_type(self) -> pulumi.Input[builtins.str]:
324
+ """
325
+ (Updatable) The catalog type.
326
+ """
327
+ return pulumi.get(self, "catalog_type")
328
+
329
+ @catalog_type.setter
330
+ def catalog_type(self, value: pulumi.Input[builtins.str]):
331
+ pulumi.set(self, "catalog_type", value)
332
+
333
+ @property
334
+ @pulumi.getter
335
+ def branch(self) -> Optional[pulumi.Input[builtins.str]]:
336
+ """
337
+ (Updatable) The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
338
+ """
339
+ return pulumi.get(self, "branch")
340
+
341
+ @branch.setter
342
+ def branch(self, value: Optional[pulumi.Input[builtins.str]]):
343
+ pulumi.set(self, "branch", value)
344
+
345
+ @property
346
+ @pulumi.getter(name="clientId")
347
+ def client_id(self) -> Optional[pulumi.Input[builtins.str]]:
348
+ """
349
+ (Updatable) The OAuth client ID used for authentication.
350
+ """
351
+ return pulumi.get(self, "client_id")
352
+
353
+ @client_id.setter
354
+ def client_id(self, value: Optional[pulumi.Input[builtins.str]]):
355
+ pulumi.set(self, "client_id", value)
356
+
357
+ @property
358
+ @pulumi.getter(name="clientSecretSecretId")
359
+ def client_secret_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
360
+ """
361
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password Oracle GoldenGate uses to connect to Snowflake platform.
362
+ """
363
+ return pulumi.get(self, "client_secret_secret_id")
364
+
365
+ @client_secret_secret_id.setter
366
+ def client_secret_secret_id(self, value: Optional[pulumi.Input[builtins.str]]):
367
+ pulumi.set(self, "client_secret_secret_id", value)
368
+
369
+ @property
370
+ @pulumi.getter(name="glueId")
371
+ def glue_id(self) -> Optional[pulumi.Input[builtins.str]]:
372
+ """
373
+ (Updatable) The AWS Glue Catalog ID where Iceberg tables are registered.
374
+ """
375
+ return pulumi.get(self, "glue_id")
376
+
377
+ @glue_id.setter
378
+ def glue_id(self, value: Optional[pulumi.Input[builtins.str]]):
379
+ pulumi.set(self, "glue_id", value)
380
+
381
+ @property
382
+ @pulumi.getter
383
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
384
+ """
385
+ (Updatable) The catalog name within Polaris where Iceberg tables are registered.
386
+ """
387
+ return pulumi.get(self, "name")
388
+
389
+ @name.setter
390
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
391
+ pulumi.set(self, "name", value)
392
+
393
+ @property
394
+ @pulumi.getter(name="principalRole")
395
+ def principal_role(self) -> Optional[pulumi.Input[builtins.str]]:
396
+ """
397
+ (Updatable) The Snowflake role used to access Polaris.
398
+ """
399
+ return pulumi.get(self, "principal_role")
400
+
401
+ @principal_role.setter
402
+ def principal_role(self, value: Optional[pulumi.Input[builtins.str]]):
403
+ pulumi.set(self, "principal_role", value)
404
+
405
+ @property
406
+ @pulumi.getter(name="propertiesSecretId")
407
+ def properties_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
408
+ """
409
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
410
+ """
411
+ return pulumi.get(self, "properties_secret_id")
412
+
413
+ @properties_secret_id.setter
414
+ def properties_secret_id(self, value: Optional[pulumi.Input[builtins.str]]):
415
+ pulumi.set(self, "properties_secret_id", value)
416
+
417
+ @property
418
+ @pulumi.getter
419
+ def uri(self) -> Optional[pulumi.Input[builtins.str]]:
420
+ """
421
+ (Updatable) The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
422
+ """
423
+ return pulumi.get(self, "uri")
424
+
425
+ @uri.setter
426
+ def uri(self, value: Optional[pulumi.Input[builtins.str]]):
427
+ pulumi.set(self, "uri", value)
428
+
429
+
235
430
  if not MYPY:
236
431
  class ConnectionIngressIpArgsDict(TypedDict):
237
432
  ingress_ip: NotRequired[pulumi.Input[builtins.str]]
@@ -355,6 +550,257 @@ class ConnectionLockArgs:
355
550
  pulumi.set(self, "time_created", value)
356
551
 
357
552
 
553
+ if not MYPY:
554
+ class ConnectionStorageArgsDict(TypedDict):
555
+ storage_type: pulumi.Input[builtins.str]
556
+ """
557
+ (Updatable) The storage type used in the Iceberg connection.
558
+ """
559
+ access_key_id: NotRequired[pulumi.Input[builtins.str]]
560
+ """
561
+ (Updatable) Access key ID to access the Amazon S3 bucket.
562
+ """
563
+ account_key_secret_id: NotRequired[pulumi.Input[builtins.str]]
564
+ """
565
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
566
+ """
567
+ account_name: NotRequired[pulumi.Input[builtins.str]]
568
+ """
569
+ (Updatable) Sets the Azure storage account name.
570
+ """
571
+ bucket: NotRequired[pulumi.Input[builtins.str]]
572
+ """
573
+ (Updatable) Google Cloud Storage bucket where Iceberg stores metadata and data files.
574
+ """
575
+ container: NotRequired[pulumi.Input[builtins.str]]
576
+ """
577
+ (Updatable) The Azure Blob Storage container where Iceberg tables are stored.
578
+ """
579
+ endpoint: NotRequired[pulumi.Input[builtins.str]]
580
+ """
581
+ (Updatable) The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
582
+ """
583
+ project_id: NotRequired[pulumi.Input[builtins.str]]
584
+ """
585
+ (Updatable) The Google Cloud Project where the bucket exists.
586
+ """
587
+ region: NotRequired[pulumi.Input[builtins.str]]
588
+ """
589
+ (Updatable) The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
590
+ """
591
+ scheme_type: NotRequired[pulumi.Input[builtins.str]]
592
+ """
593
+ (Updatable) The scheme of the storage.
594
+ """
595
+ secret_access_key_secret_id: NotRequired[pulumi.Input[builtins.str]]
596
+ """
597
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
598
+ """
599
+ service_account_key_file_secret_id: NotRequired[pulumi.Input[builtins.str]]
600
+ """
601
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage.
602
+ """
603
+ elif False:
604
+ ConnectionStorageArgsDict: TypeAlias = Mapping[str, Any]
605
+
606
+ @pulumi.input_type
607
+ class ConnectionStorageArgs:
608
+ def __init__(__self__, *,
609
+ storage_type: pulumi.Input[builtins.str],
610
+ access_key_id: Optional[pulumi.Input[builtins.str]] = None,
611
+ account_key_secret_id: Optional[pulumi.Input[builtins.str]] = None,
612
+ account_name: Optional[pulumi.Input[builtins.str]] = None,
613
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
614
+ container: Optional[pulumi.Input[builtins.str]] = None,
615
+ endpoint: Optional[pulumi.Input[builtins.str]] = None,
616
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
617
+ region: Optional[pulumi.Input[builtins.str]] = None,
618
+ scheme_type: Optional[pulumi.Input[builtins.str]] = None,
619
+ secret_access_key_secret_id: Optional[pulumi.Input[builtins.str]] = None,
620
+ service_account_key_file_secret_id: Optional[pulumi.Input[builtins.str]] = None):
621
+ """
622
+ :param pulumi.Input[builtins.str] storage_type: (Updatable) The storage type used in the Iceberg connection.
623
+ :param pulumi.Input[builtins.str] access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket.
624
+ :param pulumi.Input[builtins.str] account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
625
+ :param pulumi.Input[builtins.str] account_name: (Updatable) Sets the Azure storage account name.
626
+ :param pulumi.Input[builtins.str] bucket: (Updatable) Google Cloud Storage bucket where Iceberg stores metadata and data files.
627
+ :param pulumi.Input[builtins.str] container: (Updatable) The Azure Blob Storage container where Iceberg tables are stored.
628
+ :param pulumi.Input[builtins.str] endpoint: (Updatable) The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
629
+ :param pulumi.Input[builtins.str] project_id: (Updatable) The Google Cloud Project where the bucket exists.
630
+ :param pulumi.Input[builtins.str] region: (Updatable) The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
631
+ :param pulumi.Input[builtins.str] scheme_type: (Updatable) The scheme of the storage.
632
+ :param pulumi.Input[builtins.str] secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
633
+ :param pulumi.Input[builtins.str] service_account_key_file_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage.
634
+ """
635
+ pulumi.set(__self__, "storage_type", storage_type)
636
+ if access_key_id is not None:
637
+ pulumi.set(__self__, "access_key_id", access_key_id)
638
+ if account_key_secret_id is not None:
639
+ pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
640
+ if account_name is not None:
641
+ pulumi.set(__self__, "account_name", account_name)
642
+ if bucket is not None:
643
+ pulumi.set(__self__, "bucket", bucket)
644
+ if container is not None:
645
+ pulumi.set(__self__, "container", container)
646
+ if endpoint is not None:
647
+ pulumi.set(__self__, "endpoint", endpoint)
648
+ if project_id is not None:
649
+ pulumi.set(__self__, "project_id", project_id)
650
+ if region is not None:
651
+ pulumi.set(__self__, "region", region)
652
+ if scheme_type is not None:
653
+ pulumi.set(__self__, "scheme_type", scheme_type)
654
+ if secret_access_key_secret_id is not None:
655
+ pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
656
+ if service_account_key_file_secret_id is not None:
657
+ pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
658
+
659
+ @property
660
+ @pulumi.getter(name="storageType")
661
+ def storage_type(self) -> pulumi.Input[builtins.str]:
662
+ """
663
+ (Updatable) The storage type used in the Iceberg connection.
664
+ """
665
+ return pulumi.get(self, "storage_type")
666
+
667
+ @storage_type.setter
668
+ def storage_type(self, value: pulumi.Input[builtins.str]):
669
+ pulumi.set(self, "storage_type", value)
670
+
671
+ @property
672
+ @pulumi.getter(name="accessKeyId")
673
+ def access_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
674
+ """
675
+ (Updatable) Access key ID to access the Amazon S3 bucket.
676
+ """
677
+ return pulumi.get(self, "access_key_id")
678
+
679
+ @access_key_id.setter
680
+ def access_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
681
+ pulumi.set(self, "access_key_id", value)
682
+
683
+ @property
684
+ @pulumi.getter(name="accountKeySecretId")
685
+ def account_key_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
686
+ """
687
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
688
+ """
689
+ return pulumi.get(self, "account_key_secret_id")
690
+
691
+ @account_key_secret_id.setter
692
+ def account_key_secret_id(self, value: Optional[pulumi.Input[builtins.str]]):
693
+ pulumi.set(self, "account_key_secret_id", value)
694
+
695
+ @property
696
+ @pulumi.getter(name="accountName")
697
+ def account_name(self) -> Optional[pulumi.Input[builtins.str]]:
698
+ """
699
+ (Updatable) Sets the Azure storage account name.
700
+ """
701
+ return pulumi.get(self, "account_name")
702
+
703
+ @account_name.setter
704
+ def account_name(self, value: Optional[pulumi.Input[builtins.str]]):
705
+ pulumi.set(self, "account_name", value)
706
+
707
+ @property
708
+ @pulumi.getter
709
+ def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
710
+ """
711
+ (Updatable) Google Cloud Storage bucket where Iceberg stores metadata and data files.
712
+ """
713
+ return pulumi.get(self, "bucket")
714
+
715
+ @bucket.setter
716
+ def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
717
+ pulumi.set(self, "bucket", value)
718
+
719
+ @property
720
+ @pulumi.getter
721
+ def container(self) -> Optional[pulumi.Input[builtins.str]]:
722
+ """
723
+ (Updatable) The Azure Blob Storage container where Iceberg tables are stored.
724
+ """
725
+ return pulumi.get(self, "container")
726
+
727
+ @container.setter
728
+ def container(self, value: Optional[pulumi.Input[builtins.str]]):
729
+ pulumi.set(self, "container", value)
730
+
731
+ @property
732
+ @pulumi.getter
733
+ def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
734
+ """
735
+ (Updatable) The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
736
+ """
737
+ return pulumi.get(self, "endpoint")
738
+
739
+ @endpoint.setter
740
+ def endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
741
+ pulumi.set(self, "endpoint", value)
742
+
743
+ @property
744
+ @pulumi.getter(name="projectId")
745
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
746
+ """
747
+ (Updatable) The Google Cloud Project where the bucket exists.
748
+ """
749
+ return pulumi.get(self, "project_id")
750
+
751
+ @project_id.setter
752
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
753
+ pulumi.set(self, "project_id", value)
754
+
755
+ @property
756
+ @pulumi.getter
757
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
758
+ """
759
+ (Updatable) The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
760
+ """
761
+ return pulumi.get(self, "region")
762
+
763
+ @region.setter
764
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
765
+ pulumi.set(self, "region", value)
766
+
767
+ @property
768
+ @pulumi.getter(name="schemeType")
769
+ def scheme_type(self) -> Optional[pulumi.Input[builtins.str]]:
770
+ """
771
+ (Updatable) The scheme of the storage.
772
+ """
773
+ return pulumi.get(self, "scheme_type")
774
+
775
+ @scheme_type.setter
776
+ def scheme_type(self, value: Optional[pulumi.Input[builtins.str]]):
777
+ pulumi.set(self, "scheme_type", value)
778
+
779
+ @property
780
+ @pulumi.getter(name="secretAccessKeySecretId")
781
+ def secret_access_key_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
782
+ """
783
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
784
+ """
785
+ return pulumi.get(self, "secret_access_key_secret_id")
786
+
787
+ @secret_access_key_secret_id.setter
788
+ def secret_access_key_secret_id(self, value: Optional[pulumi.Input[builtins.str]]):
789
+ pulumi.set(self, "secret_access_key_secret_id", value)
790
+
791
+ @property
792
+ @pulumi.getter(name="serviceAccountKeyFileSecretId")
793
+ def service_account_key_file_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
794
+ """
795
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage.
796
+ """
797
+ return pulumi.get(self, "service_account_key_file_secret_id")
798
+
799
+ @service_account_key_file_secret_id.setter
800
+ def service_account_key_file_secret_id(self, value: Optional[pulumi.Input[builtins.str]]):
801
+ pulumi.set(self, "service_account_key_file_secret_id", value)
802
+
803
+
358
804
  if not MYPY:
359
805
  class DeploymentBackupLockArgsDict(TypedDict):
360
806
  type: pulumi.Input[builtins.str]
@@ -1923,7 +2369,7 @@ if not MYPY:
1923
2369
  class GetConnectionsFilterArgsDict(TypedDict):
1924
2370
  name: builtins.str
1925
2371
  """
1926
- The name of the property entry.
2372
+ The catalog name within Polaris where Iceberg tables are registered.
1927
2373
  """
1928
2374
  values: Sequence[builtins.str]
1929
2375
  regex: NotRequired[builtins.bool]
@@ -1937,7 +2383,7 @@ class GetConnectionsFilterArgs:
1937
2383
  values: Sequence[builtins.str],
1938
2384
  regex: Optional[builtins.bool] = None):
1939
2385
  """
1940
- :param builtins.str name: The name of the property entry.
2386
+ :param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
1941
2387
  """
1942
2388
  pulumi.set(__self__, "name", name)
1943
2389
  pulumi.set(__self__, "values", values)
@@ -1948,7 +2394,7 @@ class GetConnectionsFilterArgs:
1948
2394
  @pulumi.getter
1949
2395
  def name(self) -> builtins.str:
1950
2396
  """
1951
- The name of the property entry.
2397
+ The catalog name within Polaris where Iceberg tables are registered.
1952
2398
  """
1953
2399
  return pulumi.get(self, "name")
1954
2400