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
@@ -28,7 +28,7 @@ class GetConnectionResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getConnection.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_use_resource_principal=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, storage_credential_name=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, tenant_id=None, time_created=None, time_updated=None, tls_ca_file=None, tls_certificate_key_file=None, tls_certificate_key_file_password=None, tls_certificate_key_file_password_secret_id=None, tls_certificate_key_file_secret_id=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
|
31
|
+
def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, catalogs=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_use_resource_principal=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, storage_credential_name=None, storages=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, tenant_id=None, time_created=None, time_updated=None, tls_ca_file=None, tls_certificate_key_file=None, tls_certificate_key_file_password=None, tls_certificate_key_file_password_secret_id=None, tls_certificate_key_file_secret_id=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
|
32
32
|
if access_key_id and not isinstance(access_key_id, str):
|
33
33
|
raise TypeError("Expected argument 'access_key_id' to be a str")
|
34
34
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
@@ -56,6 +56,9 @@ class GetConnectionResult:
|
|
56
56
|
if bootstrap_servers and not isinstance(bootstrap_servers, list):
|
57
57
|
raise TypeError("Expected argument 'bootstrap_servers' to be a list")
|
58
58
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
59
|
+
if catalogs and not isinstance(catalogs, list):
|
60
|
+
raise TypeError("Expected argument 'catalogs' to be a list")
|
61
|
+
pulumi.set(__self__, "catalogs", catalogs)
|
59
62
|
if client_id and not isinstance(client_id, str):
|
60
63
|
raise TypeError("Expected argument 'client_id' to be a str")
|
61
64
|
pulumi.set(__self__, "client_id", client_id)
|
@@ -296,6 +299,9 @@ class GetConnectionResult:
|
|
296
299
|
if storage_credential_name and not isinstance(storage_credential_name, str):
|
297
300
|
raise TypeError("Expected argument 'storage_credential_name' to be a str")
|
298
301
|
pulumi.set(__self__, "storage_credential_name", storage_credential_name)
|
302
|
+
if storages and not isinstance(storages, list):
|
303
|
+
raise TypeError("Expected argument 'storages' to be a list")
|
304
|
+
pulumi.set(__self__, "storages", storages)
|
299
305
|
if stream_pool_id and not isinstance(stream_pool_id, str):
|
300
306
|
raise TypeError("Expected argument 'stream_pool_id' to be a str")
|
301
307
|
pulumi.set(__self__, "stream_pool_id", stream_pool_id)
|
@@ -373,7 +379,7 @@ class GetConnectionResult:
|
|
373
379
|
@pulumi.getter(name="accessKeyId")
|
374
380
|
def access_key_id(self) -> builtins.str:
|
375
381
|
"""
|
376
|
-
Access key ID to access the Amazon S3 bucket.
|
382
|
+
Access key ID to access the Amazon S3 bucket.
|
377
383
|
"""
|
378
384
|
return pulumi.get(self, "access_key_id")
|
379
385
|
|
@@ -386,7 +392,7 @@ class GetConnectionResult:
|
|
386
392
|
@pulumi.getter(name="accountKeySecretId")
|
387
393
|
def account_key_secret_id(self) -> builtins.str:
|
388
394
|
"""
|
389
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
395
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored.
|
390
396
|
"""
|
391
397
|
return pulumi.get(self, "account_key_secret_id")
|
392
398
|
|
@@ -443,6 +449,14 @@ class GetConnectionResult:
|
|
443
449
|
"""
|
444
450
|
return pulumi.get(self, "bootstrap_servers")
|
445
451
|
|
452
|
+
@property
|
453
|
+
@pulumi.getter
|
454
|
+
def catalogs(self) -> Sequence['outputs.GetConnectionCatalogResult']:
|
455
|
+
"""
|
456
|
+
Represents the catalog of given type used in an Iceberg connection.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "catalogs")
|
459
|
+
|
446
460
|
@property
|
447
461
|
@pulumi.getter(name="clientId")
|
448
462
|
def client_id(self) -> builtins.str:
|
@@ -525,6 +539,9 @@ class GetConnectionResult:
|
|
525
539
|
@property
|
526
540
|
@pulumi.getter(name="coreSiteXml")
|
527
541
|
def core_site_xml(self) -> builtins.str:
|
542
|
+
"""
|
543
|
+
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.
|
544
|
+
"""
|
528
545
|
return pulumi.get(self, "core_site_xml")
|
529
546
|
|
530
547
|
@property
|
@@ -595,13 +612,16 @@ class GetConnectionResult:
|
|
595
612
|
@pulumi.getter
|
596
613
|
def endpoint(self) -> builtins.str:
|
597
614
|
"""
|
598
|
-
|
615
|
+
The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
599
616
|
"""
|
600
617
|
return pulumi.get(self, "endpoint")
|
601
618
|
|
602
619
|
@property
|
603
620
|
@pulumi.getter
|
604
621
|
def fingerprint(self) -> builtins.str:
|
622
|
+
"""
|
623
|
+
Fingerprint required by TLS security protocol. Eg.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
624
|
+
"""
|
605
625
|
return pulumi.get(self, "fingerprint")
|
606
626
|
|
607
627
|
@property
|
@@ -813,6 +833,9 @@ class GetConnectionResult:
|
|
813
833
|
@property
|
814
834
|
@pulumi.getter(name="publicKeyFingerprint")
|
815
835
|
def public_key_fingerprint(self) -> builtins.str:
|
836
|
+
"""
|
837
|
+
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
|
838
|
+
"""
|
816
839
|
return pulumi.get(self, "public_key_fingerprint")
|
817
840
|
|
818
841
|
@property
|
@@ -827,7 +850,7 @@ class GetConnectionResult:
|
|
827
850
|
@pulumi.getter
|
828
851
|
def region(self) -> builtins.str:
|
829
852
|
"""
|
830
|
-
The
|
853
|
+
The AMAZON region where the S3 bucket is hosted. e.g.: 'us-east-2'
|
831
854
|
"""
|
832
855
|
return pulumi.get(self, "region")
|
833
856
|
|
@@ -861,7 +884,7 @@ class GetConnectionResult:
|
|
861
884
|
@pulumi.getter(name="secretAccessKeySecretId")
|
862
885
|
def secret_access_key_secret_id(self) -> builtins.str:
|
863
886
|
"""
|
864
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the
|
887
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored.
|
865
888
|
"""
|
866
889
|
return pulumi.get(self, "secret_access_key_secret_id")
|
867
890
|
|
@@ -870,8 +893,8 @@ class GetConnectionResult:
|
|
870
893
|
def security_protocol(self) -> builtins.str:
|
871
894
|
"""
|
872
895
|
Security Protocol to be provided for the following connection types:
|
873
|
-
* ELASTICSEARCH, KAFKA, MICROSOFT_SQLSERVER, MYSQL, POSTGRESQL, REDIS
|
874
|
-
* JAVA_MESSAGE_SERVICE - If not provided, default is
|
896
|
+
* DB2, ELASTICSEARCH, KAFKA, MICROSOFT_SQLSERVER, MYSQL, POSTGRESQL, REDIS
|
897
|
+
* JAVA_MESSAGE_SERVICE - If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
|
875
898
|
"""
|
876
899
|
return pulumi.get(self, "security_protocol")
|
877
900
|
|
@@ -893,7 +916,7 @@ class GetConnectionResult:
|
|
893
916
|
@pulumi.getter(name="serviceAccountKeyFileSecretId")
|
894
917
|
def service_account_key_file_secret_id(self) -> builtins.str:
|
895
918
|
"""
|
896
|
-
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
|
919
|
+
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.
|
897
920
|
"""
|
898
921
|
return pulumi.get(self, "service_account_key_file_secret_id")
|
899
922
|
|
@@ -933,13 +956,16 @@ class GetConnectionResult:
|
|
933
956
|
@pulumi.getter(name="sslCa")
|
934
957
|
def ssl_ca(self) -> builtins.str:
|
935
958
|
"""
|
936
|
-
Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
|
959
|
+
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.
|
937
960
|
"""
|
938
961
|
return pulumi.get(self, "ssl_ca")
|
939
962
|
|
940
963
|
@property
|
941
964
|
@pulumi.getter(name="sslCert")
|
942
965
|
def ssl_cert(self) -> builtins.str:
|
966
|
+
"""
|
967
|
+
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.
|
968
|
+
"""
|
943
969
|
return pulumi.get(self, "ssl_cert")
|
944
970
|
|
945
971
|
@property
|
@@ -971,6 +997,9 @@ class GetConnectionResult:
|
|
971
997
|
@property
|
972
998
|
@pulumi.getter(name="sslCrl")
|
973
999
|
def ssl_crl(self) -> builtins.str:
|
1000
|
+
"""
|
1001
|
+
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.
|
1002
|
+
"""
|
974
1003
|
return pulumi.get(self, "ssl_crl")
|
975
1004
|
|
976
1005
|
@property
|
@@ -1011,6 +1040,9 @@ class GetConnectionResult:
|
|
1011
1040
|
@property
|
1012
1041
|
@pulumi.getter(name="sslServerCertificate")
|
1013
1042
|
def ssl_server_certificate(self) -> builtins.str:
|
1043
|
+
"""
|
1044
|
+
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.
|
1045
|
+
"""
|
1014
1046
|
return pulumi.get(self, "ssl_server_certificate")
|
1015
1047
|
|
1016
1048
|
@property
|
@@ -1029,6 +1061,14 @@ class GetConnectionResult:
|
|
1029
1061
|
"""
|
1030
1062
|
return pulumi.get(self, "storage_credential_name")
|
1031
1063
|
|
1064
|
+
@property
|
1065
|
+
@pulumi.getter
|
1066
|
+
def storages(self) -> Sequence['outputs.GetConnectionStorageResult']:
|
1067
|
+
"""
|
1068
|
+
Represents the storage of given type used in an Iceberg connection.
|
1069
|
+
"""
|
1070
|
+
return pulumi.get(self, "storages")
|
1071
|
+
|
1032
1072
|
@property
|
1033
1073
|
@pulumi.getter(name="streamPoolId")
|
1034
1074
|
def stream_pool_id(self) -> builtins.str:
|
@@ -1096,6 +1136,9 @@ class GetConnectionResult:
|
|
1096
1136
|
@property
|
1097
1137
|
@pulumi.getter(name="tlsCaFile")
|
1098
1138
|
def tls_ca_file(self) -> builtins.str:
|
1139
|
+
"""
|
1140
|
+
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.
|
1141
|
+
"""
|
1099
1142
|
return pulumi.get(self, "tls_ca_file")
|
1100
1143
|
|
1101
1144
|
@property
|
@@ -1217,6 +1260,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
1217
1260
|
authentication_type=self.authentication_type,
|
1218
1261
|
azure_tenant_id=self.azure_tenant_id,
|
1219
1262
|
bootstrap_servers=self.bootstrap_servers,
|
1263
|
+
catalogs=self.catalogs,
|
1220
1264
|
client_id=self.client_id,
|
1221
1265
|
client_secret=self.client_secret,
|
1222
1266
|
client_secret_secret_id=self.client_secret_secret_id,
|
@@ -1297,6 +1341,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
|
|
1297
1341
|
ssl_server_certificate=self.ssl_server_certificate,
|
1298
1342
|
state=self.state,
|
1299
1343
|
storage_credential_name=self.storage_credential_name,
|
1344
|
+
storages=self.storages,
|
1300
1345
|
stream_pool_id=self.stream_pool_id,
|
1301
1346
|
subnet_id=self.subnet_id,
|
1302
1347
|
system_tags=self.system_tags,
|
@@ -1330,15 +1375,6 @@ def get_connection(connection_id: Optional[builtins.str] = None,
|
|
1330
1375
|
|
1331
1376
|
Retrieves a Connection.
|
1332
1377
|
|
1333
|
-
## Example Usage
|
1334
|
-
|
1335
|
-
```python
|
1336
|
-
import pulumi
|
1337
|
-
import pulumi_oci as oci
|
1338
|
-
|
1339
|
-
test_connection = oci.GoldenGate.get_connection(connection_id=test_connection_oci_golden_gate_connection["id"])
|
1340
|
-
```
|
1341
|
-
|
1342
1378
|
|
1343
1379
|
:param builtins.str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Connection.
|
1344
1380
|
"""
|
@@ -1357,6 +1393,7 @@ def get_connection(connection_id: Optional[builtins.str] = None,
|
|
1357
1393
|
authentication_type=pulumi.get(__ret__, 'authentication_type'),
|
1358
1394
|
azure_tenant_id=pulumi.get(__ret__, 'azure_tenant_id'),
|
1359
1395
|
bootstrap_servers=pulumi.get(__ret__, 'bootstrap_servers'),
|
1396
|
+
catalogs=pulumi.get(__ret__, 'catalogs'),
|
1360
1397
|
client_id=pulumi.get(__ret__, 'client_id'),
|
1361
1398
|
client_secret=pulumi.get(__ret__, 'client_secret'),
|
1362
1399
|
client_secret_secret_id=pulumi.get(__ret__, 'client_secret_secret_id'),
|
@@ -1437,6 +1474,7 @@ def get_connection(connection_id: Optional[builtins.str] = None,
|
|
1437
1474
|
ssl_server_certificate=pulumi.get(__ret__, 'ssl_server_certificate'),
|
1438
1475
|
state=pulumi.get(__ret__, 'state'),
|
1439
1476
|
storage_credential_name=pulumi.get(__ret__, 'storage_credential_name'),
|
1477
|
+
storages=pulumi.get(__ret__, 'storages'),
|
1440
1478
|
stream_pool_id=pulumi.get(__ret__, 'stream_pool_id'),
|
1441
1479
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
1442
1480
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
@@ -1468,15 +1506,6 @@ def get_connection_output(connection_id: Optional[pulumi.Input[builtins.str]] =
|
|
1468
1506
|
|
1469
1507
|
Retrieves a Connection.
|
1470
1508
|
|
1471
|
-
## Example Usage
|
1472
|
-
|
1473
|
-
```python
|
1474
|
-
import pulumi
|
1475
|
-
import pulumi_oci as oci
|
1476
|
-
|
1477
|
-
test_connection = oci.GoldenGate.get_connection(connection_id=test_connection_oci_golden_gate_connection["id"])
|
1478
|
-
```
|
1479
|
-
|
1480
1509
|
|
1481
1510
|
:param builtins.str connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Connection.
|
1482
1511
|
"""
|
@@ -1494,6 +1523,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[builtins.str]] =
|
|
1494
1523
|
authentication_type=pulumi.get(__response__, 'authentication_type'),
|
1495
1524
|
azure_tenant_id=pulumi.get(__response__, 'azure_tenant_id'),
|
1496
1525
|
bootstrap_servers=pulumi.get(__response__, 'bootstrap_servers'),
|
1526
|
+
catalogs=pulumi.get(__response__, 'catalogs'),
|
1497
1527
|
client_id=pulumi.get(__response__, 'client_id'),
|
1498
1528
|
client_secret=pulumi.get(__response__, 'client_secret'),
|
1499
1529
|
client_secret_secret_id=pulumi.get(__response__, 'client_secret_secret_id'),
|
@@ -1574,6 +1604,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[builtins.str]] =
|
|
1574
1604
|
ssl_server_certificate=pulumi.get(__response__, 'ssl_server_certificate'),
|
1575
1605
|
state=pulumi.get(__response__, 'state'),
|
1576
1606
|
storage_credential_name=pulumi.get(__response__, 'storage_credential_name'),
|
1607
|
+
storages=pulumi.get(__response__, 'storages'),
|
1577
1608
|
stream_pool_id=pulumi.get(__response__, 'stream_pool_id'),
|
1578
1609
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
1579
1610
|
system_tags=pulumi.get(__response__, 'system_tags'),
|