oci 2.151.0__py3-none-any.whl → 2.152.1__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.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/__init__.py +20 -0
- oci/addons/adk/__init__.py +13 -0
- oci/addons/adk/agent.py +852 -0
- oci/addons/adk/agent_client.py +682 -0
- oci/addons/adk/agent_error.py +36 -0
- oci/addons/adk/auth/__init__.py +5 -0
- oci/addons/adk/auth/auth_provider.py +28 -0
- oci/addons/adk/auth/factory.py +78 -0
- oci/addons/adk/auth/oci/__init__.py +5 -0
- oci/addons/adk/auth/oci/instance_principal.py +53 -0
- oci/addons/adk/auth/oci/resource_principal.py +53 -0
- oci/addons/adk/auth/oci/session.py +91 -0
- oci/addons/adk/auth/oci/user_principal.py +64 -0
- oci/addons/adk/constants.py +17 -0
- oci/addons/adk/logger.py +163 -0
- oci/addons/adk/run/__init__.py +5 -0
- oci/addons/adk/run/response.py +56 -0
- oci/addons/adk/run/types.py +32 -0
- oci/addons/adk/tool/__init__.py +13 -0
- oci/addons/adk/tool/function_tool.py +334 -0
- oci/addons/adk/tool/prebuilt/__init__.py +8 -0
- oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
- oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
- oci/addons/adk/tool/tool.py +37 -0
- oci/addons/adk/tool/toolkit.py +189 -0
- oci/addons/adk/tool/utils.py +120 -0
- oci/addons/adk/util.py +325 -0
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/attributes_client.py +8 -8
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +84 -84
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +117 -117
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +745 -469
- oci/database/models/__init__.py +2 -0
- oci/database/models/autonomous_db_version_summary.py +31 -0
- oci/database/models/backup.py +4 -2
- oci/database/models/backup_summary.py +4 -2
- oci/database/models/create_external_backup_job_details.py +4 -4
- oci/database/models/db_system.py +4 -2
- oci/database/models/db_system_summary.py +4 -2
- oci/database/models/db_system_upgrade_summary.py +152 -0
- oci/database/models/external_container_database.py +4 -2
- oci/database/models/external_container_database_summary.py +4 -2
- oci/database/models/external_database_base.py +4 -2
- oci/database/models/external_non_container_database.py +4 -2
- oci/database/models/external_non_container_database_summary.py +4 -2
- oci/database/models/external_pluggable_database.py +4 -2
- oci/database/models/external_pluggable_database_summary.py +4 -2
- oci/database_management/db_management_client.py +356 -230
- oci/database_management/db_management_client_composite_operations.py +44 -0
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -247
- oci/database_management/models/__init__.py +0 -4
- oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
- oci/database_management/models/disable_database_management_feature_details.py +33 -2
- oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
- oci/database_management/models/discovered_external_database.py +64 -2
- oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
- oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
- oci/database_management/models/managed_database.py +2 -4
- oci/database_management/models/managed_database_summary.py +2 -4
- oci/database_management/models/modify_database_management_feature_details.py +1 -1
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +42 -42
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/__init__.py +20 -0
- oci/distributed_database/distributed_autonomous_db_service_client.py +2315 -0
- oci/distributed_database/distributed_autonomous_db_service_client_composite_operations.py +605 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +944 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client_composite_operations.py +238 -0
- oci/distributed_database/distributed_db_service_client.py +2435 -0
- oci/distributed_database/distributed_db_service_client_composite_operations.py +647 -0
- oci/distributed_database/distributed_db_work_request_service_client.py +654 -0
- oci/distributed_database/distributed_db_work_request_service_client_composite_operations.py +26 -0
- oci/distributed_database/models/__init__.py +158 -0
- oci/distributed_database/models/add_distributed_autonomous_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/add_distributed_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/catalog_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/catalog_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/change_distributed_autonomous_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_private_endpoint_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_db_backup_config_details.py +66 -0
- oci/distributed_database/models/configure_distributed_autonomous_database_gsms_details.py +103 -0
- oci/distributed_database/models/configure_distributed_database_gsms_details.py +103 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_with_dedicated_infra_details.py +342 -0
- oci/distributed_database/models/create_distributed_autonomous_database_details.py +799 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_with_dedicated_infra_details.py +377 -0
- oci/distributed_database/models/create_distributed_database_catalog_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_catalog_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/create_distributed_database_details.py +810 -0
- oci/distributed_database/models/create_distributed_database_private_endpoint_details.py +260 -0
- oci/distributed_database/models/create_distributed_database_shard_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_shard_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/distributed_autonomous_database.py +1143 -0
- oci/distributed_database/models/distributed_autonomous_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog_with_dedicated_infra.py +559 -0
- oci/distributed_database/models/distributed_autonomous_database_collection.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_connection_string.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_shard.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_shard_with_dedicated_infra.py +592 -0
- oci/distributed_database/models/distributed_autonomous_database_summary.py +935 -0
- oci/distributed_database/models/distributed_autonomous_db_metadata.py +70 -0
- oci/distributed_database/models/distributed_database.py +1154 -0
- oci/distributed_database/models/distributed_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_database_catalog.py +192 -0
- oci/distributed_database/models/distributed_database_catalog_with_exadb_xs.py +466 -0
- oci/distributed_database/models/distributed_database_collection.py +70 -0
- oci/distributed_database/models/distributed_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_database_private_endpoint.py +639 -0
- oci/distributed_database/models/distributed_database_private_endpoint_collection.py +70 -0
- oci/distributed_database/models/distributed_database_private_endpoint_summary.py +479 -0
- oci/distributed_database/models/distributed_database_shard.py +192 -0
- oci/distributed_database/models/distributed_database_shard_with_exadb_xs.py +499 -0
- oci/distributed_database/models/distributed_database_summary.py +904 -0
- oci/distributed_database/models/distributed_db_backup_config.py +536 -0
- oci/distributed_database/models/distributed_db_backup_destination.py +362 -0
- oci/distributed_database/models/distributed_db_connection_string.py +70 -0
- oci/distributed_database/models/distributed_db_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_db_metadata.py +70 -0
- oci/distributed_database/models/generate_distributed_autonomous_database_wallet_details.py +70 -0
- oci/distributed_database/models/generate_distributed_database_wallet_details.py +70 -0
- oci/distributed_database/models/patch_distributed_autonomous_database_details.py +73 -0
- oci/distributed_database/models/patch_distributed_database_details.py +73 -0
- oci/distributed_database/models/patch_insert_instruction.py +87 -0
- oci/distributed_database/models/patch_instruction.py +154 -0
- oci/distributed_database/models/patch_merge_instruction.py +95 -0
- oci/distributed_database/models/patch_remove_instruction.py +57 -0
- oci/distributed_database/models/shard_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/shard_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/update_distributed_autonomous_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_private_endpoint_details.py +198 -0
- oci/distributed_database/models/upload_distributed_autonomous_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/upload_distributed_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/work_request.py +516 -0
- oci/distributed_database/models/work_request_error.py +134 -0
- oci/distributed_database/models/work_request_error_collection.py +70 -0
- oci/distributed_database/models/work_request_log_entry.py +101 -0
- oci/distributed_database/models/work_request_log_entry_collection.py +70 -0
- oci/distributed_database/models/work_request_resource.py +232 -0
- oci/distributed_database/models/work_request_summary.py +516 -0
- oci/distributed_database/models/work_request_summary_collection.py +70 -0
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
- oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +58 -58
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/__init__.py +14 -0
- oci/model_deployment/model_deployment_client.py +331 -0
- oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
- oci/model_deployment/models/__init__.py +14 -0
- oci/model_deployment/models/inference_result.py +70 -0
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +7 -7
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/create_db_system_details.py +31 -0
- oci/mysql/models/db_system.py +31 -0
- oci/mysql/models/db_system_snapshot.py +31 -0
- oci/mysql/models/replica.py +31 -0
- oci/mysql/models/replica_overrides.py +33 -2
- oci/mysql/models/replica_summary.py +31 -0
- oci/mysql/models/update_db_system_details.py +31 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +86 -86
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/models/__init__.py +2 -0
- oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
- oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/models/opensearch_cluster.py +291 -0
- oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
- oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
- oci/opensearch/models/shapes_details.py +70 -0
- oci/opensearch/models/update_cluster_specs_details.py +186 -0
- oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +87 -16
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/redis_cluster_client.py +12 -12
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +48 -48
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/METADATA +6 -1
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/RECORD +428 -313
- oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
- oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/LICENSE.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/WHEEL +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/top_level.txt +0 -0
@@ -160,7 +160,7 @@ class DbManagementClient(object):
|
|
160
160
|
:rtype: :class:`~oci.response.Response`
|
161
161
|
|
162
162
|
:example:
|
163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
|
164
164
|
"""
|
165
165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
166
166
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -276,7 +276,7 @@ class DbManagementClient(object):
|
|
276
276
|
:rtype: :class:`~oci.response.Response`
|
277
277
|
|
278
278
|
:example:
|
279
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
279
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
|
280
280
|
"""
|
281
281
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
282
282
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -404,7 +404,7 @@ class DbManagementClient(object):
|
|
404
404
|
:rtype: :class:`~oci.response.Response`
|
405
405
|
|
406
406
|
:example:
|
407
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
407
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
|
408
408
|
"""
|
409
409
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
410
410
|
required_arguments = ['managedDatabaseId', 'timeStart', 'timeEnd']
|
@@ -556,7 +556,7 @@ class DbManagementClient(object):
|
|
556
556
|
:rtype: :class:`~oci.response.Response`
|
557
557
|
|
558
558
|
:example:
|
559
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
559
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
|
560
560
|
"""
|
561
561
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
562
562
|
required_arguments = ['managedDatabaseId']
|
@@ -676,7 +676,7 @@ class DbManagementClient(object):
|
|
676
676
|
:rtype: :class:`~oci.response.Response`
|
677
677
|
|
678
678
|
:example:
|
679
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
679
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
|
680
680
|
"""
|
681
681
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
682
682
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -798,7 +798,7 @@ class DbManagementClient(object):
|
|
798
798
|
:rtype: :class:`~oci.response.Response`
|
799
799
|
|
800
800
|
:example:
|
801
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
801
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
|
802
802
|
"""
|
803
803
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
804
804
|
required_arguments = ['externalDbSystemId']
|
@@ -920,7 +920,7 @@ class DbManagementClient(object):
|
|
920
920
|
:rtype: :class:`~oci.response.Response`
|
921
921
|
|
922
922
|
:example:
|
923
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
923
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
|
924
924
|
"""
|
925
925
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
926
926
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -1042,7 +1042,7 @@ class DbManagementClient(object):
|
|
1042
1042
|
:rtype: :class:`~oci.response.Response`
|
1043
1043
|
|
1044
1044
|
:example:
|
1045
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1045
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
|
1046
1046
|
"""
|
1047
1047
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1048
1048
|
required_arguments = ['jobId']
|
@@ -1166,7 +1166,7 @@ class DbManagementClient(object):
|
|
1166
1166
|
:rtype: :class:`~oci.response.Response`
|
1167
1167
|
|
1168
1168
|
:example:
|
1169
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1169
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
|
1170
1170
|
"""
|
1171
1171
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1172
1172
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -1290,7 +1290,7 @@ class DbManagementClient(object):
|
|
1290
1290
|
:rtype: :class:`~oci.response.Response`
|
1291
1291
|
|
1292
1292
|
:example:
|
1293
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1293
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
|
1294
1294
|
"""
|
1295
1295
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1296
1296
|
required_arguments = ['namedCredentialId']
|
@@ -1400,7 +1400,7 @@ class DbManagementClient(object):
|
|
1400
1400
|
:rtype: :class:`~oci.response.Response`
|
1401
1401
|
|
1402
1402
|
:example:
|
1403
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1403
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
|
1404
1404
|
"""
|
1405
1405
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1406
1406
|
required_arguments = ['managedDatabaseId']
|
@@ -1502,7 +1502,7 @@ class DbManagementClient(object):
|
|
1502
1502
|
:rtype: :class:`~oci.response.Response`
|
1503
1503
|
|
1504
1504
|
:example:
|
1505
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1505
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
|
1506
1506
|
"""
|
1507
1507
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1508
1508
|
required_arguments = ['managedDatabaseId']
|
@@ -1603,7 +1603,7 @@ class DbManagementClient(object):
|
|
1603
1603
|
:rtype: :class:`~oci.response.Response`
|
1604
1604
|
|
1605
1605
|
:example:
|
1606
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1606
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
|
1607
1607
|
"""
|
1608
1608
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1609
1609
|
required_arguments = ['managedDatabaseId']
|
@@ -1716,7 +1716,7 @@ class DbManagementClient(object):
|
|
1716
1716
|
:rtype: :class:`~oci.response.Response`
|
1717
1717
|
|
1718
1718
|
:example:
|
1719
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1719
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
|
1720
1720
|
"""
|
1721
1721
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1722
1722
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -1835,7 +1835,7 @@ class DbManagementClient(object):
|
|
1835
1835
|
:rtype: :class:`~oci.response.Response`
|
1836
1836
|
|
1837
1837
|
:example:
|
1838
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1838
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
|
1839
1839
|
"""
|
1840
1840
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1841
1841
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -1953,7 +1953,7 @@ class DbManagementClient(object):
|
|
1953
1953
|
:rtype: :class:`~oci.response.Response`
|
1954
1954
|
|
1955
1955
|
:example:
|
1956
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1956
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/check_external_my_sql_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_my_sql_database_connector_connection_status API.
|
1957
1957
|
"""
|
1958
1958
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1959
1959
|
required_arguments = ['externalMySqlDatabaseConnectorId']
|
@@ -2060,7 +2060,7 @@ class DbManagementClient(object):
|
|
2060
2060
|
:rtype: :class:`~oci.response.Response`
|
2061
2061
|
|
2062
2062
|
:example:
|
2063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
|
2064
2064
|
"""
|
2065
2065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2066
2066
|
required_arguments = ['managedDatabaseId']
|
@@ -2163,7 +2163,7 @@ class DbManagementClient(object):
|
|
2163
2163
|
:rtype: :class:`~oci.response.Response`
|
2164
2164
|
|
2165
2165
|
:example:
|
2166
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2166
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
|
2167
2167
|
"""
|
2168
2168
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2169
2169
|
required_arguments = ['managedDatabaseId']
|
@@ -2266,7 +2266,7 @@ class DbManagementClient(object):
|
|
2266
2266
|
:rtype: :class:`~oci.response.Response`
|
2267
2267
|
|
2268
2268
|
:example:
|
2269
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2269
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
|
2270
2270
|
"""
|
2271
2271
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2272
2272
|
required_arguments = []
|
@@ -2362,7 +2362,7 @@ class DbManagementClient(object):
|
|
2362
2362
|
:rtype: :class:`~oci.response.Response`
|
2363
2363
|
|
2364
2364
|
:example:
|
2365
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2365
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
|
2366
2366
|
"""
|
2367
2367
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2368
2368
|
required_arguments = []
|
@@ -2460,7 +2460,7 @@ class DbManagementClient(object):
|
|
2460
2460
|
:rtype: :class:`~oci.response.Response`
|
2461
2461
|
|
2462
2462
|
:example:
|
2463
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2463
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
|
2464
2464
|
"""
|
2465
2465
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2466
2466
|
required_arguments = []
|
@@ -2558,7 +2558,7 @@ class DbManagementClient(object):
|
|
2558
2558
|
:rtype: :class:`~oci.response.Response`
|
2559
2559
|
|
2560
2560
|
:example:
|
2561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
|
2562
2562
|
"""
|
2563
2563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2564
2564
|
required_arguments = []
|
@@ -2661,7 +2661,7 @@ class DbManagementClient(object):
|
|
2661
2661
|
:rtype: :class:`~oci.response.Response`
|
2662
2662
|
|
2663
2663
|
:example:
|
2664
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2664
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
|
2665
2665
|
"""
|
2666
2666
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2667
2667
|
required_arguments = []
|
@@ -2759,7 +2759,7 @@ class DbManagementClient(object):
|
|
2759
2759
|
:rtype: :class:`~oci.response.Response`
|
2760
2760
|
|
2761
2761
|
:example:
|
2762
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2762
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
|
2763
2763
|
"""
|
2764
2764
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2765
2765
|
required_arguments = []
|
@@ -2857,7 +2857,7 @@ class DbManagementClient(object):
|
|
2857
2857
|
:rtype: :class:`~oci.response.Response`
|
2858
2858
|
|
2859
2859
|
:example:
|
2860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2860
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_my_sql_database.py.html>`__ to see an example of how to use create_external_my_sql_database API.
|
2861
2861
|
"""
|
2862
2862
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2863
2863
|
required_arguments = []
|
@@ -2958,7 +2958,7 @@ class DbManagementClient(object):
|
|
2958
2958
|
:rtype: :class:`~oci.response.Response`
|
2959
2959
|
|
2960
2960
|
:example:
|
2961
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2961
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_external_my_sql_database_connector.py.html>`__ to see an example of how to use create_external_my_sql_database_connector API.
|
2962
2962
|
"""
|
2963
2963
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2964
2964
|
required_arguments = ['isTestConnectionParam']
|
@@ -3065,7 +3065,7 @@ class DbManagementClient(object):
|
|
3065
3065
|
:rtype: :class:`~oci.response.Response`
|
3066
3066
|
|
3067
3067
|
:example:
|
3068
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3068
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
|
3069
3069
|
"""
|
3070
3070
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3071
3071
|
required_arguments = []
|
@@ -3162,7 +3162,7 @@ class DbManagementClient(object):
|
|
3162
3162
|
:rtype: :class:`~oci.response.Response`
|
3163
3163
|
|
3164
3164
|
:example:
|
3165
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3165
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
|
3166
3166
|
"""
|
3167
3167
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3168
3168
|
required_arguments = []
|
@@ -3258,7 +3258,7 @@ class DbManagementClient(object):
|
|
3258
3258
|
:rtype: :class:`~oci.response.Response`
|
3259
3259
|
|
3260
3260
|
:example:
|
3261
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3261
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
|
3262
3262
|
"""
|
3263
3263
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3264
3264
|
required_arguments = []
|
@@ -3359,7 +3359,7 @@ class DbManagementClient(object):
|
|
3359
3359
|
:rtype: :class:`~oci.response.Response`
|
3360
3360
|
|
3361
3361
|
:example:
|
3362
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3362
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
|
3363
3363
|
"""
|
3364
3364
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3365
3365
|
required_arguments = ['managedDatabaseId']
|
@@ -3469,7 +3469,7 @@ class DbManagementClient(object):
|
|
3469
3469
|
:rtype: :class:`~oci.response.Response`
|
3470
3470
|
|
3471
3471
|
:example:
|
3472
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3472
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
|
3473
3473
|
"""
|
3474
3474
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3475
3475
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -3574,7 +3574,7 @@ class DbManagementClient(object):
|
|
3574
3574
|
:rtype: :class:`~oci.response.Response`
|
3575
3575
|
|
3576
3576
|
:example:
|
3577
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3577
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
|
3578
3578
|
"""
|
3579
3579
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3580
3580
|
required_arguments = ['externalDbSystemId']
|
@@ -3679,7 +3679,7 @@ class DbManagementClient(object):
|
|
3679
3679
|
:rtype: :class:`~oci.response.Response`
|
3680
3680
|
|
3681
3681
|
:example:
|
3682
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
|
3683
3683
|
"""
|
3684
3684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3685
3685
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -3784,7 +3784,7 @@ class DbManagementClient(object):
|
|
3784
3784
|
:rtype: :class:`~oci.response.Response`
|
3785
3785
|
|
3786
3786
|
:example:
|
3787
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3787
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
|
3788
3788
|
"""
|
3789
3789
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3790
3790
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -3889,7 +3889,7 @@ class DbManagementClient(object):
|
|
3889
3889
|
:rtype: :class:`~oci.response.Response`
|
3890
3890
|
|
3891
3891
|
:example:
|
3892
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3892
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
|
3893
3893
|
"""
|
3894
3894
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3895
3895
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -3994,7 +3994,7 @@ class DbManagementClient(object):
|
|
3994
3994
|
:rtype: :class:`~oci.response.Response`
|
3995
3995
|
|
3996
3996
|
:example:
|
3997
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3997
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
|
3998
3998
|
"""
|
3999
3999
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4000
4000
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -4097,7 +4097,7 @@ class DbManagementClient(object):
|
|
4097
4097
|
:rtype: :class:`~oci.response.Response`
|
4098
4098
|
|
4099
4099
|
:example:
|
4100
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4100
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_my_sql_database.py.html>`__ to see an example of how to use delete_external_my_sql_database API.
|
4101
4101
|
"""
|
4102
4102
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4103
4103
|
required_arguments = ['externalMySqlDatabaseId']
|
@@ -4200,7 +4200,7 @@ class DbManagementClient(object):
|
|
4200
4200
|
:rtype: :class:`~oci.response.Response`
|
4201
4201
|
|
4202
4202
|
:example:
|
4203
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4203
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_external_my_sql_database_connector.py.html>`__ to see an example of how to use delete_external_my_sql_database_connector API.
|
4204
4204
|
"""
|
4205
4205
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4206
4206
|
required_arguments = ['externalMySqlDatabaseConnectorId']
|
@@ -4303,7 +4303,7 @@ class DbManagementClient(object):
|
|
4303
4303
|
:rtype: :class:`~oci.response.Response`
|
4304
4304
|
|
4305
4305
|
:example:
|
4306
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4306
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
|
4307
4307
|
"""
|
4308
4308
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4309
4309
|
required_arguments = ['jobId']
|
@@ -4409,7 +4409,7 @@ class DbManagementClient(object):
|
|
4409
4409
|
:rtype: :class:`~oci.response.Response`
|
4410
4410
|
|
4411
4411
|
:example:
|
4412
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4412
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
|
4413
4413
|
"""
|
4414
4414
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4415
4415
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -4514,7 +4514,7 @@ class DbManagementClient(object):
|
|
4514
4514
|
:rtype: :class:`~oci.response.Response`
|
4515
4515
|
|
4516
4516
|
:example:
|
4517
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4517
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
|
4518
4518
|
"""
|
4519
4519
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4520
4520
|
required_arguments = ['namedCredentialId']
|
@@ -4615,7 +4615,7 @@ class DbManagementClient(object):
|
|
4615
4615
|
:rtype: :class:`~oci.response.Response`
|
4616
4616
|
|
4617
4617
|
:example:
|
4618
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
|
4619
4619
|
"""
|
4620
4620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4621
4621
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -4715,7 +4715,7 @@ class DbManagementClient(object):
|
|
4715
4715
|
:rtype: :class:`~oci.response.Response`
|
4716
4716
|
|
4717
4717
|
:example:
|
4718
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4718
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
|
4719
4719
|
"""
|
4720
4720
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4721
4721
|
required_arguments = ['managedDatabaseId']
|
@@ -4819,7 +4819,7 @@ class DbManagementClient(object):
|
|
4819
4819
|
:rtype: :class:`~oci.response.Response`
|
4820
4820
|
|
4821
4821
|
:example:
|
4822
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4822
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
|
4823
4823
|
"""
|
4824
4824
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4825
4825
|
required_arguments = ['managedDatabaseId']
|
@@ -4934,7 +4934,7 @@ class DbManagementClient(object):
|
|
4934
4934
|
:rtype: :class:`~oci.response.Response`
|
4935
4935
|
|
4936
4936
|
:example:
|
4937
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4937
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
|
4938
4938
|
"""
|
4939
4939
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4940
4940
|
required_arguments = ['autonomousDatabaseId']
|
@@ -5056,7 +5056,7 @@ class DbManagementClient(object):
|
|
5056
5056
|
:rtype: :class:`~oci.response.Response`
|
5057
5057
|
|
5058
5058
|
:example:
|
5059
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5059
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
|
5060
5060
|
"""
|
5061
5061
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5062
5062
|
required_arguments = ['databaseId']
|
@@ -5178,7 +5178,7 @@ class DbManagementClient(object):
|
|
5178
5178
|
:rtype: :class:`~oci.response.Response`
|
5179
5179
|
|
5180
5180
|
:example:
|
5181
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
|
5182
5182
|
"""
|
5183
5183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5184
5184
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -5298,7 +5298,7 @@ class DbManagementClient(object):
|
|
5298
5298
|
:rtype: :class:`~oci.response.Response`
|
5299
5299
|
|
5300
5300
|
:example:
|
5301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
|
5302
5302
|
"""
|
5303
5303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5304
5304
|
required_arguments = ['externalDbSystemId']
|
@@ -5416,7 +5416,7 @@ class DbManagementClient(object):
|
|
5416
5416
|
:rtype: :class:`~oci.response.Response`
|
5417
5417
|
|
5418
5418
|
:example:
|
5419
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5419
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
|
5420
5420
|
"""
|
5421
5421
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5422
5422
|
required_arguments = ['externalDbSystemId']
|
@@ -5540,7 +5540,7 @@ class DbManagementClient(object):
|
|
5540
5540
|
:rtype: :class:`~oci.response.Response`
|
5541
5541
|
|
5542
5542
|
:example:
|
5543
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5543
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
|
5544
5544
|
"""
|
5545
5545
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5546
5546
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -5655,7 +5655,7 @@ class DbManagementClient(object):
|
|
5655
5655
|
:rtype: :class:`~oci.response.Response`
|
5656
5656
|
|
5657
5657
|
:example:
|
5658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_my_sql_database_management.py.html>`__ to see an example of how to use disable_external_my_sql_database_management API.
|
5659
5659
|
"""
|
5660
5660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5661
5661
|
required_arguments = ['externalMySqlDatabaseId']
|
@@ -5775,7 +5775,7 @@ class DbManagementClient(object):
|
|
5775
5775
|
:rtype: :class:`~oci.response.Response`
|
5776
5776
|
|
5777
5777
|
:example:
|
5778
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5778
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
|
5779
5779
|
"""
|
5780
5780
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5781
5781
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -5897,7 +5897,7 @@ class DbManagementClient(object):
|
|
5897
5897
|
:rtype: :class:`~oci.response.Response`
|
5898
5898
|
|
5899
5899
|
:example:
|
5900
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5900
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
|
5901
5901
|
"""
|
5902
5902
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5903
5903
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -6008,7 +6008,7 @@ class DbManagementClient(object):
|
|
6008
6008
|
:rtype: :class:`~oci.response.Response`
|
6009
6009
|
|
6010
6010
|
:example:
|
6011
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6011
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
|
6012
6012
|
"""
|
6013
6013
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6014
6014
|
required_arguments = ['managedDatabaseId']
|
@@ -6123,7 +6123,7 @@ class DbManagementClient(object):
|
|
6123
6123
|
:rtype: :class:`~oci.response.Response`
|
6124
6124
|
|
6125
6125
|
:example:
|
6126
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6126
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
|
6127
6127
|
"""
|
6128
6128
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6129
6129
|
required_arguments = ['pluggableDatabaseId']
|
@@ -6233,7 +6233,7 @@ class DbManagementClient(object):
|
|
6233
6233
|
:rtype: :class:`~oci.response.Response`
|
6234
6234
|
|
6235
6235
|
:example:
|
6236
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6236
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
|
6237
6237
|
"""
|
6238
6238
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6239
6239
|
required_arguments = ['managedDatabaseId']
|
@@ -6361,7 +6361,7 @@ class DbManagementClient(object):
|
|
6361
6361
|
:rtype: :class:`~oci.response.Response`
|
6362
6362
|
|
6363
6363
|
:example:
|
6364
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6364
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
|
6365
6365
|
"""
|
6366
6366
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6367
6367
|
required_arguments = []
|
@@ -6459,7 +6459,7 @@ class DbManagementClient(object):
|
|
6459
6459
|
:rtype: :class:`~oci.response.Response`
|
6460
6460
|
|
6461
6461
|
:example:
|
6462
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6462
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
|
6463
6463
|
"""
|
6464
6464
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6465
6465
|
required_arguments = ['managedDatabaseId']
|
@@ -6570,7 +6570,7 @@ class DbManagementClient(object):
|
|
6570
6570
|
:rtype: :class:`~oci.response.Response`
|
6571
6571
|
|
6572
6572
|
:example:
|
6573
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6573
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
|
6574
6574
|
"""
|
6575
6575
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6576
6576
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -6684,7 +6684,7 @@ class DbManagementClient(object):
|
|
6684
6684
|
:rtype: :class:`~oci.response.Response`
|
6685
6685
|
|
6686
6686
|
:example:
|
6687
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6687
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
|
6688
6688
|
"""
|
6689
6689
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6690
6690
|
required_arguments = ['managedDatabaseId']
|
@@ -6797,7 +6797,7 @@ class DbManagementClient(object):
|
|
6797
6797
|
:rtype: :class:`~oci.response.Response`
|
6798
6798
|
|
6799
6799
|
:example:
|
6800
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6800
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
|
6801
6801
|
"""
|
6802
6802
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6803
6803
|
required_arguments = ['managedDatabaseId']
|
@@ -6912,7 +6912,7 @@ class DbManagementClient(object):
|
|
6912
6912
|
:rtype: :class:`~oci.response.Response`
|
6913
6913
|
|
6914
6914
|
:example:
|
6915
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6915
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
|
6916
6916
|
"""
|
6917
6917
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6918
6918
|
required_arguments = ['autonomousDatabaseId']
|
@@ -7034,7 +7034,7 @@ class DbManagementClient(object):
|
|
7034
7034
|
:rtype: :class:`~oci.response.Response`
|
7035
7035
|
|
7036
7036
|
:example:
|
7037
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7037
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
|
7038
7038
|
"""
|
7039
7039
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7040
7040
|
required_arguments = ['databaseId']
|
@@ -7156,7 +7156,7 @@ class DbManagementClient(object):
|
|
7156
7156
|
:rtype: :class:`~oci.response.Response`
|
7157
7157
|
|
7158
7158
|
:example:
|
7159
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7159
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
|
7160
7160
|
"""
|
7161
7161
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7162
7162
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -7279,7 +7279,7 @@ class DbManagementClient(object):
|
|
7279
7279
|
:rtype: :class:`~oci.response.Response`
|
7280
7280
|
|
7281
7281
|
:example:
|
7282
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7282
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
|
7283
7283
|
"""
|
7284
7284
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7285
7285
|
required_arguments = ['externalDbSystemId']
|
@@ -7402,7 +7402,7 @@ class DbManagementClient(object):
|
|
7402
7402
|
:rtype: :class:`~oci.response.Response`
|
7403
7403
|
|
7404
7404
|
:example:
|
7405
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7405
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
|
7406
7406
|
"""
|
7407
7407
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7408
7408
|
required_arguments = ['externalDbSystemId']
|
@@ -7529,7 +7529,7 @@ class DbManagementClient(object):
|
|
7529
7529
|
:rtype: :class:`~oci.response.Response`
|
7530
7530
|
|
7531
7531
|
:example:
|
7532
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7532
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
|
7533
7533
|
"""
|
7534
7534
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7535
7535
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -7649,7 +7649,7 @@ class DbManagementClient(object):
|
|
7649
7649
|
:rtype: :class:`~oci.response.Response`
|
7650
7650
|
|
7651
7651
|
:example:
|
7652
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7652
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_my_sql_database_management.py.html>`__ to see an example of how to use enable_external_my_sql_database_management API.
|
7653
7653
|
"""
|
7654
7654
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7655
7655
|
required_arguments = ['externalMySqlDatabaseId']
|
@@ -7771,7 +7771,7 @@ class DbManagementClient(object):
|
|
7771
7771
|
:rtype: :class:`~oci.response.Response`
|
7772
7772
|
|
7773
7773
|
:example:
|
7774
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7774
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
|
7775
7775
|
"""
|
7776
7776
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7777
7777
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -7893,7 +7893,7 @@ class DbManagementClient(object):
|
|
7893
7893
|
:rtype: :class:`~oci.response.Response`
|
7894
7894
|
|
7895
7895
|
:example:
|
7896
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7896
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
|
7897
7897
|
"""
|
7898
7898
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7899
7899
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -8009,7 +8009,7 @@ class DbManagementClient(object):
|
|
8009
8009
|
:rtype: :class:`~oci.response.Response`
|
8010
8010
|
|
8011
8011
|
:example:
|
8012
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8012
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
|
8013
8013
|
"""
|
8014
8014
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8015
8015
|
required_arguments = ['managedDatabaseId']
|
@@ -8124,7 +8124,7 @@ class DbManagementClient(object):
|
|
8124
8124
|
:rtype: :class:`~oci.response.Response`
|
8125
8125
|
|
8126
8126
|
:example:
|
8127
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8127
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
|
8128
8128
|
"""
|
8129
8129
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8130
8130
|
required_arguments = ['pluggableDatabaseId']
|
@@ -8235,7 +8235,7 @@ class DbManagementClient(object):
|
|
8235
8235
|
:rtype: :class:`~oci.response.Response`
|
8236
8236
|
|
8237
8237
|
:example:
|
8238
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8238
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
|
8239
8239
|
"""
|
8240
8240
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8241
8241
|
required_arguments = ['managedDatabaseId']
|
@@ -8343,7 +8343,7 @@ class DbManagementClient(object):
|
|
8343
8343
|
:rtype: :class:`~oci.response.Response`
|
8344
8344
|
|
8345
8345
|
:example:
|
8346
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8346
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
|
8347
8347
|
"""
|
8348
8348
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8349
8349
|
required_arguments = ['managedDatabaseId']
|
@@ -8491,7 +8491,7 @@ class DbManagementClient(object):
|
|
8491
8491
|
:rtype: :class:`~oci.response.Response`
|
8492
8492
|
|
8493
8493
|
:example:
|
8494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
|
8495
8495
|
"""
|
8496
8496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8497
8497
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -8674,7 +8674,7 @@ class DbManagementClient(object):
|
|
8674
8674
|
:rtype: :class:`~oci.response.Response`
|
8675
8675
|
|
8676
8676
|
:example:
|
8677
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8677
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
|
8678
8678
|
"""
|
8679
8679
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8680
8680
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'sqlId']
|
@@ -8816,7 +8816,7 @@ class DbManagementClient(object):
|
|
8816
8816
|
:rtype: :class:`~oci.response.Response`
|
8817
8817
|
|
8818
8818
|
:example:
|
8819
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8819
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
|
8820
8820
|
"""
|
8821
8821
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8822
8822
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -8988,7 +8988,7 @@ class DbManagementClient(object):
|
|
8988
8988
|
:rtype: :class:`~oci.response.Response`
|
8989
8989
|
|
8990
8990
|
:example:
|
8991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_fleet_backup_metrics.py.html>`__ to see an example of how to use get_database_fleet_backup_metrics API.
|
8992
8992
|
"""
|
8993
8993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8994
8994
|
required_arguments = ['databaseHostedIn', 'startTime', 'endTime']
|
@@ -9179,7 +9179,7 @@ class DbManagementClient(object):
|
|
9179
9179
|
:rtype: :class:`~oci.response.Response`
|
9180
9180
|
|
9181
9181
|
:example:
|
9182
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9182
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_fleet_dataguard_metrics.py.html>`__ to see an example of how to use get_database_fleet_dataguard_metrics API.
|
9183
9183
|
"""
|
9184
9184
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9185
9185
|
required_arguments = []
|
@@ -9361,7 +9361,7 @@ class DbManagementClient(object):
|
|
9361
9361
|
:rtype: :class:`~oci.response.Response`
|
9362
9362
|
|
9363
9363
|
:example:
|
9364
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9364
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_fleet_ha_overview_metrics.py.html>`__ to see an example of how to use get_database_fleet_ha_overview_metrics API.
|
9365
9365
|
"""
|
9366
9366
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9367
9367
|
required_arguments = []
|
@@ -9567,7 +9567,7 @@ class DbManagementClient(object):
|
|
9567
9567
|
:rtype: :class:`~oci.response.Response`
|
9568
9568
|
|
9569
9569
|
:example:
|
9570
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9570
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
|
9571
9571
|
"""
|
9572
9572
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9573
9573
|
required_arguments = ['compareBaselineTime', 'compareTargetTime']
|
@@ -9717,7 +9717,7 @@ class DbManagementClient(object):
|
|
9717
9717
|
:rtype: :class:`~oci.response.Response`
|
9718
9718
|
|
9719
9719
|
:example:
|
9720
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9720
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_ha_backup_details.py.html>`__ to see an example of how to use get_database_ha_backup_details API.
|
9721
9721
|
"""
|
9722
9722
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9723
9723
|
required_arguments = ['managedDatabaseId']
|
@@ -9827,7 +9827,7 @@ class DbManagementClient(object):
|
|
9827
9827
|
:rtype: :class:`~oci.response.Response`
|
9828
9828
|
|
9829
9829
|
:example:
|
9830
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9830
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
|
9831
9831
|
"""
|
9832
9832
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9833
9833
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -9941,7 +9941,7 @@ class DbManagementClient(object):
|
|
9941
9941
|
:rtype: :class:`~oci.response.Response`
|
9942
9942
|
|
9943
9943
|
:example:
|
9944
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
|
9945
9945
|
"""
|
9946
9946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9947
9947
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -10051,7 +10051,7 @@ class DbManagementClient(object):
|
|
10051
10051
|
:rtype: :class:`~oci.response.Response`
|
10052
10052
|
|
10053
10053
|
:example:
|
10054
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10054
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
|
10055
10055
|
"""
|
10056
10056
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10057
10057
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -10149,7 +10149,7 @@ class DbManagementClient(object):
|
|
10149
10149
|
:rtype: :class:`~oci.response.Response`
|
10150
10150
|
|
10151
10151
|
:example:
|
10152
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10152
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
|
10153
10153
|
"""
|
10154
10154
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10155
10155
|
required_arguments = ['externalAsmId']
|
@@ -10252,7 +10252,7 @@ class DbManagementClient(object):
|
|
10252
10252
|
:rtype: :class:`~oci.response.Response`
|
10253
10253
|
|
10254
10254
|
:example:
|
10255
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10255
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
|
10256
10256
|
"""
|
10257
10257
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10258
10258
|
required_arguments = ['externalAsmId']
|
@@ -10354,7 +10354,7 @@ class DbManagementClient(object):
|
|
10354
10354
|
:rtype: :class:`~oci.response.Response`
|
10355
10355
|
|
10356
10356
|
:example:
|
10357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10357
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
|
10358
10358
|
"""
|
10359
10359
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10360
10360
|
required_arguments = ['externalAsmInstanceId']
|
@@ -10454,7 +10454,7 @@ class DbManagementClient(object):
|
|
10454
10454
|
:rtype: :class:`~oci.response.Response`
|
10455
10455
|
|
10456
10456
|
:example:
|
10457
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10457
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
|
10458
10458
|
"""
|
10459
10459
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10460
10460
|
required_arguments = ['externalClusterId']
|
@@ -10554,7 +10554,7 @@ class DbManagementClient(object):
|
|
10554
10554
|
:rtype: :class:`~oci.response.Response`
|
10555
10555
|
|
10556
10556
|
:example:
|
10557
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10557
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
|
10558
10558
|
"""
|
10559
10559
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10560
10560
|
required_arguments = ['externalClusterInstanceId']
|
@@ -10654,7 +10654,7 @@ class DbManagementClient(object):
|
|
10654
10654
|
:rtype: :class:`~oci.response.Response`
|
10655
10655
|
|
10656
10656
|
:example:
|
10657
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10657
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
|
10658
10658
|
"""
|
10659
10659
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10660
10660
|
required_arguments = ['externalDbHomeId']
|
@@ -10754,7 +10754,7 @@ class DbManagementClient(object):
|
|
10754
10754
|
:rtype: :class:`~oci.response.Response`
|
10755
10755
|
|
10756
10756
|
:example:
|
10757
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10757
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
|
10758
10758
|
"""
|
10759
10759
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10760
10760
|
required_arguments = ['externalDbNodeId']
|
@@ -10854,7 +10854,7 @@ class DbManagementClient(object):
|
|
10854
10854
|
:rtype: :class:`~oci.response.Response`
|
10855
10855
|
|
10856
10856
|
:example:
|
10857
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10857
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
|
10858
10858
|
"""
|
10859
10859
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10860
10860
|
required_arguments = ['externalDbSystemId']
|
@@ -10954,7 +10954,7 @@ class DbManagementClient(object):
|
|
10954
10954
|
:rtype: :class:`~oci.response.Response`
|
10955
10955
|
|
10956
10956
|
:example:
|
10957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10957
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
|
10958
10958
|
"""
|
10959
10959
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10960
10960
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -11054,7 +11054,7 @@ class DbManagementClient(object):
|
|
11054
11054
|
:rtype: :class:`~oci.response.Response`
|
11055
11055
|
|
11056
11056
|
:example:
|
11057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11057
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
|
11058
11058
|
"""
|
11059
11059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11060
11060
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -11155,7 +11155,7 @@ class DbManagementClient(object):
|
|
11155
11155
|
:rtype: :class:`~oci.response.Response`
|
11156
11156
|
|
11157
11157
|
:example:
|
11158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11158
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
|
11159
11159
|
"""
|
11160
11160
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11161
11161
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -11255,7 +11255,7 @@ class DbManagementClient(object):
|
|
11255
11255
|
:rtype: :class:`~oci.response.Response`
|
11256
11256
|
|
11257
11257
|
:example:
|
11258
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11258
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
|
11259
11259
|
"""
|
11260
11260
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11261
11261
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -11355,7 +11355,7 @@ class DbManagementClient(object):
|
|
11355
11355
|
:rtype: :class:`~oci.response.Response`
|
11356
11356
|
|
11357
11357
|
:example:
|
11358
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11358
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
|
11359
11359
|
"""
|
11360
11360
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11361
11361
|
required_arguments = ['externalExadataStorageGridId']
|
@@ -11455,7 +11455,7 @@ class DbManagementClient(object):
|
|
11455
11455
|
:rtype: :class:`~oci.response.Response`
|
11456
11456
|
|
11457
11457
|
:example:
|
11458
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11458
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
|
11459
11459
|
"""
|
11460
11460
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11461
11461
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -11555,7 +11555,7 @@ class DbManagementClient(object):
|
|
11555
11555
|
:rtype: :class:`~oci.response.Response`
|
11556
11556
|
|
11557
11557
|
:example:
|
11558
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11558
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
|
11559
11559
|
"""
|
11560
11560
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11561
11561
|
required_arguments = ['externalListenerId']
|
@@ -11653,7 +11653,7 @@ class DbManagementClient(object):
|
|
11653
11653
|
:rtype: :class:`~oci.response.Response`
|
11654
11654
|
|
11655
11655
|
:example:
|
11656
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11656
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_my_sql_database.py.html>`__ to see an example of how to use get_external_my_sql_database API.
|
11657
11657
|
"""
|
11658
11658
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11659
11659
|
required_arguments = ['externalMySqlDatabaseId']
|
@@ -11751,7 +11751,7 @@ class DbManagementClient(object):
|
|
11751
11751
|
:rtype: :class:`~oci.response.Response`
|
11752
11752
|
|
11753
11753
|
:example:
|
11754
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11754
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_external_my_sql_database_connector.py.html>`__ to see an example of how to use get_external_my_sql_database_connector API.
|
11755
11755
|
"""
|
11756
11756
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11757
11757
|
required_arguments = ['externalMySqlDatabaseConnectorId']
|
@@ -11851,7 +11851,7 @@ class DbManagementClient(object):
|
|
11851
11851
|
:rtype: :class:`~oci.response.Response`
|
11852
11852
|
|
11853
11853
|
:example:
|
11854
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11854
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
|
11855
11855
|
"""
|
11856
11856
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11857
11857
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -11949,7 +11949,7 @@ class DbManagementClient(object):
|
|
11949
11949
|
:rtype: :class:`~oci.response.Response`
|
11950
11950
|
|
11951
11951
|
:example:
|
11952
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11952
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
|
11953
11953
|
"""
|
11954
11954
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11955
11955
|
required_arguments = ['jobId']
|
@@ -12045,7 +12045,7 @@ class DbManagementClient(object):
|
|
12045
12045
|
:rtype: :class:`~oci.response.Response`
|
12046
12046
|
|
12047
12047
|
:example:
|
12048
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12048
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
|
12049
12049
|
"""
|
12050
12050
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12051
12051
|
required_arguments = ['jobExecutionId']
|
@@ -12141,7 +12141,7 @@ class DbManagementClient(object):
|
|
12141
12141
|
:rtype: :class:`~oci.response.Response`
|
12142
12142
|
|
12143
12143
|
:example:
|
12144
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12144
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
|
12145
12145
|
"""
|
12146
12146
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12147
12147
|
required_arguments = ['jobRunId']
|
@@ -12239,7 +12239,7 @@ class DbManagementClient(object):
|
|
12239
12239
|
:rtype: :class:`~oci.response.Response`
|
12240
12240
|
|
12241
12241
|
:example:
|
12242
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12242
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
|
12243
12243
|
"""
|
12244
12244
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12245
12245
|
required_arguments = ['managedDatabaseId']
|
@@ -12337,7 +12337,7 @@ class DbManagementClient(object):
|
|
12337
12337
|
:rtype: :class:`~oci.response.Response`
|
12338
12338
|
|
12339
12339
|
:example:
|
12340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12340
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
|
12341
12341
|
"""
|
12342
12342
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12343
12343
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -12422,7 +12422,7 @@ class DbManagementClient(object):
|
|
12422
12422
|
:param obj retry_strategy: (optional)
|
12423
12423
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
12424
12424
|
|
12425
|
-
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation
|
12425
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
12426
12426
|
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
12427
12427
|
|
12428
12428
|
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
@@ -12435,7 +12435,7 @@ class DbManagementClient(object):
|
|
12435
12435
|
:rtype: :class:`~oci.response.Response`
|
12436
12436
|
|
12437
12437
|
:example:
|
12438
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12438
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
|
12439
12439
|
"""
|
12440
12440
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12441
12441
|
required_arguments = ['namedCredentialId']
|
@@ -12476,6 +12476,8 @@ class DbManagementClient(object):
|
|
12476
12476
|
operation_retry_strategy=kwargs.get('retry_strategy'),
|
12477
12477
|
client_retry_strategy=self.retry_strategy
|
12478
12478
|
)
|
12479
|
+
if retry_strategy is None:
|
12480
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
12479
12481
|
|
12480
12482
|
if retry_strategy:
|
12481
12483
|
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
@@ -12533,7 +12535,7 @@ class DbManagementClient(object):
|
|
12533
12535
|
:rtype: :class:`~oci.response.Response`
|
12534
12536
|
|
12535
12537
|
:example:
|
12536
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12538
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
|
12537
12539
|
"""
|
12538
12540
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12539
12541
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -12643,7 +12645,7 @@ class DbManagementClient(object):
|
|
12643
12645
|
:rtype: :class:`~oci.response.Response`
|
12644
12646
|
|
12645
12647
|
:example:
|
12646
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12648
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
|
12647
12649
|
"""
|
12648
12650
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12649
12651
|
required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
|
@@ -12760,7 +12762,7 @@ class DbManagementClient(object):
|
|
12760
12762
|
:rtype: :class:`~oci.response.Response`
|
12761
12763
|
|
12762
12764
|
:example:
|
12763
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12765
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
|
12764
12766
|
"""
|
12765
12767
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12766
12768
|
required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
|
@@ -12874,7 +12876,7 @@ class DbManagementClient(object):
|
|
12874
12876
|
:rtype: :class:`~oci.response.Response`
|
12875
12877
|
|
12876
12878
|
:example:
|
12877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12879
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
|
12878
12880
|
"""
|
12879
12881
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12880
12882
|
required_arguments = ['managedDatabaseId', 'optimizerStatisticsCollectionOperationId']
|
@@ -12999,7 +13001,7 @@ class DbManagementClient(object):
|
|
12999
13001
|
:rtype: :class:`~oci.response.Response`
|
13000
13002
|
|
13001
13003
|
:example:
|
13002
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13004
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
|
13003
13005
|
"""
|
13004
13006
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13005
13007
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -13142,7 +13144,7 @@ class DbManagementClient(object):
|
|
13142
13144
|
:rtype: :class:`~oci.response.Response`
|
13143
13145
|
|
13144
13146
|
:example:
|
13145
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13147
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
|
13146
13148
|
"""
|
13147
13149
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13148
13150
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -13264,7 +13266,7 @@ class DbManagementClient(object):
|
|
13264
13266
|
:rtype: :class:`~oci.response.Response`
|
13265
13267
|
|
13266
13268
|
:example:
|
13267
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13269
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
|
13268
13270
|
"""
|
13269
13271
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13270
13272
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -13369,7 +13371,7 @@ class DbManagementClient(object):
|
|
13369
13371
|
:rtype: :class:`~oci.response.Response`
|
13370
13372
|
|
13371
13373
|
:example:
|
13372
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13374
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
|
13373
13375
|
"""
|
13374
13376
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13375
13377
|
required_arguments = ['managedDatabaseId', 'planName']
|
@@ -13477,7 +13479,7 @@ class DbManagementClient(object):
|
|
13477
13479
|
:rtype: :class:`~oci.response.Response`
|
13478
13480
|
|
13479
13481
|
:example:
|
13480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13482
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
|
13481
13483
|
"""
|
13482
13484
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13483
13485
|
required_arguments = ['managedDatabaseId']
|
@@ -13585,7 +13587,7 @@ class DbManagementClient(object):
|
|
13585
13587
|
:rtype: :class:`~oci.response.Response`
|
13586
13588
|
|
13587
13589
|
:example:
|
13588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13590
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
|
13589
13591
|
"""
|
13590
13592
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13591
13593
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -13686,7 +13688,7 @@ class DbManagementClient(object):
|
|
13686
13688
|
:rtype: :class:`~oci.response.Response`
|
13687
13689
|
|
13688
13690
|
:example:
|
13689
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13691
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
|
13690
13692
|
"""
|
13691
13693
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13692
13694
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -13792,7 +13794,7 @@ class DbManagementClient(object):
|
|
13792
13794
|
:rtype: :class:`~oci.response.Response`
|
13793
13795
|
|
13794
13796
|
:example:
|
13795
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13797
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
|
13796
13798
|
"""
|
13797
13799
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13798
13800
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -13893,7 +13895,7 @@ class DbManagementClient(object):
|
|
13893
13895
|
:rtype: :class:`~oci.response.Response`
|
13894
13896
|
|
13895
13897
|
:example:
|
13896
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13898
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
13897
13899
|
"""
|
13898
13900
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13899
13901
|
required_arguments = ['workRequestId']
|
@@ -13997,7 +13999,7 @@ class DbManagementClient(object):
|
|
13997
13999
|
:rtype: :class:`~oci.response.Response`
|
13998
14000
|
|
13999
14001
|
:example:
|
14000
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14002
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
|
14001
14003
|
"""
|
14002
14004
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14003
14005
|
required_arguments = ['managedDatabaseId', 'executionName']
|
@@ -14120,7 +14122,7 @@ class DbManagementClient(object):
|
|
14120
14122
|
:rtype: :class:`~oci.response.Response`
|
14121
14123
|
|
14122
14124
|
:example:
|
14123
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14125
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
|
14124
14126
|
"""
|
14125
14127
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14126
14128
|
required_arguments = ['managedDatabaseId']
|
@@ -14270,7 +14272,7 @@ class DbManagementClient(object):
|
|
14270
14272
|
:rtype: :class:`~oci.response.Response`
|
14271
14273
|
|
14272
14274
|
:example:
|
14273
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
|
14274
14276
|
"""
|
14275
14277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14276
14278
|
required_arguments = ['dbManagementPrivateEndpointId', 'compartmentId']
|
@@ -14449,7 +14451,7 @@ class DbManagementClient(object):
|
|
14449
14451
|
:rtype: :class:`~oci.response.Response`
|
14450
14452
|
|
14451
14453
|
:example:
|
14452
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14454
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
|
14453
14455
|
"""
|
14454
14456
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14455
14457
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -14629,7 +14631,7 @@ class DbManagementClient(object):
|
|
14629
14631
|
:rtype: :class:`~oci.response.Response`
|
14630
14632
|
|
14631
14633
|
:example:
|
14632
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
|
14633
14635
|
"""
|
14634
14636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14635
14637
|
required_arguments = ['managedDatabaseId']
|
@@ -14793,7 +14795,7 @@ class DbManagementClient(object):
|
|
14793
14795
|
:rtype: :class:`~oci.response.Response`
|
14794
14796
|
|
14795
14797
|
:example:
|
14796
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14798
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
|
14797
14799
|
"""
|
14798
14800
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14799
14801
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -14949,7 +14951,7 @@ class DbManagementClient(object):
|
|
14949
14951
|
:rtype: :class:`~oci.response.Response`
|
14950
14952
|
|
14951
14953
|
:example:
|
14952
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14954
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
|
14953
14955
|
"""
|
14954
14956
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14955
14957
|
required_arguments = ['managedDatabaseId']
|
@@ -15108,7 +15110,7 @@ class DbManagementClient(object):
|
|
15108
15110
|
:rtype: :class:`~oci.response.Response`
|
15109
15111
|
|
15110
15112
|
:example:
|
15111
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15113
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
|
15112
15114
|
"""
|
15113
15115
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15114
15116
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -15267,7 +15269,7 @@ class DbManagementClient(object):
|
|
15267
15269
|
:rtype: :class:`~oci.response.Response`
|
15268
15270
|
|
15269
15271
|
:example:
|
15270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15272
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
|
15271
15273
|
"""
|
15272
15274
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15273
15275
|
required_arguments = ['managedDatabaseId']
|
@@ -15443,7 +15445,7 @@ class DbManagementClient(object):
|
|
15443
15445
|
:rtype: :class:`~oci.response.Response`
|
15444
15446
|
|
15445
15447
|
:example:
|
15446
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15448
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
|
15447
15449
|
"""
|
15448
15450
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15449
15451
|
required_arguments = ['compartmentId']
|
@@ -15596,7 +15598,7 @@ class DbManagementClient(object):
|
|
15596
15598
|
:rtype: :class:`~oci.response.Response`
|
15597
15599
|
|
15598
15600
|
:example:
|
15599
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15601
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
|
15600
15602
|
"""
|
15601
15603
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15602
15604
|
required_arguments = ['externalAsmId']
|
@@ -15753,7 +15755,7 @@ class DbManagementClient(object):
|
|
15753
15755
|
:rtype: :class:`~oci.response.Response`
|
15754
15756
|
|
15755
15757
|
:example:
|
15756
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15758
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
|
15757
15759
|
"""
|
15758
15760
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15759
15761
|
required_arguments = []
|
@@ -15896,7 +15898,7 @@ class DbManagementClient(object):
|
|
15896
15898
|
:rtype: :class:`~oci.response.Response`
|
15897
15899
|
|
15898
15900
|
:example:
|
15899
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15901
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
|
15900
15902
|
"""
|
15901
15903
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15902
15904
|
required_arguments = ['externalAsmId']
|
@@ -16053,7 +16055,7 @@ class DbManagementClient(object):
|
|
16053
16055
|
:rtype: :class:`~oci.response.Response`
|
16054
16056
|
|
16055
16057
|
:example:
|
16056
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
|
16057
16059
|
"""
|
16058
16060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16059
16061
|
required_arguments = []
|
@@ -16202,7 +16204,7 @@ class DbManagementClient(object):
|
|
16202
16204
|
:rtype: :class:`~oci.response.Response`
|
16203
16205
|
|
16204
16206
|
:example:
|
16205
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16207
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
|
16206
16208
|
"""
|
16207
16209
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16208
16210
|
required_arguments = []
|
@@ -16351,7 +16353,7 @@ class DbManagementClient(object):
|
|
16351
16353
|
:rtype: :class:`~oci.response.Response`
|
16352
16354
|
|
16353
16355
|
:example:
|
16354
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16356
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
|
16355
16357
|
"""
|
16356
16358
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16357
16359
|
required_arguments = []
|
@@ -16505,7 +16507,7 @@ class DbManagementClient(object):
|
|
16505
16507
|
:rtype: :class:`~oci.response.Response`
|
16506
16508
|
|
16507
16509
|
:example:
|
16508
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16510
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
|
16509
16511
|
"""
|
16510
16512
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16511
16513
|
required_arguments = []
|
@@ -16656,7 +16658,7 @@ class DbManagementClient(object):
|
|
16656
16658
|
:rtype: :class:`~oci.response.Response`
|
16657
16659
|
|
16658
16660
|
:example:
|
16659
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16661
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
|
16660
16662
|
"""
|
16661
16663
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16662
16664
|
required_arguments = []
|
@@ -16805,7 +16807,7 @@ class DbManagementClient(object):
|
|
16805
16807
|
:rtype: :class:`~oci.response.Response`
|
16806
16808
|
|
16807
16809
|
:example:
|
16808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16810
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
|
16809
16811
|
"""
|
16810
16812
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16811
16813
|
required_arguments = []
|
@@ -16954,7 +16956,7 @@ class DbManagementClient(object):
|
|
16954
16956
|
:rtype: :class:`~oci.response.Response`
|
16955
16957
|
|
16956
16958
|
:example:
|
16957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16959
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
|
16958
16960
|
"""
|
16959
16961
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16960
16962
|
required_arguments = []
|
@@ -17098,7 +17100,7 @@ class DbManagementClient(object):
|
|
17098
17100
|
:rtype: :class:`~oci.response.Response`
|
17099
17101
|
|
17100
17102
|
:example:
|
17101
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17103
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
|
17102
17104
|
"""
|
17103
17105
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17104
17106
|
required_arguments = ['compartmentId']
|
@@ -17239,7 +17241,7 @@ class DbManagementClient(object):
|
|
17239
17241
|
:rtype: :class:`~oci.response.Response`
|
17240
17242
|
|
17241
17243
|
:example:
|
17242
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17244
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
|
17243
17245
|
"""
|
17244
17246
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17245
17247
|
required_arguments = ['compartmentId']
|
@@ -17380,7 +17382,7 @@ class DbManagementClient(object):
|
|
17380
17382
|
:rtype: :class:`~oci.response.Response`
|
17381
17383
|
|
17382
17384
|
:example:
|
17383
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17385
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
|
17384
17386
|
"""
|
17385
17387
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17386
17388
|
required_arguments = ['compartmentId']
|
@@ -17526,7 +17528,7 @@ class DbManagementClient(object):
|
|
17526
17528
|
:rtype: :class:`~oci.response.Response`
|
17527
17529
|
|
17528
17530
|
:example:
|
17529
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17531
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
|
17530
17532
|
"""
|
17531
17533
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17532
17534
|
required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
|
@@ -17673,7 +17675,7 @@ class DbManagementClient(object):
|
|
17673
17675
|
:rtype: :class:`~oci.response.Response`
|
17674
17676
|
|
17675
17677
|
:example:
|
17676
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17678
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
|
17677
17679
|
"""
|
17678
17680
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17679
17681
|
required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
|
@@ -17820,7 +17822,7 @@ class DbManagementClient(object):
|
|
17820
17822
|
:rtype: :class:`~oci.response.Response`
|
17821
17823
|
|
17822
17824
|
:example:
|
17823
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17825
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
|
17824
17826
|
"""
|
17825
17827
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17826
17828
|
required_arguments = ['externalListenerId', 'managedDatabaseId']
|
@@ -17978,7 +17980,7 @@ class DbManagementClient(object):
|
|
17978
17980
|
:rtype: :class:`~oci.response.Response`
|
17979
17981
|
|
17980
17982
|
:example:
|
17981
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17983
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
|
17982
17984
|
"""
|
17983
17985
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17984
17986
|
required_arguments = []
|
@@ -18122,7 +18124,7 @@ class DbManagementClient(object):
|
|
18122
18124
|
:rtype: :class:`~oci.response.Response`
|
18123
18125
|
|
18124
18126
|
:example:
|
18125
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18127
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_external_my_sql_databases.py.html>`__ to see an example of how to use list_external_my_sql_databases API.
|
18126
18128
|
"""
|
18127
18129
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18128
18130
|
required_arguments = ['compartmentId']
|
@@ -18286,7 +18288,7 @@ class DbManagementClient(object):
|
|
18286
18288
|
:rtype: :class:`~oci.response.Response`
|
18287
18289
|
|
18288
18290
|
:example:
|
18289
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18291
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
|
18290
18292
|
"""
|
18291
18293
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18292
18294
|
required_arguments = ['compartmentId']
|
@@ -18459,7 +18461,7 @@ class DbManagementClient(object):
|
|
18459
18461
|
:rtype: :class:`~oci.response.Response`
|
18460
18462
|
|
18461
18463
|
:example:
|
18462
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
|
18463
18465
|
"""
|
18464
18466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18465
18467
|
required_arguments = ['compartmentId']
|
@@ -18629,7 +18631,7 @@ class DbManagementClient(object):
|
|
18629
18631
|
:rtype: :class:`~oci.response.Response`
|
18630
18632
|
|
18631
18633
|
:example:
|
18632
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
|
18633
18635
|
"""
|
18634
18636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18635
18637
|
required_arguments = ['compartmentId']
|
@@ -18794,7 +18796,7 @@ class DbManagementClient(object):
|
|
18794
18796
|
:rtype: :class:`~oci.response.Response`
|
18795
18797
|
|
18796
18798
|
:example:
|
18797
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18799
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
|
18798
18800
|
"""
|
18799
18801
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18800
18802
|
required_arguments = ['compartmentId']
|
@@ -18967,7 +18969,7 @@ class DbManagementClient(object):
|
|
18967
18969
|
:rtype: :class:`~oci.response.Response`
|
18968
18970
|
|
18969
18971
|
:example:
|
18970
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18972
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
|
18971
18973
|
"""
|
18972
18974
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18973
18975
|
required_arguments = ['compartmentId']
|
@@ -19133,7 +19135,7 @@ class DbManagementClient(object):
|
|
19133
19135
|
:rtype: :class:`~oci.response.Response`
|
19134
19136
|
|
19135
19137
|
:example:
|
19136
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19138
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_my_sql_database_connectors.py.html>`__ to see an example of how to use list_my_sql_database_connectors API.
|
19137
19139
|
"""
|
19138
19140
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19139
19141
|
required_arguments = ['compartmentId']
|
@@ -19274,7 +19276,7 @@ class DbManagementClient(object):
|
|
19274
19276
|
:param obj retry_strategy: (optional)
|
19275
19277
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
19276
19278
|
|
19277
|
-
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation
|
19279
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
19278
19280
|
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
19279
19281
|
|
19280
19282
|
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
@@ -19287,7 +19289,7 @@ class DbManagementClient(object):
|
|
19287
19289
|
:rtype: :class:`~oci.response.Response`
|
19288
19290
|
|
19289
19291
|
:example:
|
19290
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19292
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
|
19291
19293
|
"""
|
19292
19294
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19293
19295
|
required_arguments = ['compartmentId']
|
@@ -19367,6 +19369,8 @@ class DbManagementClient(object):
|
|
19367
19369
|
operation_retry_strategy=kwargs.get('retry_strategy'),
|
19368
19370
|
client_retry_strategy=self.retry_strategy
|
19369
19371
|
)
|
19372
|
+
if retry_strategy is None:
|
19373
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
19370
19374
|
|
19371
19375
|
if retry_strategy:
|
19372
19376
|
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
@@ -19451,7 +19455,7 @@ class DbManagementClient(object):
|
|
19451
19455
|
:rtype: :class:`~oci.response.Response`
|
19452
19456
|
|
19453
19457
|
:example:
|
19454
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19458
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
|
19455
19459
|
"""
|
19456
19460
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19457
19461
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -19595,7 +19599,7 @@ class DbManagementClient(object):
|
|
19595
19599
|
:rtype: :class:`~oci.response.Response`
|
19596
19600
|
|
19597
19601
|
:example:
|
19598
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19602
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
|
19599
19603
|
"""
|
19600
19604
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19601
19605
|
required_arguments = ['managedDatabaseId']
|
@@ -19738,7 +19742,7 @@ class DbManagementClient(object):
|
|
19738
19742
|
:rtype: :class:`~oci.response.Response`
|
19739
19743
|
|
19740
19744
|
:example:
|
19741
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19745
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
|
19742
19746
|
"""
|
19743
19747
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19744
19748
|
required_arguments = ['managedDatabaseId', 'groupType']
|
@@ -19913,7 +19917,7 @@ class DbManagementClient(object):
|
|
19913
19917
|
:rtype: :class:`~oci.response.Response`
|
19914
19918
|
|
19915
19919
|
:example:
|
19916
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19920
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
|
19917
19921
|
"""
|
19918
19922
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19919
19923
|
required_arguments = ['managedDatabaseId']
|
@@ -20056,7 +20060,7 @@ class DbManagementClient(object):
|
|
20056
20060
|
:rtype: :class:`~oci.response.Response`
|
20057
20061
|
|
20058
20062
|
:example:
|
20059
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
|
20060
20064
|
"""
|
20061
20065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20062
20066
|
required_arguments = ['managedDatabaseId']
|
@@ -20181,7 +20185,7 @@ class DbManagementClient(object):
|
|
20181
20185
|
:rtype: :class:`~oci.response.Response`
|
20182
20186
|
|
20183
20187
|
:example:
|
20184
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20188
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
|
20185
20189
|
"""
|
20186
20190
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20187
20191
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -20339,7 +20343,7 @@ class DbManagementClient(object):
|
|
20339
20343
|
:rtype: :class:`~oci.response.Response`
|
20340
20344
|
|
20341
20345
|
:example:
|
20342
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20346
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
|
20343
20347
|
"""
|
20344
20348
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20345
20349
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -20497,7 +20501,7 @@ class DbManagementClient(object):
|
|
20497
20501
|
:rtype: :class:`~oci.response.Response`
|
20498
20502
|
|
20499
20503
|
:example:
|
20500
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20504
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
|
20501
20505
|
"""
|
20502
20506
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20503
20507
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -20653,7 +20657,7 @@ class DbManagementClient(object):
|
|
20653
20657
|
:rtype: :class:`~oci.response.Response`
|
20654
20658
|
|
20655
20659
|
:example:
|
20656
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20660
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
|
20657
20661
|
"""
|
20658
20662
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20659
20663
|
required_arguments = ['managedDatabaseId']
|
@@ -20857,7 +20861,7 @@ class DbManagementClient(object):
|
|
20857
20861
|
:rtype: :class:`~oci.response.Response`
|
20858
20862
|
|
20859
20863
|
:example:
|
20860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20864
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
|
20861
20865
|
"""
|
20862
20866
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20863
20867
|
required_arguments = ['managedDatabaseId']
|
@@ -21047,7 +21051,7 @@ class DbManagementClient(object):
|
|
21047
21051
|
:rtype: :class:`~oci.response.Response`
|
21048
21052
|
|
21049
21053
|
:example:
|
21050
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21054
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
|
21051
21055
|
"""
|
21052
21056
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21053
21057
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -21182,7 +21186,7 @@ class DbManagementClient(object):
|
|
21182
21186
|
:rtype: :class:`~oci.response.Response`
|
21183
21187
|
|
21184
21188
|
:example:
|
21185
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21189
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
|
21186
21190
|
"""
|
21187
21191
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21188
21192
|
required_arguments = ['managedDatabaseId']
|
@@ -21307,7 +21311,7 @@ class DbManagementClient(object):
|
|
21307
21311
|
:rtype: :class:`~oci.response.Response`
|
21308
21312
|
|
21309
21313
|
:example:
|
21310
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21314
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
|
21311
21315
|
"""
|
21312
21316
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21313
21317
|
required_arguments = ['managedDatabaseId']
|
@@ -21462,7 +21466,7 @@ class DbManagementClient(object):
|
|
21462
21466
|
:rtype: :class:`~oci.response.Response`
|
21463
21467
|
|
21464
21468
|
:example:
|
21465
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21469
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
|
21466
21470
|
"""
|
21467
21471
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21468
21472
|
required_arguments = ['managedDatabaseId']
|
@@ -21609,7 +21613,7 @@ class DbManagementClient(object):
|
|
21609
21613
|
:rtype: :class:`~oci.response.Response`
|
21610
21614
|
|
21611
21615
|
:example:
|
21612
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21616
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
21613
21617
|
"""
|
21614
21618
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21615
21619
|
required_arguments = ['workRequestId']
|
@@ -21752,7 +21756,7 @@ class DbManagementClient(object):
|
|
21752
21756
|
:rtype: :class:`~oci.response.Response`
|
21753
21757
|
|
21754
21758
|
:example:
|
21755
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21759
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
21756
21760
|
"""
|
21757
21761
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21758
21762
|
required_arguments = ['workRequestId']
|
@@ -21910,7 +21914,7 @@ class DbManagementClient(object):
|
|
21910
21914
|
:rtype: :class:`~oci.response.Response`
|
21911
21915
|
|
21912
21916
|
:example:
|
21913
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21917
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
21914
21918
|
"""
|
21915
21919
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21916
21920
|
required_arguments = ['compartmentId']
|
@@ -22045,7 +22049,7 @@ class DbManagementClient(object):
|
|
22045
22049
|
:rtype: :class:`~oci.response.Response`
|
22046
22050
|
|
22047
22051
|
:example:
|
22048
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22052
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
|
22049
22053
|
"""
|
22050
22054
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22051
22055
|
required_arguments = ['managedDatabaseId']
|
@@ -22150,7 +22154,7 @@ class DbManagementClient(object):
|
|
22150
22154
|
:rtype: :class:`~oci.response.Response`
|
22151
22155
|
|
22152
22156
|
:example:
|
22153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22157
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
|
22154
22158
|
"""
|
22155
22159
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22156
22160
|
required_arguments = ['managedDatabaseId']
|
@@ -22267,7 +22271,7 @@ class DbManagementClient(object):
|
|
22267
22271
|
:rtype: :class:`~oci.response.Response`
|
22268
22272
|
|
22269
22273
|
:example:
|
22270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22274
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
|
22271
22275
|
"""
|
22272
22276
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22273
22277
|
required_arguments = ['autonomousDatabaseId']
|
@@ -22389,7 +22393,7 @@ class DbManagementClient(object):
|
|
22389
22393
|
:rtype: :class:`~oci.response.Response`
|
22390
22394
|
|
22391
22395
|
:example:
|
22392
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22396
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
|
22393
22397
|
"""
|
22394
22398
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22395
22399
|
required_arguments = ['databaseId']
|
@@ -22465,6 +22469,128 @@ class DbManagementClient(object):
|
|
22465
22469
|
api_reference_link=api_reference_link,
|
22466
22470
|
required_arguments=required_arguments)
|
22467
22471
|
|
22472
|
+
def modify_external_container_database_management_feature(self, external_container_database_id, enable_external_container_database_management_feature_details, **kwargs):
|
22473
|
+
"""
|
22474
|
+
Modifies a Database Management feature for the specified external container database.
|
22475
|
+
|
22476
|
+
|
22477
|
+
:param str external_container_database_id: (required)
|
22478
|
+
The `OCID`__ of the external container database.
|
22479
|
+
|
22480
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
22481
|
+
|
22482
|
+
:param oci.database_management.models.EnableExternalContainerDatabaseManagementFeatureDetails enable_external_container_database_management_feature_details: (required)
|
22483
|
+
The details required to enable a Database Management feature for an external container database.
|
22484
|
+
|
22485
|
+
:param str opc_request_id: (optional)
|
22486
|
+
The client request ID for tracing.
|
22487
|
+
|
22488
|
+
:param str opc_retry_token: (optional)
|
22489
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
22490
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
22491
|
+
hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
22492
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
22493
|
+
might be rejected.
|
22494
|
+
|
22495
|
+
:param str if_match: (optional)
|
22496
|
+
For optimistic concurrency control. In the PUT or DELETE call
|
22497
|
+
for a resource, set the `if-match` parameter to the value of the
|
22498
|
+
etag from a previous GET or POST response for that resource.
|
22499
|
+
The resource will be updated or deleted only if the etag you
|
22500
|
+
provide matches the resource's current etag value.
|
22501
|
+
|
22502
|
+
:param obj retry_strategy: (optional)
|
22503
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
22504
|
+
|
22505
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
22506
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
22507
|
+
|
22508
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
22509
|
+
|
22510
|
+
:param bool allow_control_chars: (optional)
|
22511
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
22512
|
+
By default, the response will not allow control characters in strings
|
22513
|
+
|
22514
|
+
:return: A :class:`~oci.response.Response` object with data of type None
|
22515
|
+
:rtype: :class:`~oci.response.Response`
|
22516
|
+
|
22517
|
+
:example:
|
22518
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/modify_external_container_database_management_feature.py.html>`__ to see an example of how to use modify_external_container_database_management_feature API.
|
22519
|
+
"""
|
22520
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22521
|
+
required_arguments = ['externalContainerDatabaseId']
|
22522
|
+
resource_path = "/externalcontainerdatabases/{externalContainerDatabaseId}/actions/modifyDatabaseManagement"
|
22523
|
+
method = "POST"
|
22524
|
+
operation_name = "modify_external_container_database_management_feature"
|
22525
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database-management/20201101/ManagedDatabase/ModifyExternalContainerDatabaseManagementFeature"
|
22526
|
+
|
22527
|
+
# Don't accept unknown kwargs
|
22528
|
+
expected_kwargs = [
|
22529
|
+
"allow_control_chars",
|
22530
|
+
"retry_strategy",
|
22531
|
+
"opc_request_id",
|
22532
|
+
"opc_retry_token",
|
22533
|
+
"if_match"
|
22534
|
+
]
|
22535
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
22536
|
+
if extra_kwargs:
|
22537
|
+
raise ValueError(
|
22538
|
+
f"modify_external_container_database_management_feature got unknown kwargs: {extra_kwargs!r}")
|
22539
|
+
|
22540
|
+
path_params = {
|
22541
|
+
"externalContainerDatabaseId": external_container_database_id
|
22542
|
+
}
|
22543
|
+
|
22544
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
22545
|
+
|
22546
|
+
for (k, v) in six.iteritems(path_params):
|
22547
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
22548
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
22549
|
+
|
22550
|
+
header_params = {
|
22551
|
+
"accept": "application/json",
|
22552
|
+
"content-type": "application/json",
|
22553
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
22554
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing),
|
22555
|
+
"if-match": kwargs.get("if_match", missing)
|
22556
|
+
}
|
22557
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
22558
|
+
|
22559
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
22560
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
22561
|
+
client_retry_strategy=self.retry_strategy
|
22562
|
+
)
|
22563
|
+
if retry_strategy is None:
|
22564
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
22565
|
+
|
22566
|
+
if retry_strategy:
|
22567
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
22568
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
22569
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
22570
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
22571
|
+
return retry_strategy.make_retrying_call(
|
22572
|
+
self.base_client.call_api,
|
22573
|
+
resource_path=resource_path,
|
22574
|
+
method=method,
|
22575
|
+
path_params=path_params,
|
22576
|
+
header_params=header_params,
|
22577
|
+
body=enable_external_container_database_management_feature_details,
|
22578
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
22579
|
+
operation_name=operation_name,
|
22580
|
+
api_reference_link=api_reference_link,
|
22581
|
+
required_arguments=required_arguments)
|
22582
|
+
else:
|
22583
|
+
return self.base_client.call_api(
|
22584
|
+
resource_path=resource_path,
|
22585
|
+
method=method,
|
22586
|
+
path_params=path_params,
|
22587
|
+
header_params=header_params,
|
22588
|
+
body=enable_external_container_database_management_feature_details,
|
22589
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
22590
|
+
operation_name=operation_name,
|
22591
|
+
api_reference_link=api_reference_link,
|
22592
|
+
required_arguments=required_arguments)
|
22593
|
+
|
22468
22594
|
def modify_pluggable_database_management_feature(self, pluggable_database_id, modify_pluggable_database_management_feature_details, **kwargs):
|
22469
22595
|
"""
|
22470
22596
|
Modifies the Database Management feature for the specified Oracle cloud pluggable database.
|
@@ -22511,7 +22637,7 @@ class DbManagementClient(object):
|
|
22511
22637
|
:rtype: :class:`~oci.response.Response`
|
22512
22638
|
|
22513
22639
|
:example:
|
22514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22640
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
|
22515
22641
|
"""
|
22516
22642
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22517
22643
|
required_arguments = ['pluggableDatabaseId']
|
@@ -22626,7 +22752,7 @@ class DbManagementClient(object):
|
|
22626
22752
|
:rtype: :class:`~oci.response.Response`
|
22627
22753
|
|
22628
22754
|
:example:
|
22629
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22755
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
|
22630
22756
|
"""
|
22631
22757
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22632
22758
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -22741,7 +22867,7 @@ class DbManagementClient(object):
|
|
22741
22867
|
:rtype: :class:`~oci.response.Response`
|
22742
22868
|
|
22743
22869
|
:example:
|
22744
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22870
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
|
22745
22871
|
"""
|
22746
22872
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22747
22873
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -22858,7 +22984,7 @@ class DbManagementClient(object):
|
|
22858
22984
|
:rtype: :class:`~oci.response.Response`
|
22859
22985
|
|
22860
22986
|
:example:
|
22861
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22987
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
|
22862
22988
|
"""
|
22863
22989
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22864
22990
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -22969,7 +23095,7 @@ class DbManagementClient(object):
|
|
22969
23095
|
:rtype: :class:`~oci.response.Response`
|
22970
23096
|
|
22971
23097
|
:example:
|
22972
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23098
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
|
22973
23099
|
"""
|
22974
23100
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22975
23101
|
required_arguments = ['managedDatabaseId']
|
@@ -23085,7 +23211,7 @@ class DbManagementClient(object):
|
|
23085
23211
|
:rtype: :class:`~oci.response.Response`
|
23086
23212
|
|
23087
23213
|
:example:
|
23088
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23214
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
|
23089
23215
|
"""
|
23090
23216
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23091
23217
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -23203,7 +23329,7 @@ class DbManagementClient(object):
|
|
23203
23329
|
:rtype: :class:`~oci.response.Response`
|
23204
23330
|
|
23205
23331
|
:example:
|
23206
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23332
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
|
23207
23333
|
"""
|
23208
23334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23209
23335
|
required_arguments = ['managedDatabaseId']
|
@@ -23365,7 +23491,7 @@ class DbManagementClient(object):
|
|
23365
23491
|
:rtype: :class:`~oci.response.Response`
|
23366
23492
|
|
23367
23493
|
:example:
|
23368
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
|
23369
23495
|
"""
|
23370
23496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23371
23497
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -23573,7 +23699,7 @@ class DbManagementClient(object):
|
|
23573
23699
|
:rtype: :class:`~oci.response.Response`
|
23574
23700
|
|
23575
23701
|
:example:
|
23576
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23702
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
|
23577
23703
|
"""
|
23578
23704
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23579
23705
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -23777,7 +23903,7 @@ class DbManagementClient(object):
|
|
23777
23903
|
:rtype: :class:`~oci.response.Response`
|
23778
23904
|
|
23779
23905
|
:example:
|
23780
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23906
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
|
23781
23907
|
"""
|
23782
23908
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23783
23909
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -24005,7 +24131,7 @@ class DbManagementClient(object):
|
|
24005
24131
|
:rtype: :class:`~oci.response.Response`
|
24006
24132
|
|
24007
24133
|
:example:
|
24008
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24134
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
|
24009
24135
|
"""
|
24010
24136
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24011
24137
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -24216,7 +24342,7 @@ class DbManagementClient(object):
|
|
24216
24342
|
:rtype: :class:`~oci.response.Response`
|
24217
24343
|
|
24218
24344
|
:example:
|
24219
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24345
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
|
24220
24346
|
"""
|
24221
24347
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24222
24348
|
required_arguments = ['managedDatabaseId']
|
@@ -24408,7 +24534,7 @@ class DbManagementClient(object):
|
|
24408
24534
|
:rtype: :class:`~oci.response.Response`
|
24409
24535
|
|
24410
24536
|
:example:
|
24411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24537
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
|
24412
24538
|
"""
|
24413
24539
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24414
24540
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -24606,7 +24732,7 @@ class DbManagementClient(object):
|
|
24606
24732
|
:rtype: :class:`~oci.response.Response`
|
24607
24733
|
|
24608
24734
|
:example:
|
24609
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24735
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
|
24610
24736
|
"""
|
24611
24737
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24612
24738
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -24821,7 +24947,7 @@ class DbManagementClient(object):
|
|
24821
24947
|
:rtype: :class:`~oci.response.Response`
|
24822
24948
|
|
24823
24949
|
:example:
|
24824
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24950
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
|
24825
24951
|
"""
|
24826
24952
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24827
24953
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -25032,7 +25158,7 @@ class DbManagementClient(object):
|
|
25032
25158
|
:rtype: :class:`~oci.response.Response`
|
25033
25159
|
|
25034
25160
|
:example:
|
25035
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25161
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
|
25036
25162
|
"""
|
25037
25163
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25038
25164
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -25205,7 +25331,7 @@ class DbManagementClient(object):
|
|
25205
25331
|
:rtype: :class:`~oci.response.Response`
|
25206
25332
|
|
25207
25333
|
:example:
|
25208
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25334
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
|
25209
25335
|
"""
|
25210
25336
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25211
25337
|
required_arguments = ['externalAsmId', 'startTime', 'endTime']
|
@@ -25337,7 +25463,7 @@ class DbManagementClient(object):
|
|
25337
25463
|
:rtype: :class:`~oci.response.Response`
|
25338
25464
|
|
25339
25465
|
:example:
|
25340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25466
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
|
25341
25467
|
"""
|
25342
25468
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25343
25469
|
required_arguments = ['externalClusterId', 'startTime', 'endTime']
|
@@ -25469,7 +25595,7 @@ class DbManagementClient(object):
|
|
25469
25595
|
:rtype: :class:`~oci.response.Response`
|
25470
25596
|
|
25471
25597
|
:example:
|
25472
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25598
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
|
25473
25599
|
"""
|
25474
25600
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25475
25601
|
required_arguments = ['externalDbNodeId', 'startTime', 'endTime']
|
@@ -25601,7 +25727,7 @@ class DbManagementClient(object):
|
|
25601
25727
|
:rtype: :class:`~oci.response.Response`
|
25602
25728
|
|
25603
25729
|
:example:
|
25604
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25730
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
|
25605
25731
|
"""
|
25606
25732
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25607
25733
|
required_arguments = ['externalDbSystemId', 'startTime', 'endTime']
|
@@ -25733,7 +25859,7 @@ class DbManagementClient(object):
|
|
25733
25859
|
:rtype: :class:`~oci.response.Response`
|
25734
25860
|
|
25735
25861
|
:example:
|
25736
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
|
25737
25863
|
"""
|
25738
25864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25739
25865
|
required_arguments = ['externalListenerId', 'startTime', 'endTime']
|
@@ -25883,7 +26009,7 @@ class DbManagementClient(object):
|
|
25883
26009
|
:rtype: :class:`~oci.response.Response`
|
25884
26010
|
|
25885
26011
|
:example:
|
25886
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26012
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
|
25887
26013
|
"""
|
25888
26014
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25889
26015
|
required_arguments = ['compartmentId', 'startTime', 'endTime']
|
@@ -26020,7 +26146,7 @@ class DbManagementClient(object):
|
|
26020
26146
|
:rtype: :class:`~oci.response.Response`
|
26021
26147
|
|
26022
26148
|
:example:
|
26023
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
|
26024
26150
|
"""
|
26025
26151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26026
26152
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -26139,7 +26265,7 @@ class DbManagementClient(object):
|
|
26139
26265
|
:rtype: :class:`~oci.response.Response`
|
26140
26266
|
|
26141
26267
|
:example:
|
26142
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26268
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
|
26143
26269
|
"""
|
26144
26270
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26145
26271
|
required_arguments = ['managedDatabaseId']
|
@@ -26256,7 +26382,7 @@ class DbManagementClient(object):
|
|
26256
26382
|
:rtype: :class:`~oci.response.Response`
|
26257
26383
|
|
26258
26384
|
:example:
|
26259
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26385
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
|
26260
26386
|
"""
|
26261
26387
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26262
26388
|
required_arguments = ['managedDatabaseId']
|
@@ -26371,7 +26497,7 @@ class DbManagementClient(object):
|
|
26371
26497
|
:rtype: :class:`~oci.response.Response`
|
26372
26498
|
|
26373
26499
|
:example:
|
26374
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26500
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
|
26375
26501
|
"""
|
26376
26502
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26377
26503
|
required_arguments = ['namedCredentialId']
|
@@ -26477,7 +26603,7 @@ class DbManagementClient(object):
|
|
26477
26603
|
:rtype: :class:`~oci.response.Response`
|
26478
26604
|
|
26479
26605
|
:example:
|
26480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26606
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
|
26481
26607
|
"""
|
26482
26608
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26483
26609
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -26589,7 +26715,7 @@ class DbManagementClient(object):
|
|
26589
26715
|
:rtype: :class:`~oci.response.Response`
|
26590
26716
|
|
26591
26717
|
:example:
|
26592
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26718
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
|
26593
26719
|
"""
|
26594
26720
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26595
26721
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -26701,7 +26827,7 @@ class DbManagementClient(object):
|
|
26701
26827
|
:rtype: :class:`~oci.response.Response`
|
26702
26828
|
|
26703
26829
|
:example:
|
26704
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26830
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
|
26705
26831
|
"""
|
26706
26832
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26707
26833
|
required_arguments = ['externalAsmId']
|
@@ -26811,7 +26937,7 @@ class DbManagementClient(object):
|
|
26811
26937
|
:rtype: :class:`~oci.response.Response`
|
26812
26938
|
|
26813
26939
|
:example:
|
26814
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26940
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
|
26815
26941
|
"""
|
26816
26942
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26817
26943
|
required_arguments = ['externalAsmInstanceId']
|
@@ -26923,7 +27049,7 @@ class DbManagementClient(object):
|
|
26923
27049
|
:rtype: :class:`~oci.response.Response`
|
26924
27050
|
|
26925
27051
|
:example:
|
26926
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27052
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
|
26927
27053
|
"""
|
26928
27054
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26929
27055
|
required_arguments = ['externalClusterId']
|
@@ -27033,7 +27159,7 @@ class DbManagementClient(object):
|
|
27033
27159
|
:rtype: :class:`~oci.response.Response`
|
27034
27160
|
|
27035
27161
|
:example:
|
27036
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27162
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
|
27037
27163
|
"""
|
27038
27164
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27039
27165
|
required_arguments = ['externalClusterInstanceId']
|
@@ -27143,7 +27269,7 @@ class DbManagementClient(object):
|
|
27143
27269
|
:rtype: :class:`~oci.response.Response`
|
27144
27270
|
|
27145
27271
|
:example:
|
27146
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27272
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
|
27147
27273
|
"""
|
27148
27274
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27149
27275
|
required_arguments = ['externalDbHomeId']
|
@@ -27255,7 +27381,7 @@ class DbManagementClient(object):
|
|
27255
27381
|
:rtype: :class:`~oci.response.Response`
|
27256
27382
|
|
27257
27383
|
:example:
|
27258
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27384
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
|
27259
27385
|
"""
|
27260
27386
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27261
27387
|
required_arguments = ['externalDbNodeId']
|
@@ -27365,7 +27491,7 @@ class DbManagementClient(object):
|
|
27365
27491
|
:rtype: :class:`~oci.response.Response`
|
27366
27492
|
|
27367
27493
|
:example:
|
27368
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
|
27369
27495
|
"""
|
27370
27496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27371
27497
|
required_arguments = ['externalDbSystemId']
|
@@ -27477,7 +27603,7 @@ class DbManagementClient(object):
|
|
27477
27603
|
:rtype: :class:`~oci.response.Response`
|
27478
27604
|
|
27479
27605
|
:example:
|
27480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27606
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
|
27481
27607
|
"""
|
27482
27608
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27483
27609
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -27587,7 +27713,7 @@ class DbManagementClient(object):
|
|
27587
27713
|
:rtype: :class:`~oci.response.Response`
|
27588
27714
|
|
27589
27715
|
:example:
|
27590
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27716
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
|
27591
27717
|
"""
|
27592
27718
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27593
27719
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -27706,7 +27832,7 @@ class DbManagementClient(object):
|
|
27706
27832
|
:rtype: :class:`~oci.response.Response`
|
27707
27833
|
|
27708
27834
|
:example:
|
27709
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27835
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
|
27710
27836
|
"""
|
27711
27837
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27712
27838
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -27823,7 +27949,7 @@ class DbManagementClient(object):
|
|
27823
27949
|
:rtype: :class:`~oci.response.Response`
|
27824
27950
|
|
27825
27951
|
:example:
|
27826
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27952
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
|
27827
27953
|
"""
|
27828
27954
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27829
27955
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -27935,7 +28061,7 @@ class DbManagementClient(object):
|
|
27935
28061
|
:rtype: :class:`~oci.response.Response`
|
27936
28062
|
|
27937
28063
|
:example:
|
27938
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28064
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
|
27939
28065
|
"""
|
27940
28066
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27941
28067
|
required_arguments = ['externalExadataStorageGridId']
|
@@ -28047,7 +28173,7 @@ class DbManagementClient(object):
|
|
28047
28173
|
:rtype: :class:`~oci.response.Response`
|
28048
28174
|
|
28049
28175
|
:example:
|
28050
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
|
28051
28177
|
"""
|
28052
28178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28053
28179
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -28159,7 +28285,7 @@ class DbManagementClient(object):
|
|
28159
28285
|
:rtype: :class:`~oci.response.Response`
|
28160
28286
|
|
28161
28287
|
:example:
|
28162
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28288
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
|
28163
28289
|
"""
|
28164
28290
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28165
28291
|
required_arguments = ['externalListenerId']
|
@@ -28267,7 +28393,7 @@ class DbManagementClient(object):
|
|
28267
28393
|
:rtype: :class:`~oci.response.Response`
|
28268
28394
|
|
28269
28395
|
:example:
|
28270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28396
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_mysql_database.py.html>`__ to see an example of how to use update_external_mysql_database API.
|
28271
28397
|
"""
|
28272
28398
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28273
28399
|
required_arguments = ['externalMySqlDatabaseId']
|
@@ -28377,7 +28503,7 @@ class DbManagementClient(object):
|
|
28377
28503
|
:rtype: :class:`~oci.response.Response`
|
28378
28504
|
|
28379
28505
|
:example:
|
28380
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_external_mysql_database_connector.py.html>`__ to see an example of how to use update_external_mysql_database_connector API.
|
28381
28507
|
"""
|
28382
28508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28383
28509
|
required_arguments = ['externalMySqlDatabaseConnectorId']
|
@@ -28487,7 +28613,7 @@ class DbManagementClient(object):
|
|
28487
28613
|
:rtype: :class:`~oci.response.Response`
|
28488
28614
|
|
28489
28615
|
:example:
|
28490
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28616
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
|
28491
28617
|
"""
|
28492
28618
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28493
28619
|
required_arguments = ['jobId']
|
@@ -28599,7 +28725,7 @@ class DbManagementClient(object):
|
|
28599
28725
|
:rtype: :class:`~oci.response.Response`
|
28600
28726
|
|
28601
28727
|
:example:
|
28602
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28728
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
|
28603
28729
|
"""
|
28604
28730
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28605
28731
|
required_arguments = ['managedDatabaseId']
|
@@ -28711,7 +28837,7 @@ class DbManagementClient(object):
|
|
28711
28837
|
:rtype: :class:`~oci.response.Response`
|
28712
28838
|
|
28713
28839
|
:example:
|
28714
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28840
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
|
28715
28841
|
"""
|
28716
28842
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28717
28843
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -28823,7 +28949,7 @@ class DbManagementClient(object):
|
|
28823
28949
|
:rtype: :class:`~oci.response.Response`
|
28824
28950
|
|
28825
28951
|
:example:
|
28826
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28952
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
|
28827
28953
|
"""
|
28828
28954
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28829
28955
|
required_arguments = ['namedCredentialId']
|
@@ -28938,7 +29064,7 @@ class DbManagementClient(object):
|
|
28938
29064
|
:rtype: :class:`~oci.response.Response`
|
28939
29065
|
|
28940
29066
|
:example:
|
28941
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29067
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
|
28942
29068
|
"""
|
28943
29069
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28944
29070
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -29047,7 +29173,7 @@ class DbManagementClient(object):
|
|
29047
29173
|
:rtype: :class:`~oci.response.Response`
|
29048
29174
|
|
29049
29175
|
:example:
|
29050
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
|
29051
29177
|
"""
|
29052
29178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29053
29179
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|