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.
- pulumi_oci/__init__.py +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,7 @@ class ConnectionArgs:
|
|
35
35
|
authentication_type: Optional[pulumi.Input[builtins.str]] = None,
|
36
36
|
azure_tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
37
37
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
|
38
|
+
catalog: Optional[pulumi.Input['ConnectionCatalogArgs']] = None,
|
38
39
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
39
40
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
40
41
|
client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -106,6 +107,7 @@ class ConnectionArgs:
|
|
106
107
|
ssl_key_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
107
108
|
ssl_mode: Optional[pulumi.Input[builtins.str]] = None,
|
108
109
|
ssl_server_certificate: Optional[pulumi.Input[builtins.str]] = None,
|
110
|
+
storage: Optional[pulumi.Input['ConnectionStorageArgs']] = None,
|
109
111
|
storage_credential_name: Optional[pulumi.Input[builtins.str]] = None,
|
110
112
|
stream_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
111
113
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -142,6 +144,7 @@ class ConnectionArgs:
|
|
142
144
|
:param pulumi.Input[builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
143
145
|
:param pulumi.Input[builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
144
146
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
|
147
|
+
:param pulumi.Input['ConnectionCatalogArgs'] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
145
148
|
:param pulumi.Input[builtins.str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
146
149
|
:param pulumi.Input[builtins.str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
147
150
|
: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 where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
@@ -149,7 +152,7 @@ class ConnectionArgs:
|
|
149
152
|
:param pulumi.Input[builtins.str] connection_string: (Updatable) Connection string. AZURE_SYNAPSE_ANALYTICS e.g.: 'jdbc:sqlserver://<synapse-workspace>.sql.azuresynapse.net:1433;database=<db-name>;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.sql.azuresynapse.net;loginTimeout=300;', MONGODB e.g.: 'mongodb://mongodb0.example.com:27017/recordsrecords'.
|
150
153
|
:param pulumi.Input[builtins.str] connection_url: (Updatable) Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
|
151
154
|
:param pulumi.Input[builtins.str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
152
|
-
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
155
|
+
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
153
156
|
:param pulumi.Input[builtins.str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
154
157
|
:param pulumi.Input[builtins.str] database_name: (Updatable) The name of the database.
|
155
158
|
:param pulumi.Input[builtins.str] db_system_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced.
|
@@ -157,7 +160,7 @@ class ConnectionArgs:
|
|
157
160
|
:param pulumi.Input[builtins.str] deployment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
158
161
|
:param pulumi.Input[builtins.str] description: (Updatable) Metadata about this specific object.
|
159
162
|
:param pulumi.Input[builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
160
|
-
:param pulumi.Input[builtins.str] endpoint: (Updatable)
|
163
|
+
:param pulumi.Input[builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
161
164
|
:param pulumi.Input[builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
162
165
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
163
166
|
:param pulumi.Input[builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -197,31 +200,32 @@ class ConnectionArgs:
|
|
197
200
|
:param pulumi.Input[builtins.str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
198
201
|
:param pulumi.Input[builtins.str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
199
202
|
:param pulumi.Input[builtins.str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
200
|
-
: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
|
203
|
+
: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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
201
204
|
:param pulumi.Input[builtins.str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
202
205
|
:param pulumi.Input[builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
203
206
|
:param pulumi.Input[builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
204
207
|
:param pulumi.Input[builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
205
|
-
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
206
|
-
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
208
|
+
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
209
|
+
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
207
210
|
:param pulumi.Input[builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
|
208
211
|
:param pulumi.Input[builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
|
209
212
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
|
210
213
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
211
|
-
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
214
|
+
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
212
215
|
:param pulumi.Input[builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
|
213
216
|
:param pulumi.Input[builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
|
214
217
|
:param pulumi.Input[builtins.str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
215
218
|
:param pulumi.Input[builtins.str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
216
219
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
217
220
|
:param pulumi.Input[builtins.str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
218
|
-
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
221
|
+
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
222
|
+
:param pulumi.Input['ConnectionStorageArgs'] storage: (Updatable) The information about a new storage of given type used in an Iceberg connection.
|
219
223
|
:param pulumi.Input[builtins.str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
220
224
|
:param pulumi.Input[builtins.str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
221
225
|
:param pulumi.Input[builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
222
226
|
:param pulumi.Input[builtins.str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
223
227
|
:param pulumi.Input[builtins.str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
224
|
-
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
228
|
+
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
225
229
|
:param pulumi.Input[builtins.str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
226
230
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
227
231
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
|
@@ -265,6 +269,8 @@ class ConnectionArgs:
|
|
265
269
|
pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
|
266
270
|
if bootstrap_servers is not None:
|
267
271
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
272
|
+
if catalog is not None:
|
273
|
+
pulumi.set(__self__, "catalog", catalog)
|
268
274
|
if client_id is not None:
|
269
275
|
pulumi.set(__self__, "client_id", client_id)
|
270
276
|
if client_secret is not None:
|
@@ -407,6 +413,8 @@ class ConnectionArgs:
|
|
407
413
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
408
414
|
if ssl_server_certificate is not None:
|
409
415
|
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
416
|
+
if storage is not None:
|
417
|
+
pulumi.set(__self__, "storage", storage)
|
410
418
|
if storage_credential_name is not None:
|
411
419
|
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
412
420
|
if stream_pool_id is not None:
|
@@ -606,6 +614,18 @@ class ConnectionArgs:
|
|
606
614
|
def bootstrap_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]]):
|
607
615
|
pulumi.set(self, "bootstrap_servers", value)
|
608
616
|
|
617
|
+
@property
|
618
|
+
@pulumi.getter
|
619
|
+
def catalog(self) -> Optional[pulumi.Input['ConnectionCatalogArgs']]:
|
620
|
+
"""
|
621
|
+
(Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
622
|
+
"""
|
623
|
+
return pulumi.get(self, "catalog")
|
624
|
+
|
625
|
+
@catalog.setter
|
626
|
+
def catalog(self, value: Optional[pulumi.Input['ConnectionCatalogArgs']]):
|
627
|
+
pulumi.set(self, "catalog", value)
|
628
|
+
|
609
629
|
@property
|
610
630
|
@pulumi.getter(name="clientId")
|
611
631
|
def client_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -694,7 +714,7 @@ class ConnectionArgs:
|
|
694
714
|
@pulumi.getter(name="coreSiteXml")
|
695
715
|
def core_site_xml(self) -> Optional[pulumi.Input[builtins.str]]:
|
696
716
|
"""
|
697
|
-
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
717
|
+
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
698
718
|
"""
|
699
719
|
return pulumi.get(self, "core_site_xml")
|
700
720
|
|
@@ -790,7 +810,7 @@ class ConnectionArgs:
|
|
790
810
|
@pulumi.getter
|
791
811
|
def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
|
792
812
|
"""
|
793
|
-
(Updatable)
|
813
|
+
(Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
794
814
|
"""
|
795
815
|
return pulumi.get(self, "endpoint")
|
796
816
|
|
@@ -1246,7 +1266,7 @@ class ConnectionArgs:
|
|
1246
1266
|
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
1247
1267
|
def service_account_key_file_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
1248
1268
|
"""
|
1249
|
-
(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
|
1269
|
+
(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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
1250
1270
|
"""
|
1251
1271
|
return pulumi.get(self, "service_account_key_file_secret_id")
|
1252
1272
|
|
@@ -1306,7 +1326,7 @@ class ConnectionArgs:
|
|
1306
1326
|
@pulumi.getter(name="sslCa")
|
1307
1327
|
def ssl_ca(self) -> Optional[pulumi.Input[builtins.str]]:
|
1308
1328
|
"""
|
1309
|
-
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
1329
|
+
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1310
1330
|
"""
|
1311
1331
|
return pulumi.get(self, "ssl_ca")
|
1312
1332
|
|
@@ -1318,7 +1338,7 @@ class ConnectionArgs:
|
|
1318
1338
|
@pulumi.getter(name="sslCert")
|
1319
1339
|
def ssl_cert(self) -> Optional[pulumi.Input[builtins.str]]:
|
1320
1340
|
"""
|
1321
|
-
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
1341
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1322
1342
|
"""
|
1323
1343
|
return pulumi.get(self, "ssl_cert")
|
1324
1344
|
|
@@ -1378,7 +1398,7 @@ class ConnectionArgs:
|
|
1378
1398
|
@pulumi.getter(name="sslCrl")
|
1379
1399
|
def ssl_crl(self) -> Optional[pulumi.Input[builtins.str]]:
|
1380
1400
|
"""
|
1381
|
-
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
1401
|
+
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1382
1402
|
"""
|
1383
1403
|
return pulumi.get(self, "ssl_crl")
|
1384
1404
|
|
@@ -1451,7 +1471,7 @@ class ConnectionArgs:
|
|
1451
1471
|
@pulumi.getter(name="sslServerCertificate")
|
1452
1472
|
def ssl_server_certificate(self) -> Optional[pulumi.Input[builtins.str]]:
|
1453
1473
|
"""
|
1454
|
-
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
1474
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1455
1475
|
"""
|
1456
1476
|
return pulumi.get(self, "ssl_server_certificate")
|
1457
1477
|
|
@@ -1459,6 +1479,18 @@ class ConnectionArgs:
|
|
1459
1479
|
def ssl_server_certificate(self, value: Optional[pulumi.Input[builtins.str]]):
|
1460
1480
|
pulumi.set(self, "ssl_server_certificate", value)
|
1461
1481
|
|
1482
|
+
@property
|
1483
|
+
@pulumi.getter
|
1484
|
+
def storage(self) -> Optional[pulumi.Input['ConnectionStorageArgs']]:
|
1485
|
+
"""
|
1486
|
+
(Updatable) The information about a new storage of given type used in an Iceberg connection.
|
1487
|
+
"""
|
1488
|
+
return pulumi.get(self, "storage")
|
1489
|
+
|
1490
|
+
@storage.setter
|
1491
|
+
def storage(self, value: Optional[pulumi.Input['ConnectionStorageArgs']]):
|
1492
|
+
pulumi.set(self, "storage", value)
|
1493
|
+
|
1462
1494
|
@property
|
1463
1495
|
@pulumi.getter(name="storageCredentialName")
|
1464
1496
|
def storage_credential_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -1523,7 +1555,7 @@ class ConnectionArgs:
|
|
1523
1555
|
@pulumi.getter(name="tlsCaFile")
|
1524
1556
|
def tls_ca_file(self) -> Optional[pulumi.Input[builtins.str]]:
|
1525
1557
|
"""
|
1526
|
-
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
1558
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1527
1559
|
"""
|
1528
1560
|
return pulumi.get(self, "tls_ca_file")
|
1529
1561
|
|
@@ -1729,6 +1761,7 @@ class _ConnectionState:
|
|
1729
1761
|
authentication_type: Optional[pulumi.Input[builtins.str]] = None,
|
1730
1762
|
azure_tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
1731
1763
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]] = None,
|
1764
|
+
catalog: Optional[pulumi.Input['ConnectionCatalogArgs']] = None,
|
1732
1765
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
1733
1766
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
1734
1767
|
client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1806,6 +1839,7 @@ class _ConnectionState:
|
|
1806
1839
|
ssl_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1807
1840
|
ssl_server_certificate: Optional[pulumi.Input[builtins.str]] = None,
|
1808
1841
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
1842
|
+
storage: Optional[pulumi.Input['ConnectionStorageArgs']] = None,
|
1809
1843
|
storage_credential_name: Optional[pulumi.Input[builtins.str]] = None,
|
1810
1844
|
stream_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
1811
1845
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1842,6 +1876,7 @@ class _ConnectionState:
|
|
1842
1876
|
:param pulumi.Input[builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
1843
1877
|
:param pulumi.Input[builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
1844
1878
|
:param pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
|
1879
|
+
:param pulumi.Input['ConnectionCatalogArgs'] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
1845
1880
|
:param pulumi.Input[builtins.str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
1846
1881
|
:param pulumi.Input[builtins.str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
1847
1882
|
: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 where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
@@ -1851,7 +1886,7 @@ class _ConnectionState:
|
|
1851
1886
|
:param pulumi.Input[builtins.str] connection_type: (Updatable) The connection type.
|
1852
1887
|
:param pulumi.Input[builtins.str] connection_url: (Updatable) Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
|
1853
1888
|
:param pulumi.Input[builtins.str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
1854
|
-
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
1889
|
+
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1855
1890
|
:param pulumi.Input[builtins.str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
1856
1891
|
:param pulumi.Input[builtins.str] database_name: (Updatable) The name of the database.
|
1857
1892
|
:param pulumi.Input[builtins.str] db_system_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced.
|
@@ -1860,7 +1895,7 @@ class _ConnectionState:
|
|
1860
1895
|
:param pulumi.Input[builtins.str] description: (Updatable) Metadata about this specific object.
|
1861
1896
|
:param pulumi.Input[builtins.str] display_name: (Updatable) An object's Display Name.
|
1862
1897
|
:param pulumi.Input[builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
1863
|
-
:param pulumi.Input[builtins.str] endpoint: (Updatable)
|
1898
|
+
:param pulumi.Input[builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
1864
1899
|
:param pulumi.Input[builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
1865
1900
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1866
1901
|
:param pulumi.Input[builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -1902,26 +1937,27 @@ class _ConnectionState:
|
|
1902
1937
|
:param pulumi.Input[builtins.str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
1903
1938
|
:param pulumi.Input[builtins.str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
1904
1939
|
:param pulumi.Input[builtins.str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
1905
|
-
: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
|
1940
|
+
: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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
1906
1941
|
:param pulumi.Input[builtins.str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
1907
1942
|
:param pulumi.Input[builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
1908
1943
|
:param pulumi.Input[builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
1909
1944
|
:param pulumi.Input[builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
1910
|
-
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
1911
|
-
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
1945
|
+
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1946
|
+
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1912
1947
|
:param pulumi.Input[builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
|
1913
1948
|
:param pulumi.Input[builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
|
1914
1949
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
|
1915
1950
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
1916
|
-
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
1951
|
+
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1917
1952
|
:param pulumi.Input[builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
|
1918
1953
|
:param pulumi.Input[builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
|
1919
1954
|
:param pulumi.Input[builtins.str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
1920
1955
|
:param pulumi.Input[builtins.str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
1921
1956
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
1922
1957
|
:param pulumi.Input[builtins.str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
1923
|
-
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
1958
|
+
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1924
1959
|
:param pulumi.Input[builtins.str] state: Possible lifecycle states for connection.
|
1960
|
+
:param pulumi.Input['ConnectionStorageArgs'] storage: (Updatable) The information about a new storage of given type used in an Iceberg connection.
|
1925
1961
|
:param pulumi.Input[builtins.str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
1926
1962
|
:param pulumi.Input[builtins.str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
1927
1963
|
:param pulumi.Input[builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
@@ -1931,7 +1967,7 @@ class _ConnectionState:
|
|
1931
1967
|
:param pulumi.Input[builtins.str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
1932
1968
|
:param pulumi.Input[builtins.str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
1933
1969
|
:param pulumi.Input[builtins.str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
1934
|
-
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
1970
|
+
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
1935
1971
|
:param pulumi.Input[builtins.str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
1936
1972
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
1937
1973
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
|
@@ -1971,6 +2007,8 @@ class _ConnectionState:
|
|
1971
2007
|
pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
|
1972
2008
|
if bootstrap_servers is not None:
|
1973
2009
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
2010
|
+
if catalog is not None:
|
2011
|
+
pulumi.set(__self__, "catalog", catalog)
|
1974
2012
|
if client_id is not None:
|
1975
2013
|
pulumi.set(__self__, "client_id", client_id)
|
1976
2014
|
if client_secret is not None:
|
@@ -2125,6 +2163,8 @@ class _ConnectionState:
|
|
2125
2163
|
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
2126
2164
|
if state is not None:
|
2127
2165
|
pulumi.set(__self__, "state", state)
|
2166
|
+
if storage is not None:
|
2167
|
+
pulumi.set(__self__, "storage", storage)
|
2128
2168
|
if storage_credential_name is not None:
|
2129
2169
|
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
2130
2170
|
if stream_pool_id is not None:
|
@@ -2284,6 +2324,18 @@ class _ConnectionState:
|
|
2284
2324
|
def bootstrap_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConnectionBootstrapServerArgs']]]]):
|
2285
2325
|
pulumi.set(self, "bootstrap_servers", value)
|
2286
2326
|
|
2327
|
+
@property
|
2328
|
+
@pulumi.getter
|
2329
|
+
def catalog(self) -> Optional[pulumi.Input['ConnectionCatalogArgs']]:
|
2330
|
+
"""
|
2331
|
+
(Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
2332
|
+
"""
|
2333
|
+
return pulumi.get(self, "catalog")
|
2334
|
+
|
2335
|
+
@catalog.setter
|
2336
|
+
def catalog(self, value: Optional[pulumi.Input['ConnectionCatalogArgs']]):
|
2337
|
+
pulumi.set(self, "catalog", value)
|
2338
|
+
|
2287
2339
|
@property
|
2288
2340
|
@pulumi.getter(name="clientId")
|
2289
2341
|
def client_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -2396,7 +2448,7 @@ class _ConnectionState:
|
|
2396
2448
|
@pulumi.getter(name="coreSiteXml")
|
2397
2449
|
def core_site_xml(self) -> Optional[pulumi.Input[builtins.str]]:
|
2398
2450
|
"""
|
2399
|
-
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
2451
|
+
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
2400
2452
|
"""
|
2401
2453
|
return pulumi.get(self, "core_site_xml")
|
2402
2454
|
|
@@ -2504,7 +2556,7 @@ class _ConnectionState:
|
|
2504
2556
|
@pulumi.getter
|
2505
2557
|
def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
|
2506
2558
|
"""
|
2507
|
-
(Updatable)
|
2559
|
+
(Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
2508
2560
|
"""
|
2509
2561
|
return pulumi.get(self, "endpoint")
|
2510
2562
|
|
@@ -2984,7 +3036,7 @@ class _ConnectionState:
|
|
2984
3036
|
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
2985
3037
|
def service_account_key_file_secret_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
2986
3038
|
"""
|
2987
|
-
(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
|
3039
|
+
(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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
2988
3040
|
"""
|
2989
3041
|
return pulumi.get(self, "service_account_key_file_secret_id")
|
2990
3042
|
|
@@ -3044,7 +3096,7 @@ class _ConnectionState:
|
|
3044
3096
|
@pulumi.getter(name="sslCa")
|
3045
3097
|
def ssl_ca(self) -> Optional[pulumi.Input[builtins.str]]:
|
3046
3098
|
"""
|
3047
|
-
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
3099
|
+
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3048
3100
|
"""
|
3049
3101
|
return pulumi.get(self, "ssl_ca")
|
3050
3102
|
|
@@ -3056,7 +3108,7 @@ class _ConnectionState:
|
|
3056
3108
|
@pulumi.getter(name="sslCert")
|
3057
3109
|
def ssl_cert(self) -> Optional[pulumi.Input[builtins.str]]:
|
3058
3110
|
"""
|
3059
|
-
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
3111
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3060
3112
|
"""
|
3061
3113
|
return pulumi.get(self, "ssl_cert")
|
3062
3114
|
|
@@ -3116,7 +3168,7 @@ class _ConnectionState:
|
|
3116
3168
|
@pulumi.getter(name="sslCrl")
|
3117
3169
|
def ssl_crl(self) -> Optional[pulumi.Input[builtins.str]]:
|
3118
3170
|
"""
|
3119
|
-
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
3171
|
+
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3120
3172
|
"""
|
3121
3173
|
return pulumi.get(self, "ssl_crl")
|
3122
3174
|
|
@@ -3189,7 +3241,7 @@ class _ConnectionState:
|
|
3189
3241
|
@pulumi.getter(name="sslServerCertificate")
|
3190
3242
|
def ssl_server_certificate(self) -> Optional[pulumi.Input[builtins.str]]:
|
3191
3243
|
"""
|
3192
|
-
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
3244
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3193
3245
|
"""
|
3194
3246
|
return pulumi.get(self, "ssl_server_certificate")
|
3195
3247
|
|
@@ -3209,6 +3261,18 @@ class _ConnectionState:
|
|
3209
3261
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
3210
3262
|
pulumi.set(self, "state", value)
|
3211
3263
|
|
3264
|
+
@property
|
3265
|
+
@pulumi.getter
|
3266
|
+
def storage(self) -> Optional[pulumi.Input['ConnectionStorageArgs']]:
|
3267
|
+
"""
|
3268
|
+
(Updatable) The information about a new storage of given type used in an Iceberg connection.
|
3269
|
+
"""
|
3270
|
+
return pulumi.get(self, "storage")
|
3271
|
+
|
3272
|
+
@storage.setter
|
3273
|
+
def storage(self, value: Optional[pulumi.Input['ConnectionStorageArgs']]):
|
3274
|
+
pulumi.set(self, "storage", value)
|
3275
|
+
|
3212
3276
|
@property
|
3213
3277
|
@pulumi.getter(name="storageCredentialName")
|
3214
3278
|
def storage_credential_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -3321,7 +3385,7 @@ class _ConnectionState:
|
|
3321
3385
|
@pulumi.getter(name="tlsCaFile")
|
3322
3386
|
def tls_ca_file(self) -> Optional[pulumi.Input[builtins.str]]:
|
3323
3387
|
"""
|
3324
|
-
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
3388
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3325
3389
|
"""
|
3326
3390
|
return pulumi.get(self, "tls_ca_file")
|
3327
3391
|
|
@@ -3530,6 +3594,7 @@ class Connection(pulumi.CustomResource):
|
|
3530
3594
|
authentication_type: Optional[pulumi.Input[builtins.str]] = None,
|
3531
3595
|
azure_tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
3532
3596
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
|
3597
|
+
catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
|
3533
3598
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
3534
3599
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
3535
3600
|
client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -3604,6 +3669,7 @@ class Connection(pulumi.CustomResource):
|
|
3604
3669
|
ssl_key_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
3605
3670
|
ssl_mode: Optional[pulumi.Input[builtins.str]] = None,
|
3606
3671
|
ssl_server_certificate: Optional[pulumi.Input[builtins.str]] = None,
|
3672
|
+
storage: Optional[pulumi.Input[Union['ConnectionStorageArgs', 'ConnectionStorageArgsDict']]] = None,
|
3607
3673
|
storage_credential_name: Optional[pulumi.Input[builtins.str]] = None,
|
3608
3674
|
stream_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
3609
3675
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -3659,6 +3725,17 @@ class Connection(pulumi.CustomResource):
|
|
3659
3725
|
"port": connection_bootstrap_servers_port,
|
3660
3726
|
"private_ip": connection_bootstrap_servers_private_ip,
|
3661
3727
|
}],
|
3728
|
+
catalog={
|
3729
|
+
"catalog_type": connection_catalog_catalog_type,
|
3730
|
+
"branch": connection_catalog_branch,
|
3731
|
+
"client_id": test_client["id"],
|
3732
|
+
"client_secret_secret_id": test_secret["id"],
|
3733
|
+
"glue_id": test_glue["id"],
|
3734
|
+
"name": connection_catalog_name,
|
3735
|
+
"principal_role": connection_catalog_principal_role,
|
3736
|
+
"properties_secret_id": test_secret["id"],
|
3737
|
+
"uri": connection_catalog_uri,
|
3738
|
+
},
|
3662
3739
|
client_id=test_client["id"],
|
3663
3740
|
client_secret=connection_client_secret,
|
3664
3741
|
client_secret_secret_id=test_secret["id"],
|
@@ -3736,6 +3813,20 @@ class Connection(pulumi.CustomResource):
|
|
3736
3813
|
ssl_key_secret_id=test_secret["id"],
|
3737
3814
|
ssl_mode=connection_ssl_mode,
|
3738
3815
|
ssl_server_certificate=connection_ssl_server_certificate,
|
3816
|
+
storage={
|
3817
|
+
"storage_type": connection_storage_storage_type,
|
3818
|
+
"access_key_id": test_key["id"],
|
3819
|
+
"account_key_secret_id": test_secret["id"],
|
3820
|
+
"account_name": connection_storage_account_name,
|
3821
|
+
"bucket": connection_storage_bucket,
|
3822
|
+
"container": connection_storage_container,
|
3823
|
+
"endpoint": connection_storage_endpoint,
|
3824
|
+
"project_id": test_project["id"],
|
3825
|
+
"region": connection_storage_region,
|
3826
|
+
"scheme_type": connection_storage_scheme_type,
|
3827
|
+
"secret_access_key_secret_id": test_secret["id"],
|
3828
|
+
"service_account_key_file_secret_id": test_secret["id"],
|
3829
|
+
},
|
3739
3830
|
storage_credential_name=connection_storage_credential_name,
|
3740
3831
|
stream_pool_id=test_stream_pool["id"],
|
3741
3832
|
subnet_id=test_subnet["id"],
|
@@ -3778,6 +3869,7 @@ class Connection(pulumi.CustomResource):
|
|
3778
3869
|
:param pulumi.Input[builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
3779
3870
|
:param pulumi.Input[builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
3780
3871
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
|
3872
|
+
:param pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
3781
3873
|
:param pulumi.Input[builtins.str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
3782
3874
|
:param pulumi.Input[builtins.str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
3783
3875
|
: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 where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
@@ -3787,7 +3879,7 @@ class Connection(pulumi.CustomResource):
|
|
3787
3879
|
:param pulumi.Input[builtins.str] connection_type: (Updatable) The connection type.
|
3788
3880
|
:param pulumi.Input[builtins.str] connection_url: (Updatable) Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
|
3789
3881
|
:param pulumi.Input[builtins.str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
3790
|
-
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
3882
|
+
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3791
3883
|
:param pulumi.Input[builtins.str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
3792
3884
|
:param pulumi.Input[builtins.str] database_name: (Updatable) The name of the database.
|
3793
3885
|
:param pulumi.Input[builtins.str] db_system_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced.
|
@@ -3796,7 +3888,7 @@ class Connection(pulumi.CustomResource):
|
|
3796
3888
|
:param pulumi.Input[builtins.str] description: (Updatable) Metadata about this specific object.
|
3797
3889
|
:param pulumi.Input[builtins.str] display_name: (Updatable) An object's Display Name.
|
3798
3890
|
:param pulumi.Input[builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
3799
|
-
:param pulumi.Input[builtins.str] endpoint: (Updatable)
|
3891
|
+
:param pulumi.Input[builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
3800
3892
|
:param pulumi.Input[builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
3801
3893
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
3802
3894
|
:param pulumi.Input[builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -3836,32 +3928,33 @@ class Connection(pulumi.CustomResource):
|
|
3836
3928
|
:param pulumi.Input[builtins.str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
3837
3929
|
:param pulumi.Input[builtins.str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
3838
3930
|
:param pulumi.Input[builtins.str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
3839
|
-
: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
|
3931
|
+
: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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
3840
3932
|
:param pulumi.Input[builtins.str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
3841
3933
|
:param pulumi.Input[builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
3842
3934
|
:param pulumi.Input[builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
3843
3935
|
:param pulumi.Input[builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
3844
|
-
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
3845
|
-
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
3936
|
+
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3937
|
+
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3846
3938
|
:param pulumi.Input[builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
|
3847
3939
|
:param pulumi.Input[builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
|
3848
3940
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
|
3849
3941
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
3850
|
-
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
3942
|
+
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3851
3943
|
:param pulumi.Input[builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
|
3852
3944
|
:param pulumi.Input[builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
|
3853
3945
|
:param pulumi.Input[builtins.str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
3854
3946
|
:param pulumi.Input[builtins.str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
3855
3947
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
3856
3948
|
:param pulumi.Input[builtins.str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
3857
|
-
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
3949
|
+
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3950
|
+
:param pulumi.Input[Union['ConnectionStorageArgs', 'ConnectionStorageArgsDict']] storage: (Updatable) The information about a new storage of given type used in an Iceberg connection.
|
3858
3951
|
:param pulumi.Input[builtins.str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
3859
3952
|
:param pulumi.Input[builtins.str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
3860
3953
|
:param pulumi.Input[builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
3861
3954
|
:param pulumi.Input[builtins.str] technology_type: The Kafka (e.g. Confluent) Schema Registry technology type.
|
3862
3955
|
:param pulumi.Input[builtins.str] tenancy_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
|
3863
3956
|
:param pulumi.Input[builtins.str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
3864
|
-
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
3957
|
+
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
3865
3958
|
:param pulumi.Input[builtins.str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
3866
3959
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
3867
3960
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
|
@@ -3921,6 +4014,17 @@ class Connection(pulumi.CustomResource):
|
|
3921
4014
|
"port": connection_bootstrap_servers_port,
|
3922
4015
|
"private_ip": connection_bootstrap_servers_private_ip,
|
3923
4016
|
}],
|
4017
|
+
catalog={
|
4018
|
+
"catalog_type": connection_catalog_catalog_type,
|
4019
|
+
"branch": connection_catalog_branch,
|
4020
|
+
"client_id": test_client["id"],
|
4021
|
+
"client_secret_secret_id": test_secret["id"],
|
4022
|
+
"glue_id": test_glue["id"],
|
4023
|
+
"name": connection_catalog_name,
|
4024
|
+
"principal_role": connection_catalog_principal_role,
|
4025
|
+
"properties_secret_id": test_secret["id"],
|
4026
|
+
"uri": connection_catalog_uri,
|
4027
|
+
},
|
3924
4028
|
client_id=test_client["id"],
|
3925
4029
|
client_secret=connection_client_secret,
|
3926
4030
|
client_secret_secret_id=test_secret["id"],
|
@@ -3998,6 +4102,20 @@ class Connection(pulumi.CustomResource):
|
|
3998
4102
|
ssl_key_secret_id=test_secret["id"],
|
3999
4103
|
ssl_mode=connection_ssl_mode,
|
4000
4104
|
ssl_server_certificate=connection_ssl_server_certificate,
|
4105
|
+
storage={
|
4106
|
+
"storage_type": connection_storage_storage_type,
|
4107
|
+
"access_key_id": test_key["id"],
|
4108
|
+
"account_key_secret_id": test_secret["id"],
|
4109
|
+
"account_name": connection_storage_account_name,
|
4110
|
+
"bucket": connection_storage_bucket,
|
4111
|
+
"container": connection_storage_container,
|
4112
|
+
"endpoint": connection_storage_endpoint,
|
4113
|
+
"project_id": test_project["id"],
|
4114
|
+
"region": connection_storage_region,
|
4115
|
+
"scheme_type": connection_storage_scheme_type,
|
4116
|
+
"secret_access_key_secret_id": test_secret["id"],
|
4117
|
+
"service_account_key_file_secret_id": test_secret["id"],
|
4118
|
+
},
|
4001
4119
|
storage_credential_name=connection_storage_credential_name,
|
4002
4120
|
stream_pool_id=test_stream_pool["id"],
|
4003
4121
|
subnet_id=test_subnet["id"],
|
@@ -4053,6 +4171,7 @@ class Connection(pulumi.CustomResource):
|
|
4053
4171
|
authentication_type: Optional[pulumi.Input[builtins.str]] = None,
|
4054
4172
|
azure_tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
4055
4173
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
|
4174
|
+
catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
|
4056
4175
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
4057
4176
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
4058
4177
|
client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -4127,6 +4246,7 @@ class Connection(pulumi.CustomResource):
|
|
4127
4246
|
ssl_key_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
4128
4247
|
ssl_mode: Optional[pulumi.Input[builtins.str]] = None,
|
4129
4248
|
ssl_server_certificate: Optional[pulumi.Input[builtins.str]] = None,
|
4249
|
+
storage: Optional[pulumi.Input[Union['ConnectionStorageArgs', 'ConnectionStorageArgsDict']]] = None,
|
4130
4250
|
storage_credential_name: Optional[pulumi.Input[builtins.str]] = None,
|
4131
4251
|
stream_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
4132
4252
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -4167,6 +4287,7 @@ class Connection(pulumi.CustomResource):
|
|
4167
4287
|
__props__.__dict__["authentication_type"] = authentication_type
|
4168
4288
|
__props__.__dict__["azure_tenant_id"] = azure_tenant_id
|
4169
4289
|
__props__.__dict__["bootstrap_servers"] = bootstrap_servers
|
4290
|
+
__props__.__dict__["catalog"] = catalog
|
4170
4291
|
__props__.__dict__["client_id"] = client_id
|
4171
4292
|
__props__.__dict__["client_secret"] = None if client_secret is None else pulumi.Output.secret(client_secret)
|
4172
4293
|
__props__.__dict__["client_secret_secret_id"] = client_secret_secret_id
|
@@ -4247,6 +4368,7 @@ class Connection(pulumi.CustomResource):
|
|
4247
4368
|
__props__.__dict__["ssl_key_secret_id"] = ssl_key_secret_id
|
4248
4369
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
4249
4370
|
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
4371
|
+
__props__.__dict__["storage"] = storage
|
4250
4372
|
__props__.__dict__["storage_credential_name"] = storage_credential_name
|
4251
4373
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
4252
4374
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -4298,6 +4420,7 @@ class Connection(pulumi.CustomResource):
|
|
4298
4420
|
authentication_type: Optional[pulumi.Input[builtins.str]] = None,
|
4299
4421
|
azure_tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
4300
4422
|
bootstrap_servers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]]] = None,
|
4423
|
+
catalog: Optional[pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']]] = None,
|
4301
4424
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
4302
4425
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
4303
4426
|
client_secret_secret_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -4375,6 +4498,7 @@ class Connection(pulumi.CustomResource):
|
|
4375
4498
|
ssl_mode: Optional[pulumi.Input[builtins.str]] = None,
|
4376
4499
|
ssl_server_certificate: Optional[pulumi.Input[builtins.str]] = None,
|
4377
4500
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
4501
|
+
storage: Optional[pulumi.Input[Union['ConnectionStorageArgs', 'ConnectionStorageArgsDict']]] = None,
|
4378
4502
|
storage_credential_name: Optional[pulumi.Input[builtins.str]] = None,
|
4379
4503
|
stream_pool_id: Optional[pulumi.Input[builtins.str]] = None,
|
4380
4504
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -4416,6 +4540,7 @@ class Connection(pulumi.CustomResource):
|
|
4416
4540
|
:param pulumi.Input[builtins.str] authentication_type: (Updatable) Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
4417
4541
|
:param pulumi.Input[builtins.str] azure_tenant_id: (Updatable) Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
4418
4542
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ConnectionBootstrapServerArgs', 'ConnectionBootstrapServerArgsDict']]]] bootstrap_servers: (Updatable) Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
|
4543
|
+
:param pulumi.Input[Union['ConnectionCatalogArgs', 'ConnectionCatalogArgsDict']] catalog: (Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
4419
4544
|
:param pulumi.Input[builtins.str] client_id: (Updatable) Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
|
4420
4545
|
:param pulumi.Input[builtins.str] client_secret: (Updatable) Azure client secret (aka application password) for authentication. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: dO29Q~F5-VwnA.lZdd11xFF_t5NAXCaGwDl9NbT1 Deprecated: This field is deprecated and replaced by "clientSecretSecretId". This field will be removed after February 15 2026.
|
4421
4546
|
: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 where the client secret is stored. Only applicable for authenticationType == OAUTH_M2M. Note: When provided, 'clientSecret' field must not be provided.
|
@@ -4425,7 +4550,7 @@ class Connection(pulumi.CustomResource):
|
|
4425
4550
|
:param pulumi.Input[builtins.str] connection_type: (Updatable) The connection type.
|
4426
4551
|
:param pulumi.Input[builtins.str] connection_url: (Updatable) Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
|
4427
4552
|
:param pulumi.Input[builtins.str] consumer_properties: (Updatable) The base64 encoded content of the consumer.properties file.
|
4428
|
-
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
4553
|
+
:param pulumi.Input[builtins.str] core_site_xml: (Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4429
4554
|
:param pulumi.Input[builtins.str] database_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
4430
4555
|
:param pulumi.Input[builtins.str] database_name: (Updatable) The name of the database.
|
4431
4556
|
:param pulumi.Input[builtins.str] db_system_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced.
|
@@ -4434,7 +4559,7 @@ class Connection(pulumi.CustomResource):
|
|
4434
4559
|
:param pulumi.Input[builtins.str] description: (Updatable) Metadata about this specific object.
|
4435
4560
|
:param pulumi.Input[builtins.str] display_name: (Updatable) An object's Display Name.
|
4436
4561
|
:param pulumi.Input[builtins.bool] does_use_secret_ids: (Updatable) Indicates that sensitive attributes are provided via Secrets.
|
4437
|
-
:param pulumi.Input[builtins.str] endpoint: (Updatable)
|
4562
|
+
:param pulumi.Input[builtins.str] endpoint: (Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
4438
4563
|
:param pulumi.Input[builtins.str] fingerprint: (Updatable) Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
4439
4564
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
4440
4565
|
:param pulumi.Input[builtins.str] host: (Updatable) The name or address of a host. In case of Generic connection type host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -4476,26 +4601,27 @@ class Connection(pulumi.CustomResource):
|
|
4476
4601
|
:param pulumi.Input[builtins.str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
4477
4602
|
:param pulumi.Input[builtins.str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
4478
4603
|
:param pulumi.Input[builtins.str] service_account_key_file: (Updatable) The base64 encoded content of the service account key file containing the credentials required to use Google Cloud Storage. Deprecated: This field is deprecated and replaced by "serviceAccountKeyFileSecretId". This field will be removed after February 15 2026.
|
4479
|
-
: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
|
4604
|
+
: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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
4480
4605
|
:param pulumi.Input[builtins.str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
4481
4606
|
:param pulumi.Input[builtins.bool] should_use_jndi: (Updatable) If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
4482
4607
|
:param pulumi.Input[builtins.bool] should_use_resource_principal: (Updatable) Indicates that the user intents to connect to the instance through resource principal.
|
4483
4608
|
:param pulumi.Input[builtins.bool] should_validate_server_certificate: (Updatable) If set to true, the driver validates the certificate that is sent by the database server.
|
4484
|
-
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
4485
|
-
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
4609
|
+
:param pulumi.Input[builtins.str] ssl_ca: (Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4610
|
+
:param pulumi.Input[builtins.str] ssl_cert: (Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4486
4611
|
:param pulumi.Input[builtins.str] ssl_client_keystash: (Updatable) The base64 encoded keystash file which contains the encrypted password to the key database file. Deprecated: This field is deprecated and replaced by "sslClientKeystashSecretId". This field will be removed after February 15 2026.
|
4487
4612
|
:param pulumi.Input[builtins.str] ssl_client_keystash_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
|
4488
4613
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb: (Updatable) The base64 encoded keystore file created at the client containing the server certificate / CA root certificate. Deprecated: This field is deprecated and replaced by "sslClientKeystoredbSecretId". This field will be removed after February 15 2026.
|
4489
4614
|
:param pulumi.Input[builtins.str] ssl_client_keystoredb_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
|
4490
|
-
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
4615
|
+
:param pulumi.Input[builtins.str] ssl_crl: (Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4491
4616
|
:param pulumi.Input[builtins.str] ssl_key: (Updatable) Client Key - The base64 encoded content of a .pem or .crt file containing the client private key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "sslKeySecretId". This field will be removed after February 15 2026.
|
4492
4617
|
:param pulumi.Input[builtins.str] ssl_key_password: (Updatable) The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026.
|
4493
4618
|
:param pulumi.Input[builtins.str] ssl_key_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
|
4494
4619
|
:param pulumi.Input[builtins.str] ssl_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
4495
4620
|
* The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
|
4496
4621
|
:param pulumi.Input[builtins.str] ssl_mode: (Updatable) SSL modes for PostgreSQL.
|
4497
|
-
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
4622
|
+
:param pulumi.Input[builtins.str] ssl_server_certificate: (Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4498
4623
|
:param pulumi.Input[builtins.str] state: Possible lifecycle states for connection.
|
4624
|
+
:param pulumi.Input[Union['ConnectionStorageArgs', 'ConnectionStorageArgsDict']] storage: (Updatable) The information about a new storage of given type used in an Iceberg connection.
|
4499
4625
|
:param pulumi.Input[builtins.str] storage_credential_name: (Updatable) Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
4500
4626
|
:param pulumi.Input[builtins.str] stream_pool_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
4501
4627
|
:param pulumi.Input[builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
@@ -4505,7 +4631,7 @@ class Connection(pulumi.CustomResource):
|
|
4505
4631
|
:param pulumi.Input[builtins.str] tenant_id: (Updatable) Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
4506
4632
|
:param pulumi.Input[builtins.str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4507
4633
|
:param pulumi.Input[builtins.str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
4508
|
-
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
4634
|
+
:param pulumi.Input[builtins.str] tls_ca_file: (Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4509
4635
|
:param pulumi.Input[builtins.str] tls_certificate_key_file: (Updatable) Client Certificate - The base64 encoded content of a .pem file, containing the client public key (for 2-way SSL). Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFileSecretId". This field will be removed after February 15 2026.
|
4510
4636
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password: (Updatable) Client Certificate key file password. Deprecated: This field is deprecated and replaced by "tlsCertificateKeyFilePasswordSecretId". This field will be removed after February 15 2026.
|
4511
4637
|
:param pulumi.Input[builtins.str] tls_certificate_key_file_password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
|
@@ -4540,6 +4666,7 @@ class Connection(pulumi.CustomResource):
|
|
4540
4666
|
__props__.__dict__["authentication_type"] = authentication_type
|
4541
4667
|
__props__.__dict__["azure_tenant_id"] = azure_tenant_id
|
4542
4668
|
__props__.__dict__["bootstrap_servers"] = bootstrap_servers
|
4669
|
+
__props__.__dict__["catalog"] = catalog
|
4543
4670
|
__props__.__dict__["client_id"] = client_id
|
4544
4671
|
__props__.__dict__["client_secret"] = client_secret
|
4545
4672
|
__props__.__dict__["client_secret_secret_id"] = client_secret_secret_id
|
@@ -4617,6 +4744,7 @@ class Connection(pulumi.CustomResource):
|
|
4617
4744
|
__props__.__dict__["ssl_mode"] = ssl_mode
|
4618
4745
|
__props__.__dict__["ssl_server_certificate"] = ssl_server_certificate
|
4619
4746
|
__props__.__dict__["state"] = state
|
4747
|
+
__props__.__dict__["storage"] = storage
|
4620
4748
|
__props__.__dict__["storage_credential_name"] = storage_credential_name
|
4621
4749
|
__props__.__dict__["stream_pool_id"] = stream_pool_id
|
4622
4750
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -4716,6 +4844,14 @@ class Connection(pulumi.CustomResource):
|
|
4716
4844
|
"""
|
4717
4845
|
return pulumi.get(self, "bootstrap_servers")
|
4718
4846
|
|
4847
|
+
@property
|
4848
|
+
@pulumi.getter
|
4849
|
+
def catalog(self) -> pulumi.Output['outputs.ConnectionCatalog']:
|
4850
|
+
"""
|
4851
|
+
(Updatable) The information about a new catalog of given type used in an Iceberg connection.
|
4852
|
+
"""
|
4853
|
+
return pulumi.get(self, "catalog")
|
4854
|
+
|
4719
4855
|
@property
|
4720
4856
|
@pulumi.getter(name="clientId")
|
4721
4857
|
def client_id(self) -> pulumi.Output[builtins.str]:
|
@@ -4792,7 +4928,7 @@ class Connection(pulumi.CustomResource):
|
|
4792
4928
|
@pulumi.getter(name="coreSiteXml")
|
4793
4929
|
def core_site_xml(self) -> pulumi.Output[builtins.str]:
|
4794
4930
|
"""
|
4795
|
-
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml).
|
4931
|
+
(Updatable) The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
4796
4932
|
"""
|
4797
4933
|
return pulumi.get(self, "core_site_xml")
|
4798
4934
|
|
@@ -4864,7 +5000,7 @@ class Connection(pulumi.CustomResource):
|
|
4864
5000
|
@pulumi.getter
|
4865
5001
|
def endpoint(self) -> pulumi.Output[builtins.str]:
|
4866
5002
|
"""
|
4867
|
-
(Updatable)
|
5003
|
+
(Updatable) Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
|
4868
5004
|
"""
|
4869
5005
|
return pulumi.get(self, "endpoint")
|
4870
5006
|
|
@@ -5184,7 +5320,7 @@ class Connection(pulumi.CustomResource):
|
|
5184
5320
|
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
5185
5321
|
def service_account_key_file_secret_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
5186
5322
|
"""
|
5187
|
-
(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
|
5323
|
+
(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. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
|
5188
5324
|
"""
|
5189
5325
|
return pulumi.get(self, "service_account_key_file_secret_id")
|
5190
5326
|
|
@@ -5224,7 +5360,7 @@ class Connection(pulumi.CustomResource):
|
|
5224
5360
|
@pulumi.getter(name="sslCa")
|
5225
5361
|
def ssl_ca(self) -> pulumi.Output[builtins.str]:
|
5226
5362
|
"""
|
5227
|
-
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt.
|
5363
|
+
(Updatable) The base64 encoded certificate of the trusted certificate authorities (Trusted CA) for PostgreSQL. The supported file formats are .pem and .crt. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
5228
5364
|
"""
|
5229
5365
|
return pulumi.get(self, "ssl_ca")
|
5230
5366
|
|
@@ -5232,7 +5368,7 @@ class Connection(pulumi.CustomResource):
|
|
5232
5368
|
@pulumi.getter(name="sslCert")
|
5233
5369
|
def ssl_cert(self) -> pulumi.Output[builtins.str]:
|
5234
5370
|
"""
|
5235
|
-
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file
|
5371
|
+
(Updatable) Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
5236
5372
|
"""
|
5237
5373
|
return pulumi.get(self, "ssl_cert")
|
5238
5374
|
|
@@ -5272,7 +5408,7 @@ class Connection(pulumi.CustomResource):
|
|
5272
5408
|
@pulumi.getter(name="sslCrl")
|
5273
5409
|
def ssl_crl(self) -> pulumi.Output[builtins.str]:
|
5274
5410
|
"""
|
5275
|
-
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected.
|
5411
|
+
(Updatable) The base64 encoded list of certificates revoked by the trusted certificate authorities (Trusted CA). Note: This is an optional property and only applicable if TLS/MTLS option is selected. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
5276
5412
|
"""
|
5277
5413
|
return pulumi.get(self, "ssl_crl")
|
5278
5414
|
|
@@ -5321,7 +5457,7 @@ class Connection(pulumi.CustomResource):
|
|
5321
5457
|
@pulumi.getter(name="sslServerCertificate")
|
5322
5458
|
def ssl_server_certificate(self) -> pulumi.Output[builtins.str]:
|
5323
5459
|
"""
|
5324
|
-
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate.
|
5460
|
+
(Updatable) The base64 encoded file which contains the self-signed server certificate / Certificate Authority (CA) certificate. It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
5325
5461
|
"""
|
5326
5462
|
return pulumi.get(self, "ssl_server_certificate")
|
5327
5463
|
|
@@ -5333,6 +5469,14 @@ class Connection(pulumi.CustomResource):
|
|
5333
5469
|
"""
|
5334
5470
|
return pulumi.get(self, "state")
|
5335
5471
|
|
5472
|
+
@property
|
5473
|
+
@pulumi.getter
|
5474
|
+
def storage(self) -> pulumi.Output['outputs.ConnectionStorage']:
|
5475
|
+
"""
|
5476
|
+
(Updatable) The information about a new storage of given type used in an Iceberg connection.
|
5477
|
+
"""
|
5478
|
+
return pulumi.get(self, "storage")
|
5479
|
+
|
5336
5480
|
@property
|
5337
5481
|
@pulumi.getter(name="storageCredentialName")
|
5338
5482
|
def storage_credential_name(self) -> pulumi.Output[builtins.str]:
|
@@ -5409,7 +5553,7 @@ class Connection(pulumi.CustomResource):
|
|
5409
5553
|
@pulumi.getter(name="tlsCaFile")
|
5410
5554
|
def tls_ca_file(self) -> pulumi.Output[builtins.str]:
|
5411
5555
|
"""
|
5412
|
-
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL).
|
5556
|
+
(Updatable) Database Certificate - The base64 encoded content of a .pem file, containing the server public key (for 1 and 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
5413
5557
|
"""
|
5414
5558
|
return pulumi.get(self, "tls_ca_file")
|
5415
5559
|
|