pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -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/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- 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/kms/vault_verification.py +62 -2
- 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/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -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.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/outputs.py
CHANGED
@@ -19,8 +19,10 @@ from . import outputs
|
|
19
19
|
__all__ = [
|
20
20
|
'ConnectionAdditionalAttribute',
|
21
21
|
'ConnectionBootstrapServer',
|
22
|
+
'ConnectionCatalog',
|
22
23
|
'ConnectionIngressIp',
|
23
24
|
'ConnectionLock',
|
25
|
+
'ConnectionStorage',
|
24
26
|
'DeploymentBackupLock',
|
25
27
|
'DeploymentBackupSchedule',
|
26
28
|
'DeploymentDeploymentDiagnosticData',
|
@@ -44,14 +46,18 @@ __all__ = [
|
|
44
46
|
'GetConnectionAssignmentsConnectionAssignmentCollectionItemResult',
|
45
47
|
'GetConnectionAssignmentsFilterResult',
|
46
48
|
'GetConnectionBootstrapServerResult',
|
49
|
+
'GetConnectionCatalogResult',
|
47
50
|
'GetConnectionIngressIpResult',
|
48
51
|
'GetConnectionLockResult',
|
52
|
+
'GetConnectionStorageResult',
|
49
53
|
'GetConnectionsConnectionCollectionResult',
|
50
54
|
'GetConnectionsConnectionCollectionItemResult',
|
51
55
|
'GetConnectionsConnectionCollectionItemAdditionalAttributeResult',
|
52
56
|
'GetConnectionsConnectionCollectionItemBootstrapServerResult',
|
57
|
+
'GetConnectionsConnectionCollectionItemCatalogResult',
|
53
58
|
'GetConnectionsConnectionCollectionItemIngressIpResult',
|
54
59
|
'GetConnectionsConnectionCollectionItemLockResult',
|
60
|
+
'GetConnectionsConnectionCollectionItemStorageResult',
|
55
61
|
'GetConnectionsFilterResult',
|
56
62
|
'GetDatabaseRegistrationsDatabaseRegistrationCollectionResult',
|
57
63
|
'GetDatabaseRegistrationsDatabaseRegistrationCollectionItemResult',
|
@@ -241,6 +247,147 @@ class ConnectionBootstrapServer(dict):
|
|
241
247
|
return pulumi.get(self, "private_ip")
|
242
248
|
|
243
249
|
|
250
|
+
@pulumi.output_type
|
251
|
+
class ConnectionCatalog(dict):
|
252
|
+
@staticmethod
|
253
|
+
def __key_warning(key: str):
|
254
|
+
suggest = None
|
255
|
+
if key == "catalogType":
|
256
|
+
suggest = "catalog_type"
|
257
|
+
elif key == "clientId":
|
258
|
+
suggest = "client_id"
|
259
|
+
elif key == "clientSecretSecretId":
|
260
|
+
suggest = "client_secret_secret_id"
|
261
|
+
elif key == "glueId":
|
262
|
+
suggest = "glue_id"
|
263
|
+
elif key == "principalRole":
|
264
|
+
suggest = "principal_role"
|
265
|
+
elif key == "propertiesSecretId":
|
266
|
+
suggest = "properties_secret_id"
|
267
|
+
|
268
|
+
if suggest:
|
269
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionCatalog. Access the value via the '{suggest}' property getter instead.")
|
270
|
+
|
271
|
+
def __getitem__(self, key: str) -> Any:
|
272
|
+
ConnectionCatalog.__key_warning(key)
|
273
|
+
return super().__getitem__(key)
|
274
|
+
|
275
|
+
def get(self, key: str, default = None) -> Any:
|
276
|
+
ConnectionCatalog.__key_warning(key)
|
277
|
+
return super().get(key, default)
|
278
|
+
|
279
|
+
def __init__(__self__, *,
|
280
|
+
catalog_type: builtins.str,
|
281
|
+
branch: Optional[builtins.str] = None,
|
282
|
+
client_id: Optional[builtins.str] = None,
|
283
|
+
client_secret_secret_id: Optional[builtins.str] = None,
|
284
|
+
glue_id: Optional[builtins.str] = None,
|
285
|
+
name: Optional[builtins.str] = None,
|
286
|
+
principal_role: Optional[builtins.str] = None,
|
287
|
+
properties_secret_id: Optional[builtins.str] = None,
|
288
|
+
uri: Optional[builtins.str] = None):
|
289
|
+
"""
|
290
|
+
:param builtins.str catalog_type: (Updatable) The catalog type.
|
291
|
+
:param builtins.str branch: (Updatable) The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
292
|
+
:param builtins.str client_id: (Updatable) The OAuth client ID used for authentication.
|
293
|
+
:param builtins.str client_secret_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password Oracle GoldenGate uses to connect to Snowflake platform.
|
294
|
+
:param builtins.str glue_id: (Updatable) The AWS Glue Catalog ID where Iceberg tables are registered.
|
295
|
+
:param builtins.str name: (Updatable) The catalog name within Polaris where Iceberg tables are registered.
|
296
|
+
:param builtins.str principal_role: (Updatable) The Snowflake role used to access Polaris.
|
297
|
+
:param builtins.str properties_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
298
|
+
:param builtins.str uri: (Updatable) The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
299
|
+
"""
|
300
|
+
pulumi.set(__self__, "catalog_type", catalog_type)
|
301
|
+
if branch is not None:
|
302
|
+
pulumi.set(__self__, "branch", branch)
|
303
|
+
if client_id is not None:
|
304
|
+
pulumi.set(__self__, "client_id", client_id)
|
305
|
+
if client_secret_secret_id is not None:
|
306
|
+
pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
|
307
|
+
if glue_id is not None:
|
308
|
+
pulumi.set(__self__, "glue_id", glue_id)
|
309
|
+
if name is not None:
|
310
|
+
pulumi.set(__self__, "name", name)
|
311
|
+
if principal_role is not None:
|
312
|
+
pulumi.set(__self__, "principal_role", principal_role)
|
313
|
+
if properties_secret_id is not None:
|
314
|
+
pulumi.set(__self__, "properties_secret_id", properties_secret_id)
|
315
|
+
if uri is not None:
|
316
|
+
pulumi.set(__self__, "uri", uri)
|
317
|
+
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="catalogType")
|
320
|
+
def catalog_type(self) -> builtins.str:
|
321
|
+
"""
|
322
|
+
(Updatable) The catalog type.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "catalog_type")
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter
|
328
|
+
def branch(self) -> Optional[builtins.str]:
|
329
|
+
"""
|
330
|
+
(Updatable) The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "branch")
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="clientId")
|
336
|
+
def client_id(self) -> Optional[builtins.str]:
|
337
|
+
"""
|
338
|
+
(Updatable) The OAuth client ID used for authentication.
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "client_id")
|
341
|
+
|
342
|
+
@property
|
343
|
+
@pulumi.getter(name="clientSecretSecretId")
|
344
|
+
def client_secret_secret_id(self) -> Optional[builtins.str]:
|
345
|
+
"""
|
346
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password Oracle GoldenGate uses to connect to Snowflake platform.
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "client_secret_secret_id")
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="glueId")
|
352
|
+
def glue_id(self) -> Optional[builtins.str]:
|
353
|
+
"""
|
354
|
+
(Updatable) The AWS Glue Catalog ID where Iceberg tables are registered.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "glue_id")
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter
|
360
|
+
def name(self) -> Optional[builtins.str]:
|
361
|
+
"""
|
362
|
+
(Updatable) The catalog name within Polaris where Iceberg tables are registered.
|
363
|
+
"""
|
364
|
+
return pulumi.get(self, "name")
|
365
|
+
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="principalRole")
|
368
|
+
def principal_role(self) -> Optional[builtins.str]:
|
369
|
+
"""
|
370
|
+
(Updatable) The Snowflake role used to access Polaris.
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "principal_role")
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="propertiesSecretId")
|
376
|
+
def properties_secret_id(self) -> Optional[builtins.str]:
|
377
|
+
"""
|
378
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "properties_secret_id")
|
381
|
+
|
382
|
+
@property
|
383
|
+
@pulumi.getter
|
384
|
+
def uri(self) -> Optional[builtins.str]:
|
385
|
+
"""
|
386
|
+
(Updatable) The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
387
|
+
"""
|
388
|
+
return pulumi.get(self, "uri")
|
389
|
+
|
390
|
+
|
244
391
|
@pulumi.output_type
|
245
392
|
class ConnectionIngressIp(dict):
|
246
393
|
@staticmethod
|
@@ -350,6 +497,187 @@ class ConnectionLock(dict):
|
|
350
497
|
return pulumi.get(self, "time_created")
|
351
498
|
|
352
499
|
|
500
|
+
@pulumi.output_type
|
501
|
+
class ConnectionStorage(dict):
|
502
|
+
@staticmethod
|
503
|
+
def __key_warning(key: str):
|
504
|
+
suggest = None
|
505
|
+
if key == "storageType":
|
506
|
+
suggest = "storage_type"
|
507
|
+
elif key == "accessKeyId":
|
508
|
+
suggest = "access_key_id"
|
509
|
+
elif key == "accountKeySecretId":
|
510
|
+
suggest = "account_key_secret_id"
|
511
|
+
elif key == "accountName":
|
512
|
+
suggest = "account_name"
|
513
|
+
elif key == "projectId":
|
514
|
+
suggest = "project_id"
|
515
|
+
elif key == "schemeType":
|
516
|
+
suggest = "scheme_type"
|
517
|
+
elif key == "secretAccessKeySecretId":
|
518
|
+
suggest = "secret_access_key_secret_id"
|
519
|
+
elif key == "serviceAccountKeyFileSecretId":
|
520
|
+
suggest = "service_account_key_file_secret_id"
|
521
|
+
|
522
|
+
if suggest:
|
523
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionStorage. Access the value via the '{suggest}' property getter instead.")
|
524
|
+
|
525
|
+
def __getitem__(self, key: str) -> Any:
|
526
|
+
ConnectionStorage.__key_warning(key)
|
527
|
+
return super().__getitem__(key)
|
528
|
+
|
529
|
+
def get(self, key: str, default = None) -> Any:
|
530
|
+
ConnectionStorage.__key_warning(key)
|
531
|
+
return super().get(key, default)
|
532
|
+
|
533
|
+
def __init__(__self__, *,
|
534
|
+
storage_type: builtins.str,
|
535
|
+
access_key_id: Optional[builtins.str] = None,
|
536
|
+
account_key_secret_id: Optional[builtins.str] = None,
|
537
|
+
account_name: Optional[builtins.str] = None,
|
538
|
+
bucket: Optional[builtins.str] = None,
|
539
|
+
container: Optional[builtins.str] = None,
|
540
|
+
endpoint: Optional[builtins.str] = None,
|
541
|
+
project_id: Optional[builtins.str] = None,
|
542
|
+
region: Optional[builtins.str] = None,
|
543
|
+
scheme_type: Optional[builtins.str] = None,
|
544
|
+
secret_access_key_secret_id: Optional[builtins.str] = None,
|
545
|
+
service_account_key_file_secret_id: Optional[builtins.str] = None):
|
546
|
+
"""
|
547
|
+
:param builtins.str storage_type: (Updatable) The storage type used in the Iceberg connection.
|
548
|
+
:param builtins.str access_key_id: (Updatable) Access key ID to access the Amazon S3 bucket.
|
549
|
+
:param builtins.str account_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
550
|
+
:param builtins.str account_name: (Updatable) Sets the Azure storage account name.
|
551
|
+
:param builtins.str bucket: (Updatable) Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
552
|
+
:param builtins.str container: (Updatable) The Azure Blob Storage container where Iceberg tables are stored.
|
553
|
+
:param builtins.str endpoint: (Updatable) The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
554
|
+
:param builtins.str project_id: (Updatable) The Google Cloud Project where the bucket exists.
|
555
|
+
:param builtins.str region: (Updatable) The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
556
|
+
:param builtins.str scheme_type: (Updatable) The scheme of the storage.
|
557
|
+
:param builtins.str secret_access_key_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
558
|
+
:param 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.
|
559
|
+
"""
|
560
|
+
pulumi.set(__self__, "storage_type", storage_type)
|
561
|
+
if access_key_id is not None:
|
562
|
+
pulumi.set(__self__, "access_key_id", access_key_id)
|
563
|
+
if account_key_secret_id is not None:
|
564
|
+
pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
|
565
|
+
if account_name is not None:
|
566
|
+
pulumi.set(__self__, "account_name", account_name)
|
567
|
+
if bucket is not None:
|
568
|
+
pulumi.set(__self__, "bucket", bucket)
|
569
|
+
if container is not None:
|
570
|
+
pulumi.set(__self__, "container", container)
|
571
|
+
if endpoint is not None:
|
572
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
573
|
+
if project_id is not None:
|
574
|
+
pulumi.set(__self__, "project_id", project_id)
|
575
|
+
if region is not None:
|
576
|
+
pulumi.set(__self__, "region", region)
|
577
|
+
if scheme_type is not None:
|
578
|
+
pulumi.set(__self__, "scheme_type", scheme_type)
|
579
|
+
if secret_access_key_secret_id is not None:
|
580
|
+
pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
|
581
|
+
if service_account_key_file_secret_id is not None:
|
582
|
+
pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
|
583
|
+
|
584
|
+
@property
|
585
|
+
@pulumi.getter(name="storageType")
|
586
|
+
def storage_type(self) -> builtins.str:
|
587
|
+
"""
|
588
|
+
(Updatable) The storage type used in the Iceberg connection.
|
589
|
+
"""
|
590
|
+
return pulumi.get(self, "storage_type")
|
591
|
+
|
592
|
+
@property
|
593
|
+
@pulumi.getter(name="accessKeyId")
|
594
|
+
def access_key_id(self) -> Optional[builtins.str]:
|
595
|
+
"""
|
596
|
+
(Updatable) Access key ID to access the Amazon S3 bucket.
|
597
|
+
"""
|
598
|
+
return pulumi.get(self, "access_key_id")
|
599
|
+
|
600
|
+
@property
|
601
|
+
@pulumi.getter(name="accountKeySecretId")
|
602
|
+
def account_key_secret_id(self) -> Optional[builtins.str]:
|
603
|
+
"""
|
604
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "account_key_secret_id")
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter(name="accountName")
|
610
|
+
def account_name(self) -> Optional[builtins.str]:
|
611
|
+
"""
|
612
|
+
(Updatable) Sets the Azure storage account name.
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "account_name")
|
615
|
+
|
616
|
+
@property
|
617
|
+
@pulumi.getter
|
618
|
+
def bucket(self) -> Optional[builtins.str]:
|
619
|
+
"""
|
620
|
+
(Updatable) Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
621
|
+
"""
|
622
|
+
return pulumi.get(self, "bucket")
|
623
|
+
|
624
|
+
@property
|
625
|
+
@pulumi.getter
|
626
|
+
def container(self) -> Optional[builtins.str]:
|
627
|
+
"""
|
628
|
+
(Updatable) The Azure Blob Storage container where Iceberg tables are stored.
|
629
|
+
"""
|
630
|
+
return pulumi.get(self, "container")
|
631
|
+
|
632
|
+
@property
|
633
|
+
@pulumi.getter
|
634
|
+
def endpoint(self) -> Optional[builtins.str]:
|
635
|
+
"""
|
636
|
+
(Updatable) The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
637
|
+
"""
|
638
|
+
return pulumi.get(self, "endpoint")
|
639
|
+
|
640
|
+
@property
|
641
|
+
@pulumi.getter(name="projectId")
|
642
|
+
def project_id(self) -> Optional[builtins.str]:
|
643
|
+
"""
|
644
|
+
(Updatable) The Google Cloud Project where the bucket exists.
|
645
|
+
"""
|
646
|
+
return pulumi.get(self, "project_id")
|
647
|
+
|
648
|
+
@property
|
649
|
+
@pulumi.getter
|
650
|
+
def region(self) -> Optional[builtins.str]:
|
651
|
+
"""
|
652
|
+
(Updatable) The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
653
|
+
"""
|
654
|
+
return pulumi.get(self, "region")
|
655
|
+
|
656
|
+
@property
|
657
|
+
@pulumi.getter(name="schemeType")
|
658
|
+
def scheme_type(self) -> Optional[builtins.str]:
|
659
|
+
"""
|
660
|
+
(Updatable) The scheme of the storage.
|
661
|
+
"""
|
662
|
+
return pulumi.get(self, "scheme_type")
|
663
|
+
|
664
|
+
@property
|
665
|
+
@pulumi.getter(name="secretAccessKeySecretId")
|
666
|
+
def secret_access_key_secret_id(self) -> Optional[builtins.str]:
|
667
|
+
"""
|
668
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
669
|
+
"""
|
670
|
+
return pulumi.get(self, "secret_access_key_secret_id")
|
671
|
+
|
672
|
+
@property
|
673
|
+
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
674
|
+
def service_account_key_file_secret_id(self) -> Optional[builtins.str]:
|
675
|
+
"""
|
676
|
+
(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.
|
677
|
+
"""
|
678
|
+
return pulumi.get(self, "service_account_key_file_secret_id")
|
679
|
+
|
680
|
+
|
353
681
|
@pulumi.output_type
|
354
682
|
class DeploymentBackupLock(dict):
|
355
683
|
@staticmethod
|
@@ -1597,7 +1925,7 @@ class GetConnectionAdditionalAttributeResult(dict):
|
|
1597
1925
|
name: builtins.str,
|
1598
1926
|
value: builtins.str):
|
1599
1927
|
"""
|
1600
|
-
:param builtins.str name: The name
|
1928
|
+
:param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
|
1601
1929
|
:param builtins.str value: The value of the property entry.
|
1602
1930
|
"""
|
1603
1931
|
pulumi.set(__self__, "name", name)
|
@@ -1607,7 +1935,7 @@ class GetConnectionAdditionalAttributeResult(dict):
|
|
1607
1935
|
@pulumi.getter
|
1608
1936
|
def name(self) -> builtins.str:
|
1609
1937
|
"""
|
1610
|
-
The name
|
1938
|
+
The catalog name within Polaris where Iceberg tables are registered.
|
1611
1939
|
"""
|
1612
1940
|
return pulumi.get(self, "name")
|
1613
1941
|
|
@@ -1813,6 +2141,112 @@ class GetConnectionBootstrapServerResult(dict):
|
|
1813
2141
|
return pulumi.get(self, "private_ip")
|
1814
2142
|
|
1815
2143
|
|
2144
|
+
@pulumi.output_type
|
2145
|
+
class GetConnectionCatalogResult(dict):
|
2146
|
+
def __init__(__self__, *,
|
2147
|
+
branch: builtins.str,
|
2148
|
+
catalog_type: builtins.str,
|
2149
|
+
client_id: builtins.str,
|
2150
|
+
client_secret_secret_id: builtins.str,
|
2151
|
+
glue_id: builtins.str,
|
2152
|
+
name: builtins.str,
|
2153
|
+
principal_role: builtins.str,
|
2154
|
+
properties_secret_id: builtins.str,
|
2155
|
+
uri: builtins.str):
|
2156
|
+
"""
|
2157
|
+
:param builtins.str branch: The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
2158
|
+
:param builtins.str catalog_type: The catalog type.
|
2159
|
+
:param builtins.str client_id: 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
|
2160
|
+
:param builtins.str client_secret_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
2161
|
+
:param builtins.str glue_id: The AWS Glue Catalog ID where Iceberg tables are registered.
|
2162
|
+
:param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
|
2163
|
+
:param builtins.str principal_role: The Snowflake role used to access Polaris.
|
2164
|
+
:param builtins.str properties_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
2165
|
+
:param builtins.str uri: The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
2166
|
+
"""
|
2167
|
+
pulumi.set(__self__, "branch", branch)
|
2168
|
+
pulumi.set(__self__, "catalog_type", catalog_type)
|
2169
|
+
pulumi.set(__self__, "client_id", client_id)
|
2170
|
+
pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
|
2171
|
+
pulumi.set(__self__, "glue_id", glue_id)
|
2172
|
+
pulumi.set(__self__, "name", name)
|
2173
|
+
pulumi.set(__self__, "principal_role", principal_role)
|
2174
|
+
pulumi.set(__self__, "properties_secret_id", properties_secret_id)
|
2175
|
+
pulumi.set(__self__, "uri", uri)
|
2176
|
+
|
2177
|
+
@property
|
2178
|
+
@pulumi.getter
|
2179
|
+
def branch(self) -> builtins.str:
|
2180
|
+
"""
|
2181
|
+
The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
2182
|
+
"""
|
2183
|
+
return pulumi.get(self, "branch")
|
2184
|
+
|
2185
|
+
@property
|
2186
|
+
@pulumi.getter(name="catalogType")
|
2187
|
+
def catalog_type(self) -> builtins.str:
|
2188
|
+
"""
|
2189
|
+
The catalog type.
|
2190
|
+
"""
|
2191
|
+
return pulumi.get(self, "catalog_type")
|
2192
|
+
|
2193
|
+
@property
|
2194
|
+
@pulumi.getter(name="clientId")
|
2195
|
+
def client_id(self) -> builtins.str:
|
2196
|
+
"""
|
2197
|
+
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
|
2198
|
+
"""
|
2199
|
+
return pulumi.get(self, "client_id")
|
2200
|
+
|
2201
|
+
@property
|
2202
|
+
@pulumi.getter(name="clientSecretSecretId")
|
2203
|
+
def client_secret_secret_id(self) -> builtins.str:
|
2204
|
+
"""
|
2205
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
2206
|
+
"""
|
2207
|
+
return pulumi.get(self, "client_secret_secret_id")
|
2208
|
+
|
2209
|
+
@property
|
2210
|
+
@pulumi.getter(name="glueId")
|
2211
|
+
def glue_id(self) -> builtins.str:
|
2212
|
+
"""
|
2213
|
+
The AWS Glue Catalog ID where Iceberg tables are registered.
|
2214
|
+
"""
|
2215
|
+
return pulumi.get(self, "glue_id")
|
2216
|
+
|
2217
|
+
@property
|
2218
|
+
@pulumi.getter
|
2219
|
+
def name(self) -> builtins.str:
|
2220
|
+
"""
|
2221
|
+
The catalog name within Polaris where Iceberg tables are registered.
|
2222
|
+
"""
|
2223
|
+
return pulumi.get(self, "name")
|
2224
|
+
|
2225
|
+
@property
|
2226
|
+
@pulumi.getter(name="principalRole")
|
2227
|
+
def principal_role(self) -> builtins.str:
|
2228
|
+
"""
|
2229
|
+
The Snowflake role used to access Polaris.
|
2230
|
+
"""
|
2231
|
+
return pulumi.get(self, "principal_role")
|
2232
|
+
|
2233
|
+
@property
|
2234
|
+
@pulumi.getter(name="propertiesSecretId")
|
2235
|
+
def properties_secret_id(self) -> builtins.str:
|
2236
|
+
"""
|
2237
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
2238
|
+
"""
|
2239
|
+
return pulumi.get(self, "properties_secret_id")
|
2240
|
+
|
2241
|
+
@property
|
2242
|
+
@pulumi.getter
|
2243
|
+
def uri(self) -> builtins.str:
|
2244
|
+
"""
|
2245
|
+
The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
2246
|
+
"""
|
2247
|
+
return pulumi.get(self, "uri")
|
2248
|
+
|
2249
|
+
|
1816
2250
|
@pulumi.output_type
|
1817
2251
|
class GetConnectionIngressIpResult(dict):
|
1818
2252
|
def __init__(__self__, *,
|
@@ -1882,6 +2316,145 @@ class GetConnectionLockResult(dict):
|
|
1882
2316
|
return pulumi.get(self, "type")
|
1883
2317
|
|
1884
2318
|
|
2319
|
+
@pulumi.output_type
|
2320
|
+
class GetConnectionStorageResult(dict):
|
2321
|
+
def __init__(__self__, *,
|
2322
|
+
access_key_id: builtins.str,
|
2323
|
+
account_key_secret_id: builtins.str,
|
2324
|
+
account_name: builtins.str,
|
2325
|
+
bucket: builtins.str,
|
2326
|
+
container: builtins.str,
|
2327
|
+
endpoint: builtins.str,
|
2328
|
+
project_id: builtins.str,
|
2329
|
+
region: builtins.str,
|
2330
|
+
scheme_type: builtins.str,
|
2331
|
+
secret_access_key_secret_id: builtins.str,
|
2332
|
+
service_account_key_file_secret_id: builtins.str,
|
2333
|
+
storage_type: builtins.str):
|
2334
|
+
"""
|
2335
|
+
:param builtins.str access_key_id: Access key ID to access the Amazon S3 bucket.
|
2336
|
+
:param builtins.str account_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2337
|
+
:param builtins.str account_name: Sets the Azure storage account name.
|
2338
|
+
:param builtins.str bucket: Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
2339
|
+
:param builtins.str container: The Azure Blob Storage container where Iceberg tables are stored.
|
2340
|
+
:param builtins.str endpoint: The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
2341
|
+
:param builtins.str project_id: The Google Cloud Project where the bucket exists.
|
2342
|
+
:param builtins.str region: The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
2343
|
+
:param builtins.str scheme_type: The scheme of the storage.
|
2344
|
+
:param builtins.str secret_access_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
2345
|
+
:param builtins.str service_account_key_file_secret_id: 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.
|
2346
|
+
:param builtins.str storage_type: The storage type used in the Iceberg connection.
|
2347
|
+
"""
|
2348
|
+
pulumi.set(__self__, "access_key_id", access_key_id)
|
2349
|
+
pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
|
2350
|
+
pulumi.set(__self__, "account_name", account_name)
|
2351
|
+
pulumi.set(__self__, "bucket", bucket)
|
2352
|
+
pulumi.set(__self__, "container", container)
|
2353
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
2354
|
+
pulumi.set(__self__, "project_id", project_id)
|
2355
|
+
pulumi.set(__self__, "region", region)
|
2356
|
+
pulumi.set(__self__, "scheme_type", scheme_type)
|
2357
|
+
pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
|
2358
|
+
pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
|
2359
|
+
pulumi.set(__self__, "storage_type", storage_type)
|
2360
|
+
|
2361
|
+
@property
|
2362
|
+
@pulumi.getter(name="accessKeyId")
|
2363
|
+
def access_key_id(self) -> builtins.str:
|
2364
|
+
"""
|
2365
|
+
Access key ID to access the Amazon S3 bucket.
|
2366
|
+
"""
|
2367
|
+
return pulumi.get(self, "access_key_id")
|
2368
|
+
|
2369
|
+
@property
|
2370
|
+
@pulumi.getter(name="accountKeySecretId")
|
2371
|
+
def account_key_secret_id(self) -> builtins.str:
|
2372
|
+
"""
|
2373
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2374
|
+
"""
|
2375
|
+
return pulumi.get(self, "account_key_secret_id")
|
2376
|
+
|
2377
|
+
@property
|
2378
|
+
@pulumi.getter(name="accountName")
|
2379
|
+
def account_name(self) -> builtins.str:
|
2380
|
+
"""
|
2381
|
+
Sets the Azure storage account name.
|
2382
|
+
"""
|
2383
|
+
return pulumi.get(self, "account_name")
|
2384
|
+
|
2385
|
+
@property
|
2386
|
+
@pulumi.getter
|
2387
|
+
def bucket(self) -> builtins.str:
|
2388
|
+
"""
|
2389
|
+
Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
2390
|
+
"""
|
2391
|
+
return pulumi.get(self, "bucket")
|
2392
|
+
|
2393
|
+
@property
|
2394
|
+
@pulumi.getter
|
2395
|
+
def container(self) -> builtins.str:
|
2396
|
+
"""
|
2397
|
+
The Azure Blob Storage container where Iceberg tables are stored.
|
2398
|
+
"""
|
2399
|
+
return pulumi.get(self, "container")
|
2400
|
+
|
2401
|
+
@property
|
2402
|
+
@pulumi.getter
|
2403
|
+
def endpoint(self) -> builtins.str:
|
2404
|
+
"""
|
2405
|
+
The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
2406
|
+
"""
|
2407
|
+
return pulumi.get(self, "endpoint")
|
2408
|
+
|
2409
|
+
@property
|
2410
|
+
@pulumi.getter(name="projectId")
|
2411
|
+
def project_id(self) -> builtins.str:
|
2412
|
+
"""
|
2413
|
+
The Google Cloud Project where the bucket exists.
|
2414
|
+
"""
|
2415
|
+
return pulumi.get(self, "project_id")
|
2416
|
+
|
2417
|
+
@property
|
2418
|
+
@pulumi.getter
|
2419
|
+
def region(self) -> builtins.str:
|
2420
|
+
"""
|
2421
|
+
The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
2422
|
+
"""
|
2423
|
+
return pulumi.get(self, "region")
|
2424
|
+
|
2425
|
+
@property
|
2426
|
+
@pulumi.getter(name="schemeType")
|
2427
|
+
def scheme_type(self) -> builtins.str:
|
2428
|
+
"""
|
2429
|
+
The scheme of the storage.
|
2430
|
+
"""
|
2431
|
+
return pulumi.get(self, "scheme_type")
|
2432
|
+
|
2433
|
+
@property
|
2434
|
+
@pulumi.getter(name="secretAccessKeySecretId")
|
2435
|
+
def secret_access_key_secret_id(self) -> builtins.str:
|
2436
|
+
"""
|
2437
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
2438
|
+
"""
|
2439
|
+
return pulumi.get(self, "secret_access_key_secret_id")
|
2440
|
+
|
2441
|
+
@property
|
2442
|
+
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
2443
|
+
def service_account_key_file_secret_id(self) -> builtins.str:
|
2444
|
+
"""
|
2445
|
+
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.
|
2446
|
+
"""
|
2447
|
+
return pulumi.get(self, "service_account_key_file_secret_id")
|
2448
|
+
|
2449
|
+
@property
|
2450
|
+
@pulumi.getter(name="storageType")
|
2451
|
+
def storage_type(self) -> builtins.str:
|
2452
|
+
"""
|
2453
|
+
The storage type used in the Iceberg connection.
|
2454
|
+
"""
|
2455
|
+
return pulumi.get(self, "storage_type")
|
2456
|
+
|
2457
|
+
|
1885
2458
|
@pulumi.output_type
|
1886
2459
|
class GetConnectionsConnectionCollectionResult(dict):
|
1887
2460
|
def __init__(__self__, *,
|
@@ -1906,6 +2479,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
1906
2479
|
authentication_type: builtins.str,
|
1907
2480
|
azure_tenant_id: builtins.str,
|
1908
2481
|
bootstrap_servers: Sequence['outputs.GetConnectionsConnectionCollectionItemBootstrapServerResult'],
|
2482
|
+
catalogs: Sequence['outputs.GetConnectionsConnectionCollectionItemCatalogResult'],
|
1909
2483
|
client_id: builtins.str,
|
1910
2484
|
client_secret: builtins.str,
|
1911
2485
|
client_secret_secret_id: builtins.str,
|
@@ -1985,6 +2559,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
1985
2559
|
ssl_server_certificate: builtins.str,
|
1986
2560
|
state: builtins.str,
|
1987
2561
|
storage_credential_name: builtins.str,
|
2562
|
+
storages: Sequence['outputs.GetConnectionsConnectionCollectionItemStorageResult'],
|
1988
2563
|
stream_pool_id: builtins.str,
|
1989
2564
|
subnet_id: builtins.str,
|
1990
2565
|
system_tags: Mapping[str, builtins.str],
|
@@ -2010,8 +2585,8 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2010
2585
|
wallet: builtins.str,
|
2011
2586
|
wallet_secret_id: builtins.str):
|
2012
2587
|
"""
|
2013
|
-
:param builtins.str access_key_id: Access key ID to access the Amazon S3 bucket.
|
2014
|
-
:param builtins.str account_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2588
|
+
:param builtins.str access_key_id: Access key ID to access the Amazon S3 bucket.
|
2589
|
+
:param builtins.str account_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2015
2590
|
:param builtins.str account_name: Sets the Azure storage account name.
|
2016
2591
|
:param Sequence['GetConnectionsConnectionCollectionItemAdditionalAttributeArgs'] additional_attributes: An array of name-value pair attribute entries. Used as additional parameters in connection string.
|
2017
2592
|
:param builtins.str authentication_mode: Authentication mode. It can be provided at creation of Oracle Autonomous Database Serverless connections, when a databaseId is provided. The default value is MTLS.
|
@@ -2023,6 +2598,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2023
2598
|
* OAUTH_M2M: user must enter clientId and clientSecret
|
2024
2599
|
:param builtins.str azure_tenant_id: 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
|
2025
2600
|
:param Sequence['GetConnectionsConnectionCollectionItemBootstrapServerArgs'] bootstrap_servers: 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"`
|
2601
|
+
:param Sequence['GetConnectionsConnectionCollectionItemCatalogArgs'] catalogs: Represents the catalog of given type used in an Iceberg connection.
|
2026
2602
|
:param builtins.str client_id: 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
|
2027
2603
|
:param builtins.str client_secret_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
2028
2604
|
:param builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
@@ -2036,7 +2612,8 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2036
2612
|
* AMAZON_REDSHIFT: Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'
|
2037
2613
|
* DATABRICKS: 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'
|
2038
2614
|
:param builtins.str consumer_properties: The base64 encoded content of the consumer.properties file.
|
2039
|
-
:param builtins.str
|
2615
|
+
:param builtins.str core_site_xml: 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.
|
2616
|
+
:param builtins.str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
2040
2617
|
:param builtins.str database_name: The name of the database.
|
2041
2618
|
:param builtins.str db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system being referenced.
|
2042
2619
|
:param Mapping[str, builtins.str] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -2044,7 +2621,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2044
2621
|
:param builtins.str description: Metadata about this specific object.
|
2045
2622
|
:param builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
2046
2623
|
:param builtins.bool does_use_secret_ids: Indicates that sensitive attributes are provided via Secrets.
|
2047
|
-
:param builtins.str endpoint:
|
2624
|
+
:param builtins.str endpoint: The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
2048
2625
|
:param Mapping[str, builtins.str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
2049
2626
|
:param builtins.str host: The name or address of a host.
|
2050
2627
|
In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -2069,30 +2646,35 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2069
2646
|
:param builtins.str private_key_file_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the private key file (PEM file) corresponding to the API key of the fingerprint. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm Note: When provided, 'privateKeyFile' field must not be provided.
|
2070
2647
|
:param builtins.str private_key_passphrase_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
|
2071
2648
|
:param builtins.str producer_properties: The base64 encoded content of the producer.properties file.
|
2649
|
+
:param builtins.str public_key_fingerprint: The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
2072
2650
|
:param builtins.str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
|
2073
|
-
:param builtins.str region: The
|
2651
|
+
:param builtins.str region: The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
2074
2652
|
:param builtins.str routing_method: Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
|
2075
2653
|
:param builtins.str sas_token_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
|
2076
|
-
:param builtins.str secret_access_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the
|
2654
|
+
:param builtins.str secret_access_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
2077
2655
|
:param builtins.str security_protocol: Security Protocol to be provided for the following connection types:
|
2078
2656
|
* ELASTICSEARCH, KAFKA, MICROSOFT_SQLSERVER, MYSQL, POSTGRESQL, REDIS
|
2079
2657
|
* JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
|
2080
2658
|
:param builtins.str servers: Comma separated list of server addresses, specified as host:port entries, where :port is optional. Example: `"server1.example.com:4000,server2.example.com:4000"`
|
2081
2659
|
If port is not specified, a default value is set, in case of ELASTICSEARCH: 9200, for REDIS 6379.
|
2082
|
-
:param builtins.str service_account_key_file_secret_id: 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
|
2660
|
+
:param builtins.str service_account_key_file_secret_id: 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.
|
2083
2661
|
:param builtins.str session_mode: 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.
|
2084
2662
|
:param builtins.bool should_use_jndi: If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
2085
2663
|
:param builtins.bool should_use_resource_principal: Indicates that the user intents to connect to the instance through resource principal.
|
2086
2664
|
:param builtins.bool should_validate_server_certificate: If set to true, the driver validates the certificate that is sent by the database server.
|
2087
|
-
:param builtins.str ssl_ca: Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
|
2665
|
+
:param builtins.str ssl_ca: Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL). The supported file formats are .pem and .crt. In case of MYSQL and POSTGRESQL connections it is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
2666
|
+
:param builtins.str ssl_cert: 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.
|
2088
2667
|
:param builtins.str ssl_client_keystash_secret_id: 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.
|
2089
2668
|
:param builtins.str ssl_client_keystoredb_secret_id: 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.
|
2669
|
+
:param builtins.str ssl_crl: 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.
|
2090
2670
|
:param builtins.str ssl_key_password_secret_id: 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.
|
2091
2671
|
:param builtins.str ssl_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the Client Key
|
2092
2672
|
* 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.
|
2093
2673
|
:param builtins.str ssl_mode: SSL mode to be provided for the following connection types: MYSQL, POSTGRESQL.
|
2674
|
+
:param builtins.str ssl_server_certificate: 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.
|
2094
2675
|
:param builtins.str state: A filter to return only connections having the 'lifecycleState' given.
|
2095
2676
|
:param builtins.str storage_credential_name: Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
|
2677
|
+
:param Sequence['GetConnectionsConnectionCollectionItemStorageArgs'] storages: Represents the storage of given type used in an Iceberg connection.
|
2096
2678
|
:param builtins.str stream_pool_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
|
2097
2679
|
:param builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
2098
2680
|
:param Mapping[str, builtins.str] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
@@ -2101,6 +2683,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2101
2683
|
:param builtins.str tenant_id: Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
2102
2684
|
:param 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`.
|
2103
2685
|
:param 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`.
|
2686
|
+
:param builtins.str tls_ca_file: 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.
|
2104
2687
|
:param builtins.str tls_certificate_key_file_password_secret_id: 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.
|
2105
2688
|
:param builtins.str tls_certificate_key_file_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the certificate key file of the mtls connection.
|
2106
2689
|
* The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
|
@@ -2121,6 +2704,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2121
2704
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
2122
2705
|
pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
|
2123
2706
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
2707
|
+
pulumi.set(__self__, "catalogs", catalogs)
|
2124
2708
|
pulumi.set(__self__, "client_id", client_id)
|
2125
2709
|
pulumi.set(__self__, "client_secret", client_secret)
|
2126
2710
|
pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
|
@@ -2200,6 +2784,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2200
2784
|
pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
|
2201
2785
|
pulumi.set(__self__, "state", state)
|
2202
2786
|
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
2787
|
+
pulumi.set(__self__, "storages", storages)
|
2203
2788
|
pulumi.set(__self__, "stream_pool_id", stream_pool_id)
|
2204
2789
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2205
2790
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -2229,7 +2814,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2229
2814
|
@pulumi.getter(name="accessKeyId")
|
2230
2815
|
def access_key_id(self) -> builtins.str:
|
2231
2816
|
"""
|
2232
|
-
Access key ID to access the Amazon S3 bucket.
|
2817
|
+
Access key ID to access the Amazon S3 bucket.
|
2233
2818
|
"""
|
2234
2819
|
return pulumi.get(self, "access_key_id")
|
2235
2820
|
|
@@ -2242,7 +2827,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2242
2827
|
@pulumi.getter(name="accountKeySecretId")
|
2243
2828
|
def account_key_secret_id(self) -> builtins.str:
|
2244
2829
|
"""
|
2245
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2830
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
2246
2831
|
"""
|
2247
2832
|
return pulumi.get(self, "account_key_secret_id")
|
2248
2833
|
|
@@ -2299,6 +2884,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2299
2884
|
"""
|
2300
2885
|
return pulumi.get(self, "bootstrap_servers")
|
2301
2886
|
|
2887
|
+
@property
|
2888
|
+
@pulumi.getter
|
2889
|
+
def catalogs(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemCatalogResult']:
|
2890
|
+
"""
|
2891
|
+
Represents the catalog of given type used in an Iceberg connection.
|
2892
|
+
"""
|
2893
|
+
return pulumi.get(self, "catalogs")
|
2894
|
+
|
2302
2895
|
@property
|
2303
2896
|
@pulumi.getter(name="clientId")
|
2304
2897
|
def client_id(self) -> builtins.str:
|
@@ -2376,13 +2969,16 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2376
2969
|
@property
|
2377
2970
|
@pulumi.getter(name="coreSiteXml")
|
2378
2971
|
def core_site_xml(self) -> builtins.str:
|
2972
|
+
"""
|
2973
|
+
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.
|
2974
|
+
"""
|
2379
2975
|
return pulumi.get(self, "core_site_xml")
|
2380
2976
|
|
2381
2977
|
@property
|
2382
2978
|
@pulumi.getter(name="databaseId")
|
2383
2979
|
def database_id(self) -> builtins.str:
|
2384
2980
|
"""
|
2385
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the
|
2981
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Autonomous Json Database.
|
2386
2982
|
"""
|
2387
2983
|
return pulumi.get(self, "database_id")
|
2388
2984
|
|
@@ -2446,7 +3042,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2446
3042
|
@pulumi.getter
|
2447
3043
|
def endpoint(self) -> builtins.str:
|
2448
3044
|
"""
|
2449
|
-
|
3045
|
+
The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
2450
3046
|
"""
|
2451
3047
|
return pulumi.get(self, "endpoint")
|
2452
3048
|
|
@@ -2664,6 +3260,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2664
3260
|
@property
|
2665
3261
|
@pulumi.getter(name="publicKeyFingerprint")
|
2666
3262
|
def public_key_fingerprint(self) -> builtins.str:
|
3263
|
+
"""
|
3264
|
+
The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
3265
|
+
"""
|
2667
3266
|
return pulumi.get(self, "public_key_fingerprint")
|
2668
3267
|
|
2669
3268
|
@property
|
@@ -2678,7 +3277,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2678
3277
|
@pulumi.getter
|
2679
3278
|
def region(self) -> builtins.str:
|
2680
3279
|
"""
|
2681
|
-
The
|
3280
|
+
The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
2682
3281
|
"""
|
2683
3282
|
return pulumi.get(self, "region")
|
2684
3283
|
|
@@ -2712,7 +3311,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2712
3311
|
@pulumi.getter(name="secretAccessKeySecretId")
|
2713
3312
|
def secret_access_key_secret_id(self) -> builtins.str:
|
2714
3313
|
"""
|
2715
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the
|
3314
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
2716
3315
|
"""
|
2717
3316
|
return pulumi.get(self, "secret_access_key_secret_id")
|
2718
3317
|
|
@@ -2744,7 +3343,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2744
3343
|
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
2745
3344
|
def service_account_key_file_secret_id(self) -> builtins.str:
|
2746
3345
|
"""
|
2747
|
-
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
|
3346
|
+
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.
|
2748
3347
|
"""
|
2749
3348
|
return pulumi.get(self, "service_account_key_file_secret_id")
|
2750
3349
|
|
@@ -2784,13 +3383,16 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2784
3383
|
@pulumi.getter(name="sslCa")
|
2785
3384
|
def ssl_ca(self) -> builtins.str:
|
2786
3385
|
"""
|
2787
|
-
Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
|
3386
|
+
Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL). The supported file formats are .pem and .crt. In case of MYSQL and POSTGRESQL connections it is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
2788
3387
|
"""
|
2789
3388
|
return pulumi.get(self, "ssl_ca")
|
2790
3389
|
|
2791
3390
|
@property
|
2792
3391
|
@pulumi.getter(name="sslCert")
|
2793
3392
|
def ssl_cert(self) -> builtins.str:
|
3393
|
+
"""
|
3394
|
+
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.
|
3395
|
+
"""
|
2794
3396
|
return pulumi.get(self, "ssl_cert")
|
2795
3397
|
|
2796
3398
|
@property
|
@@ -2822,6 +3424,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2822
3424
|
@property
|
2823
3425
|
@pulumi.getter(name="sslCrl")
|
2824
3426
|
def ssl_crl(self) -> builtins.str:
|
3427
|
+
"""
|
3428
|
+
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.
|
3429
|
+
"""
|
2825
3430
|
return pulumi.get(self, "ssl_crl")
|
2826
3431
|
|
2827
3432
|
@property
|
@@ -2862,6 +3467,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2862
3467
|
@property
|
2863
3468
|
@pulumi.getter(name="sslServerCertificate")
|
2864
3469
|
def ssl_server_certificate(self) -> builtins.str:
|
3470
|
+
"""
|
3471
|
+
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.
|
3472
|
+
"""
|
2865
3473
|
return pulumi.get(self, "ssl_server_certificate")
|
2866
3474
|
|
2867
3475
|
@property
|
@@ -2880,6 +3488,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2880
3488
|
"""
|
2881
3489
|
return pulumi.get(self, "storage_credential_name")
|
2882
3490
|
|
3491
|
+
@property
|
3492
|
+
@pulumi.getter
|
3493
|
+
def storages(self) -> Sequence['outputs.GetConnectionsConnectionCollectionItemStorageResult']:
|
3494
|
+
"""
|
3495
|
+
Represents the storage of given type used in an Iceberg connection.
|
3496
|
+
"""
|
3497
|
+
return pulumi.get(self, "storages")
|
3498
|
+
|
2883
3499
|
@property
|
2884
3500
|
@pulumi.getter(name="streamPoolId")
|
2885
3501
|
def stream_pool_id(self) -> builtins.str:
|
@@ -2947,6 +3563,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2947
3563
|
@property
|
2948
3564
|
@pulumi.getter(name="tlsCaFile")
|
2949
3565
|
def tls_ca_file(self) -> builtins.str:
|
3566
|
+
"""
|
3567
|
+
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.
|
3568
|
+
"""
|
2950
3569
|
return pulumi.get(self, "tls_ca_file")
|
2951
3570
|
|
2952
3571
|
@property
|
@@ -3059,7 +3678,7 @@ class GetConnectionsConnectionCollectionItemAdditionalAttributeResult(dict):
|
|
3059
3678
|
name: builtins.str,
|
3060
3679
|
value: builtins.str):
|
3061
3680
|
"""
|
3062
|
-
:param builtins.str name: The name
|
3681
|
+
:param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
|
3063
3682
|
:param builtins.str value: The value of the property entry.
|
3064
3683
|
"""
|
3065
3684
|
pulumi.set(__self__, "name", name)
|
@@ -3069,7 +3688,7 @@ class GetConnectionsConnectionCollectionItemAdditionalAttributeResult(dict):
|
|
3069
3688
|
@pulumi.getter
|
3070
3689
|
def name(self) -> builtins.str:
|
3071
3690
|
"""
|
3072
|
-
The name
|
3691
|
+
The catalog name within Polaris where Iceberg tables are registered.
|
3073
3692
|
"""
|
3074
3693
|
return pulumi.get(self, "name")
|
3075
3694
|
|
@@ -3128,6 +3747,112 @@ class GetConnectionsConnectionCollectionItemBootstrapServerResult(dict):
|
|
3128
3747
|
return pulumi.get(self, "private_ip")
|
3129
3748
|
|
3130
3749
|
|
3750
|
+
@pulumi.output_type
|
3751
|
+
class GetConnectionsConnectionCollectionItemCatalogResult(dict):
|
3752
|
+
def __init__(__self__, *,
|
3753
|
+
branch: builtins.str,
|
3754
|
+
catalog_type: builtins.str,
|
3755
|
+
client_id: builtins.str,
|
3756
|
+
client_secret_secret_id: builtins.str,
|
3757
|
+
glue_id: builtins.str,
|
3758
|
+
name: builtins.str,
|
3759
|
+
principal_role: builtins.str,
|
3760
|
+
properties_secret_id: builtins.str,
|
3761
|
+
uri: builtins.str):
|
3762
|
+
"""
|
3763
|
+
:param builtins.str branch: The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
3764
|
+
:param builtins.str catalog_type: The catalog type.
|
3765
|
+
:param builtins.str client_id: 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
|
3766
|
+
:param builtins.str client_secret_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
3767
|
+
:param builtins.str glue_id: The AWS Glue Catalog ID where Iceberg tables are registered.
|
3768
|
+
:param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
|
3769
|
+
:param builtins.str principal_role: The Snowflake role used to access Polaris.
|
3770
|
+
:param builtins.str properties_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
3771
|
+
:param builtins.str uri: The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
3772
|
+
"""
|
3773
|
+
pulumi.set(__self__, "branch", branch)
|
3774
|
+
pulumi.set(__self__, "catalog_type", catalog_type)
|
3775
|
+
pulumi.set(__self__, "client_id", client_id)
|
3776
|
+
pulumi.set(__self__, "client_secret_secret_id", client_secret_secret_id)
|
3777
|
+
pulumi.set(__self__, "glue_id", glue_id)
|
3778
|
+
pulumi.set(__self__, "name", name)
|
3779
|
+
pulumi.set(__self__, "principal_role", principal_role)
|
3780
|
+
pulumi.set(__self__, "properties_secret_id", properties_secret_id)
|
3781
|
+
pulumi.set(__self__, "uri", uri)
|
3782
|
+
|
3783
|
+
@property
|
3784
|
+
@pulumi.getter
|
3785
|
+
def branch(self) -> builtins.str:
|
3786
|
+
"""
|
3787
|
+
The active branch of the Nessie catalog from which Iceberg reads and writes table metadata.
|
3788
|
+
"""
|
3789
|
+
return pulumi.get(self, "branch")
|
3790
|
+
|
3791
|
+
@property
|
3792
|
+
@pulumi.getter(name="catalogType")
|
3793
|
+
def catalog_type(self) -> builtins.str:
|
3794
|
+
"""
|
3795
|
+
The catalog type.
|
3796
|
+
"""
|
3797
|
+
return pulumi.get(self, "catalog_type")
|
3798
|
+
|
3799
|
+
@property
|
3800
|
+
@pulumi.getter(name="clientId")
|
3801
|
+
def client_id(self) -> builtins.str:
|
3802
|
+
"""
|
3803
|
+
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
|
3804
|
+
"""
|
3805
|
+
return pulumi.get(self, "client_id")
|
3806
|
+
|
3807
|
+
@property
|
3808
|
+
@pulumi.getter(name="clientSecretSecretId")
|
3809
|
+
def client_secret_secret_id(self) -> builtins.str:
|
3810
|
+
"""
|
3811
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.
|
3812
|
+
"""
|
3813
|
+
return pulumi.get(self, "client_secret_secret_id")
|
3814
|
+
|
3815
|
+
@property
|
3816
|
+
@pulumi.getter(name="glueId")
|
3817
|
+
def glue_id(self) -> builtins.str:
|
3818
|
+
"""
|
3819
|
+
The AWS Glue Catalog ID where Iceberg tables are registered.
|
3820
|
+
"""
|
3821
|
+
return pulumi.get(self, "glue_id")
|
3822
|
+
|
3823
|
+
@property
|
3824
|
+
@pulumi.getter
|
3825
|
+
def name(self) -> builtins.str:
|
3826
|
+
"""
|
3827
|
+
The catalog name within Polaris where Iceberg tables are registered.
|
3828
|
+
"""
|
3829
|
+
return pulumi.get(self, "name")
|
3830
|
+
|
3831
|
+
@property
|
3832
|
+
@pulumi.getter(name="principalRole")
|
3833
|
+
def principal_role(self) -> builtins.str:
|
3834
|
+
"""
|
3835
|
+
The Snowflake role used to access Polaris.
|
3836
|
+
"""
|
3837
|
+
return pulumi.get(self, "principal_role")
|
3838
|
+
|
3839
|
+
@property
|
3840
|
+
@pulumi.getter(name="propertiesSecretId")
|
3841
|
+
def properties_secret_id(self) -> builtins.str:
|
3842
|
+
"""
|
3843
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the content of the configuration file containing additional properties for the REST catalog. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
|
3844
|
+
"""
|
3845
|
+
return pulumi.get(self, "properties_secret_id")
|
3846
|
+
|
3847
|
+
@property
|
3848
|
+
@pulumi.getter
|
3849
|
+
def uri(self) -> builtins.str:
|
3850
|
+
"""
|
3851
|
+
The URL endpoint for the Polaris API. e.g.: 'https://<your-snowflake-account>.snowflakecomputing.com/polaris/api/catalog'
|
3852
|
+
"""
|
3853
|
+
return pulumi.get(self, "uri")
|
3854
|
+
|
3855
|
+
|
3131
3856
|
@pulumi.output_type
|
3132
3857
|
class GetConnectionsConnectionCollectionItemIngressIpResult(dict):
|
3133
3858
|
def __init__(__self__, *,
|
@@ -3197,6 +3922,145 @@ class GetConnectionsConnectionCollectionItemLockResult(dict):
|
|
3197
3922
|
return pulumi.get(self, "type")
|
3198
3923
|
|
3199
3924
|
|
3925
|
+
@pulumi.output_type
|
3926
|
+
class GetConnectionsConnectionCollectionItemStorageResult(dict):
|
3927
|
+
def __init__(__self__, *,
|
3928
|
+
access_key_id: builtins.str,
|
3929
|
+
account_key_secret_id: builtins.str,
|
3930
|
+
account_name: builtins.str,
|
3931
|
+
bucket: builtins.str,
|
3932
|
+
container: builtins.str,
|
3933
|
+
endpoint: builtins.str,
|
3934
|
+
project_id: builtins.str,
|
3935
|
+
region: builtins.str,
|
3936
|
+
scheme_type: builtins.str,
|
3937
|
+
secret_access_key_secret_id: builtins.str,
|
3938
|
+
service_account_key_file_secret_id: builtins.str,
|
3939
|
+
storage_type: builtins.str):
|
3940
|
+
"""
|
3941
|
+
:param builtins.str access_key_id: Access key ID to access the Amazon S3 bucket.
|
3942
|
+
:param builtins.str account_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
3943
|
+
:param builtins.str account_name: Sets the Azure storage account name.
|
3944
|
+
:param builtins.str bucket: Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
3945
|
+
:param builtins.str container: The Azure Blob Storage container where Iceberg tables are stored.
|
3946
|
+
:param builtins.str endpoint: The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
3947
|
+
:param builtins.str project_id: The Google Cloud Project where the bucket exists.
|
3948
|
+
:param builtins.str region: The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
3949
|
+
:param builtins.str scheme_type: The scheme of the storage.
|
3950
|
+
:param builtins.str secret_access_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
3951
|
+
:param builtins.str service_account_key_file_secret_id: 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.
|
3952
|
+
:param builtins.str storage_type: The storage type used in the Iceberg connection.
|
3953
|
+
"""
|
3954
|
+
pulumi.set(__self__, "access_key_id", access_key_id)
|
3955
|
+
pulumi.set(__self__, "account_key_secret_id", account_key_secret_id)
|
3956
|
+
pulumi.set(__self__, "account_name", account_name)
|
3957
|
+
pulumi.set(__self__, "bucket", bucket)
|
3958
|
+
pulumi.set(__self__, "container", container)
|
3959
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
3960
|
+
pulumi.set(__self__, "project_id", project_id)
|
3961
|
+
pulumi.set(__self__, "region", region)
|
3962
|
+
pulumi.set(__self__, "scheme_type", scheme_type)
|
3963
|
+
pulumi.set(__self__, "secret_access_key_secret_id", secret_access_key_secret_id)
|
3964
|
+
pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
|
3965
|
+
pulumi.set(__self__, "storage_type", storage_type)
|
3966
|
+
|
3967
|
+
@property
|
3968
|
+
@pulumi.getter(name="accessKeyId")
|
3969
|
+
def access_key_id(self) -> builtins.str:
|
3970
|
+
"""
|
3971
|
+
Access key ID to access the Amazon S3 bucket.
|
3972
|
+
"""
|
3973
|
+
return pulumi.get(self, "access_key_id")
|
3974
|
+
|
3975
|
+
@property
|
3976
|
+
@pulumi.getter(name="accountKeySecretId")
|
3977
|
+
def account_key_secret_id(self) -> builtins.str:
|
3978
|
+
"""
|
3979
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
3980
|
+
"""
|
3981
|
+
return pulumi.get(self, "account_key_secret_id")
|
3982
|
+
|
3983
|
+
@property
|
3984
|
+
@pulumi.getter(name="accountName")
|
3985
|
+
def account_name(self) -> builtins.str:
|
3986
|
+
"""
|
3987
|
+
Sets the Azure storage account name.
|
3988
|
+
"""
|
3989
|
+
return pulumi.get(self, "account_name")
|
3990
|
+
|
3991
|
+
@property
|
3992
|
+
@pulumi.getter
|
3993
|
+
def bucket(self) -> builtins.str:
|
3994
|
+
"""
|
3995
|
+
Google Cloud Storage bucket where Iceberg stores metadata and data files.
|
3996
|
+
"""
|
3997
|
+
return pulumi.get(self, "bucket")
|
3998
|
+
|
3999
|
+
@property
|
4000
|
+
@pulumi.getter
|
4001
|
+
def container(self) -> builtins.str:
|
4002
|
+
"""
|
4003
|
+
The Azure Blob Storage container where Iceberg tables are stored.
|
4004
|
+
"""
|
4005
|
+
return pulumi.get(self, "container")
|
4006
|
+
|
4007
|
+
@property
|
4008
|
+
@pulumi.getter
|
4009
|
+
def endpoint(self) -> builtins.str:
|
4010
|
+
"""
|
4011
|
+
The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
4012
|
+
"""
|
4013
|
+
return pulumi.get(self, "endpoint")
|
4014
|
+
|
4015
|
+
@property
|
4016
|
+
@pulumi.getter(name="projectId")
|
4017
|
+
def project_id(self) -> builtins.str:
|
4018
|
+
"""
|
4019
|
+
The Google Cloud Project where the bucket exists.
|
4020
|
+
"""
|
4021
|
+
return pulumi.get(self, "project_id")
|
4022
|
+
|
4023
|
+
@property
|
4024
|
+
@pulumi.getter
|
4025
|
+
def region(self) -> builtins.str:
|
4026
|
+
"""
|
4027
|
+
The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
4028
|
+
"""
|
4029
|
+
return pulumi.get(self, "region")
|
4030
|
+
|
4031
|
+
@property
|
4032
|
+
@pulumi.getter(name="schemeType")
|
4033
|
+
def scheme_type(self) -> builtins.str:
|
4034
|
+
"""
|
4035
|
+
The scheme of the storage.
|
4036
|
+
"""
|
4037
|
+
return pulumi.get(self, "scheme_type")
|
4038
|
+
|
4039
|
+
@property
|
4040
|
+
@pulumi.getter(name="secretAccessKeySecretId")
|
4041
|
+
def secret_access_key_secret_id(self) -> builtins.str:
|
4042
|
+
"""
|
4043
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
4044
|
+
"""
|
4045
|
+
return pulumi.get(self, "secret_access_key_secret_id")
|
4046
|
+
|
4047
|
+
@property
|
4048
|
+
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
4049
|
+
def service_account_key_file_secret_id(self) -> builtins.str:
|
4050
|
+
"""
|
4051
|
+
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.
|
4052
|
+
"""
|
4053
|
+
return pulumi.get(self, "service_account_key_file_secret_id")
|
4054
|
+
|
4055
|
+
@property
|
4056
|
+
@pulumi.getter(name="storageType")
|
4057
|
+
def storage_type(self) -> builtins.str:
|
4058
|
+
"""
|
4059
|
+
The storage type used in the Iceberg connection.
|
4060
|
+
"""
|
4061
|
+
return pulumi.get(self, "storage_type")
|
4062
|
+
|
4063
|
+
|
3200
4064
|
@pulumi.output_type
|
3201
4065
|
class GetConnectionsFilterResult(dict):
|
3202
4066
|
def __init__(__self__, *,
|
@@ -3204,7 +4068,7 @@ class GetConnectionsFilterResult(dict):
|
|
3204
4068
|
values: Sequence[builtins.str],
|
3205
4069
|
regex: Optional[builtins.bool] = None):
|
3206
4070
|
"""
|
3207
|
-
:param builtins.str name: The name
|
4071
|
+
:param builtins.str name: The catalog name within Polaris where Iceberg tables are registered.
|
3208
4072
|
"""
|
3209
4073
|
pulumi.set(__self__, "name", name)
|
3210
4074
|
pulumi.set(__self__, "values", values)
|
@@ -3215,7 +4079,7 @@ class GetConnectionsFilterResult(dict):
|
|
3215
4079
|
@pulumi.getter
|
3216
4080
|
def name(self) -> builtins.str:
|
3217
4081
|
"""
|
3218
|
-
The name
|
4082
|
+
The catalog name within Polaris where Iceberg tables are registered.
|
3219
4083
|
"""
|
3220
4084
|
return pulumi.get(self, "name")
|
3221
4085
|
|