oci 2.138.1__py3-none-any.whl → 2.140.0__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/_vendor/idna/__init__.py +45 -2
- oci/_vendor/idna/codec.py +47 -43
- oci/_vendor/idna/compat.py +10 -7
- oci/_vendor/idna/core.py +210 -173
- oci/_vendor/idna/idnadata.py +3869 -1676
- oci/_vendor/idna/intranges.py +13 -9
- oci/_vendor/idna/package_data.py +2 -3
- oci/_vendor/idna/uts46data.py +8355 -8031
- oci/_vendor/urllib3/__init__.py +1 -1
- oci/_vendor/urllib3/_collections.py +19 -1
- oci/_vendor/urllib3/_version.py +2 -2
- oci/_vendor/urllib3/connection.py +8 -3
- oci/_vendor/urllib3/connectionpool.py +45 -13
- oci/_vendor/urllib3/contrib/__init__.py +1 -1
- oci/_vendor/urllib3/contrib/_appengine_environ.py +1 -1
- oci/_vendor/urllib3/contrib/_securetransport/__init__.py +1 -1
- oci/_vendor/urllib3/contrib/_securetransport/bindings.py +2 -2
- oci/_vendor/urllib3/contrib/_securetransport/low_level.py +1 -1
- oci/_vendor/urllib3/contrib/appengine.py +2 -2
- oci/_vendor/urllib3/contrib/ntlmpool.py +3 -3
- oci/_vendor/urllib3/contrib/pyopenssl.py +14 -7
- oci/_vendor/urllib3/contrib/securetransport.py +2 -4
- oci/_vendor/urllib3/contrib/socks.py +1 -1
- oci/_vendor/urllib3/exceptions.py +1 -1
- oci/_vendor/urllib3/fields.py +1 -1
- oci/_vendor/urllib3/filepost.py +1 -1
- oci/_vendor/urllib3/packages/__init__.py +2 -2
- oci/_vendor/urllib3/packages/backports/__init__.py +1 -1
- oci/_vendor/urllib3/packages/backports/makefile.py +1 -1
- oci/_vendor/urllib3/packages/backports/weakref_finalize.py +160 -0
- oci/_vendor/urllib3/packages/six.py +1 -2
- oci/_vendor/urllib3/poolmanager.py +7 -4
- oci/_vendor/urllib3/request.py +22 -1
- oci/_vendor/urllib3/response.py +65 -4
- oci/_vendor/urllib3/util/__init__.py +1 -1
- oci/_vendor/urllib3/util/connection.py +1 -1
- oci/_vendor/urllib3/util/proxy.py +1 -1
- oci/_vendor/urllib3/util/queue.py +1 -1
- oci/_vendor/urllib3/util/request.py +1 -1
- oci/_vendor/urllib3/util/response.py +1 -1
- oci/_vendor/urllib3/util/retry.py +5 -3
- oci/_vendor/urllib3/util/ssl_.py +14 -5
- oci/_vendor/urllib3/util/ssl_match_hostname.py +1 -1
- oci/_vendor/urllib3/util/ssltransport.py +1 -1
- oci/_vendor/urllib3/util/timeout.py +7 -4
- oci/_vendor/urllib3/util/url.py +8 -5
- oci/_vendor/urllib3/util/wait.py +1 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- 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_language/models/__init__.py +6 -0
- oci/ai_language/models/batch_detect_dominant_language_details.py +31 -0
- oci/ai_language/models/batch_detect_health_entity_details.py +31 -0
- oci/ai_language/models/batch_detect_language_entities_details.py +31 -0
- oci/ai_language/models/batch_detect_language_key_phrases_details.py +31 -0
- oci/ai_language/models/batch_detect_language_pii_entities_details.py +31 -0
- oci/ai_language/models/batch_detect_language_sentiments_details.py +31 -0
- oci/ai_language/models/batch_detect_language_text_classification_details.py +31 -0
- oci/ai_language/models/batch_language_translation_details.py +93 -0
- oci/ai_language/models/create_endpoint_details.py +78 -0
- oci/ai_language/models/endpoint.py +78 -0
- oci/ai_language/models/endpoint_summary.py +78 -0
- oci/ai_language/models/health_nlu_model_details.py +91 -0
- oci/ai_language/models/hierarchical_entity.py +27 -0
- oci/ai_language/models/meta_info.py +196 -0
- oci/ai_language/models/model_details.py +35 -23
- oci/ai_language/models/named_entity_recognition_model_details.py +1 -1
- oci/ai_language/models/pii_entity_mask.py +14 -0
- oci/ai_language/models/pii_entity_masking.py +64 -2
- oci/ai_language/models/pii_entity_remove.py +16 -2
- oci/ai_language/models/pii_entity_replace.py +14 -0
- oci/ai_language/models/pii_model_details.py +1 -1
- oci/ai_language/models/pre_trained_health_nlu_model_details.py +1 -1
- oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py +1 -1
- oci/ai_language/models/pre_trained_language_detection_model_details.py +1 -1
- oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py +1 -1
- oci/ai_language/models/pre_trained_pii_model_details.py +1 -1
- oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py +1 -1
- oci/ai_language/models/pre_trained_summarization.py +1 -1
- oci/ai_language/models/pre_trained_text_classification_model_details.py +1 -1
- oci/ai_language/models/pre_trained_translation_model_details.py +91 -0
- oci/ai_language/models/pre_trained_universal_model.py +1 -1
- oci/ai_language/models/text_classification_model_details.py +1 -1
- oci/ai_language/models/update_endpoint_details.py +31 -0
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +25 -25
- 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 +9 -9
- 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/auth/signers/oke_workload_identity_resource_principal_signer.py +12 -5
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +72 -72
- 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 +13 -14
- oci/cims/models/__init__.py +4 -2
- oci/cims/models/cmos_user_group_info.py +103 -0
- oci/cims/models/create_incident.py +33 -2
- oci/cims/models/create_limit_item_details.py +2 -57
- oci/cims/models/create_user_details.py +4 -4
- oci/cims/models/incident.py +188 -0
- oci/cims/models/incident_resource_type.py +4 -4
- oci/cims/models/incident_summary.py +188 -0
- oci/cims/models/limit_item.py +2 -2
- oci/cims/models/{service_categories.py → services.py} +27 -27
- oci/cims/models/sub_categories.py +15 -15
- oci/cims/models/ticket.py +7 -3
- oci/cims/models/validation_response.py +33 -2
- 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 +22 -22
- 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 +44 -44
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +102 -102
- oci/core/compute_management_client.py +32 -32
- oci/core/models/__init__.py +10 -0
- oci/core/models/instance.py +33 -2
- oci/core/models/instance_configuration_launch_instance_details.py +33 -2
- oci/core/models/launch_instance_details.py +33 -2
- oci/core/models/launch_instance_licensing_config.py +152 -0
- oci/core/models/launch_instance_windows_licensing_config.py +59 -0
- oci/core/models/licensing_config.py +166 -0
- oci/core/models/update_instance_details.py +33 -2
- oci/core/models/update_instance_licensing_config.py +152 -0
- oci/core/models/update_instance_windows_licensing_config.py +59 -0
- oci/core/virtual_network_client.py +247 -247
- 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 +146 -44
- oci/data_flow/data_flow_client_composite_operations.py +39 -0
- oci/data_flow/models/application.py +7 -3
- oci/data_flow/models/application_summary.py +7 -3
- 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 +292 -292
- oci/data_science/data_science_client.py +92 -92
- oci/database/database_client.py +537 -400
- oci/database/database_client_composite_operations.py +88 -0
- oci/database/models/__init__.py +8 -0
- oci/database/models/autonomous_database.py +2 -2
- oci/database/models/autonomous_database_summary.py +2 -2
- oci/database/models/configure_exascale_exadata_infrastructure_details.py +72 -0
- oci/database/models/create_autonomous_database_base.py +2 -2
- oci/database/models/create_db_home_details.py +33 -2
- oci/database/models/create_db_home_from_backup_details.py +31 -0
- oci/database/models/create_db_home_from_database_details.py +31 -0
- oci/database/models/create_exascale_db_storage_vault_details.py +37 -2
- oci/database/models/create_pluggable_database_creation_type_details.py +2 -2
- oci/database/models/create_vm_cluster_details.py +37 -2
- oci/database/models/exadata_infrastructure.py +29 -2
- oci/database/models/exadata_infrastructure_summary.py +29 -2
- oci/database/models/exascale_config_details.py +103 -0
- oci/database/models/exascale_db_storage_vault.py +35 -0
- oci/database/models/exascale_db_storage_vault_summary.py +37 -2
- oci/database/models/rotate_autonomous_container_database_encryption_key_details.py +76 -0
- oci/database/models/rotate_autonomous_database_encryption_key_details.py +76 -0
- oci/database/models/update_autonomous_database_details.py +2 -2
- oci/database/models/vm_cluster.py +84 -2
- oci/database/models/vm_cluster_summary.py +84 -2
- oci/database_management/db_management_client.py +211 -211
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -7
- 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/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 +289 -31
- oci/disaster_recovery/disaster_recovery_client_composite_operations.py +88 -0
- oci/disaster_recovery/models/__init__.py +8 -0
- oci/disaster_recovery/models/create_dr_plan_details.py +35 -0
- oci/disaster_recovery/models/dr_plan.py +92 -0
- oci/disaster_recovery/models/dr_plan_group.py +55 -0
- oci/disaster_recovery/models/dr_plan_step.py +51 -0
- oci/disaster_recovery/models/dr_plan_summary.py +59 -0
- oci/disaster_recovery/models/refresh_dr_plan_default_details.py +51 -0
- oci/disaster_recovery/models/refresh_dr_plan_details.py +101 -0
- oci/disaster_recovery/models/verify_dr_plan_default_details.py +51 -0
- oci/disaster_recovery/models/verify_dr_plan_details.py +101 -0
- oci/disaster_recovery/models/work_request.py +11 -3
- oci/disaster_recovery/models/work_request_summary.py +11 -3
- 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 +68 -68
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +25 -25
- oci/fleet_apps_management/fleet_apps_management_client.py +35 -35
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +26 -26
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +12 -12
- oci/fleet_software_update/fleet_software_update_client.py +48 -48
- oci/fleet_software_update/models/__init__.py +12 -0
- oci/fleet_software_update/models/apply_action.py +1 -1
- oci/fleet_software_update/models/apply_action_summary.py +1 -1
- oci/fleet_software_update/models/apply_fsu_job.py +1 -1
- oci/fleet_software_update/models/apply_fsu_job_summary.py +1 -1
- oci/fleet_software_update/models/cleanup_action.py +1 -1
- oci/fleet_software_update/models/cleanup_action_summary.py +1 -1
- oci/fleet_software_update/models/cleanup_fsu_job.py +1 -1
- oci/fleet_software_update/models/cleanup_fsu_job_summary.py +1 -1
- oci/fleet_software_update/models/create_apply_action_details.py +1 -1
- oci/fleet_software_update/models/create_cleanup_action_details.py +1 -1
- oci/fleet_software_update/models/create_fsu_action_details.py +11 -3
- oci/fleet_software_update/models/create_precheck_action_details.py +1 -1
- oci/fleet_software_update/models/create_rollback_action_details.py +1 -1
- oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py +111 -0
- oci/fleet_software_update/models/create_stage_action_details.py +1 -1
- oci/fleet_software_update/models/db_collection.py +7 -0
- oci/fleet_software_update/models/db_fsu_collection_summary.py +7 -0
- oci/fleet_software_update/models/fsu_action.py +11 -3
- oci/fleet_software_update/models/fsu_action_summary.py +11 -3
- oci/fleet_software_update/models/fsu_collection.py +35 -0
- oci/fleet_software_update/models/fsu_collection_summary.py +35 -0
- oci/fleet_software_update/models/fsu_cycle.py +105 -3
- oci/fleet_software_update/models/fsu_cycle_summary.py +101 -3
- oci/fleet_software_update/models/fsu_job.py +11 -3
- oci/fleet_software_update/models/fsu_job_summary.py +11 -3
- oci/fleet_software_update/models/gi_collection.py +7 -0
- oci/fleet_software_update/models/gi_fsu_collection_summary.py +7 -0
- oci/fleet_software_update/models/next_action_to_execute_details.py +7 -3
- oci/fleet_software_update/models/patch_fsu_cycle.py +16 -1
- oci/fleet_software_update/models/precheck_action.py +1 -1
- oci/fleet_software_update/models/precheck_action_summary.py +1 -1
- oci/fleet_software_update/models/precheck_fsu_job.py +1 -1
- oci/fleet_software_update/models/precheck_fsu_job_summary.py +1 -1
- oci/fleet_software_update/models/rollback_action.py +1 -1
- oci/fleet_software_update/models/rollback_action_summary.py +1 -1
- oci/fleet_software_update/models/rollback_cycle_action.py +226 -0
- oci/fleet_software_update/models/rollback_cycle_action_summary.py +225 -0
- oci/fleet_software_update/models/rollback_cycle_fsu_job.py +278 -0
- oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py +251 -0
- oci/fleet_software_update/models/rollback_fsu_job.py +1 -1
- oci/fleet_software_update/models/rollback_fsu_job_summary.py +1 -1
- oci/fleet_software_update/models/stage_action.py +1 -1
- oci/fleet_software_update/models/stage_action_summary.py +1 -1
- oci/fleet_software_update/models/stage_fsu_job.py +1 -1
- oci/fleet_software_update/models/stage_fsu_job_summary.py +1 -1
- oci/fleet_software_update/models/update_apply_action_details.py +1 -1
- oci/fleet_software_update/models/update_cleanup_action_details.py +1 -1
- oci/fleet_software_update/models/update_fsu_action_details.py +11 -3
- oci/fleet_software_update/models/update_precheck_action_details.py +1 -1
- oci/fleet_software_update/models/update_rollback_action_details.py +1 -1
- oci/fleet_software_update/models/update_rollback_cycle_action_details.py +72 -0
- oci/fleet_software_update/models/update_stage_action_details.py +1 -1
- oci/fleet_software_update/models/work_request.py +7 -3
- oci/fleet_software_update/models/work_request_summary.py +7 -3
- 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_agent/generative_ai_agent_client.py +33 -33
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +5 -5
- oci/generative_ai_inference/generative_ai_inference_client.py +4 -4
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +70 -70
- 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 +75 -75
- 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 +193 -193
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- 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/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/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 +34 -34
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +153 -57
- oci/object_storage/transfer/internal/multipart_object_assembler.py +15 -0
- 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/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +14 -14
- 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 +180 -180
- 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 +12 -12
- oci/os_management_hub/managed_instance_client.py +31 -31
- oci/os_management_hub/managed_instance_group_client.py +25 -25
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +6 -6
- 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 +27 -27
- oci/os_management_hub/work_request_client.py +4 -4
- 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/models/connection_details.py +29 -2
- oci/psql/models/endpoint.py +1 -1
- oci/psql/models/network_details.py +33 -2
- oci/psql/models/update_network_details.py +33 -2
- oci/psql/postgresql_client.py +33 -33
- 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 +13 -13
- 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 +71 -71
- 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/models/__init__.py +8 -4
- oci/visual_builder/models/create_vb_instance_details.py +29 -2
- oci/visual_builder/models/network_endpoint_details.py +102 -0
- oci/visual_builder/models/private_endpoint_details.py +144 -0
- oci/visual_builder/models/update_network_endpoint_details.py +102 -0
- oci/visual_builder/models/update_private_endpoint_details.py +113 -0
- oci/visual_builder/models/update_vb_instance_details.py +29 -2
- oci/visual_builder/models/vb_instance.py +29 -60
- oci/visual_builder/models/vb_instance_summary.py +29 -2
- oci/visual_builder/vb_instance_client.py +129 -13
- oci/visual_builder/vb_instance_client_composite_operations.py +39 -0
- 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.138.1.dist-info → oci-2.140.0.dist-info}/METADATA +1 -1
- {oci-2.138.1.dist-info → oci-2.140.0.dist-info}/RECORD +471 -445
- {oci-2.138.1.dist-info → oci-2.140.0.dist-info}/THIRD_PARTY_LICENSES.txt +1 -1
- oci/visual_builder/models/attachment_details.py +0 -218
- oci/visual_builder/models/idcs_info_details.py +0 -198
- {oci-2.138.1.dist-info → oci-2.140.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.138.1.dist-info → oci-2.140.0.dist-info}/WHEEL +0 -0
- {oci-2.138.1.dist-info → oci-2.140.0.dist-info}/top_level.txt +0 -0
oci/database/database_client.py
CHANGED
@@ -157,7 +157,7 @@ class DatabaseClient(object):
|
|
157
157
|
:rtype: :class:`~oci.response.Response`
|
158
158
|
|
159
159
|
:example:
|
160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
|
161
161
|
"""
|
162
162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
163
163
|
required_arguments = ['exadataInfrastructureId']
|
@@ -272,7 +272,7 @@ class DatabaseClient(object):
|
|
272
272
|
:rtype: :class:`~oci.response.Response`
|
273
273
|
|
274
274
|
:example:
|
275
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
|
276
276
|
"""
|
277
277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
278
278
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -387,7 +387,7 @@ class DatabaseClient(object):
|
|
387
387
|
:rtype: :class:`~oci.response.Response`
|
388
388
|
|
389
389
|
:example:
|
390
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
390
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
|
391
391
|
"""
|
392
392
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
393
393
|
required_arguments = ['exadataInfrastructureId']
|
@@ -505,7 +505,7 @@ class DatabaseClient(object):
|
|
505
505
|
:rtype: :class:`~oci.response.Response`
|
506
506
|
|
507
507
|
:example:
|
508
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
508
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
|
509
509
|
"""
|
510
510
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
511
511
|
required_arguments = ['cloudVmClusterId']
|
@@ -625,7 +625,7 @@ class DatabaseClient(object):
|
|
625
625
|
:rtype: :class:`~oci.response.Response`
|
626
626
|
|
627
627
|
:example:
|
628
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
628
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
|
629
629
|
"""
|
630
630
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
631
631
|
required_arguments = ['vmClusterId']
|
@@ -745,7 +745,7 @@ class DatabaseClient(object):
|
|
745
745
|
:rtype: :class:`~oci.response.Response`
|
746
746
|
|
747
747
|
:example:
|
748
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
748
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
|
749
749
|
"""
|
750
750
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
751
751
|
required_arguments = ['autonomousDatabaseId']
|
@@ -862,7 +862,7 @@ class DatabaseClient(object):
|
|
862
862
|
:rtype: :class:`~oci.response.Response`
|
863
863
|
|
864
864
|
:example:
|
865
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
865
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
|
866
866
|
"""
|
867
867
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
868
868
|
required_arguments = ['backupId']
|
@@ -978,7 +978,7 @@ class DatabaseClient(object):
|
|
978
978
|
:rtype: :class:`~oci.response.Response`
|
979
979
|
|
980
980
|
:example:
|
981
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
981
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
|
982
982
|
"""
|
983
983
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
984
984
|
required_arguments = ['executionWindowId']
|
@@ -1095,7 +1095,7 @@ class DatabaseClient(object):
|
|
1095
1095
|
:rtype: :class:`~oci.response.Response`
|
1096
1096
|
|
1097
1097
|
:example:
|
1098
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1098
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
|
1099
1099
|
"""
|
1100
1100
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1101
1101
|
required_arguments = ['schedulingPlanId']
|
@@ -1215,7 +1215,7 @@ class DatabaseClient(object):
|
|
1215
1215
|
:rtype: :class:`~oci.response.Response`
|
1216
1216
|
|
1217
1217
|
:example:
|
1218
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1218
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
|
1219
1219
|
"""
|
1220
1220
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1221
1221
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -1337,7 +1337,7 @@ class DatabaseClient(object):
|
|
1337
1337
|
:rtype: :class:`~oci.response.Response`
|
1338
1338
|
|
1339
1339
|
:example:
|
1340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1340
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
|
1341
1341
|
"""
|
1342
1342
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1343
1343
|
required_arguments = ['autonomousDatabaseId']
|
@@ -1455,7 +1455,7 @@ class DatabaseClient(object):
|
|
1455
1455
|
:rtype: :class:`~oci.response.Response`
|
1456
1456
|
|
1457
1457
|
:example:
|
1458
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1458
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
|
1459
1459
|
"""
|
1460
1460
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1461
1461
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -1573,7 +1573,7 @@ class DatabaseClient(object):
|
|
1573
1573
|
:rtype: :class:`~oci.response.Response`
|
1574
1574
|
|
1575
1575
|
:example:
|
1576
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1576
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
|
1577
1577
|
"""
|
1578
1578
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1579
1579
|
required_arguments = ['autonomousDatabaseId']
|
@@ -1695,7 +1695,7 @@ class DatabaseClient(object):
|
|
1695
1695
|
:rtype: :class:`~oci.response.Response`
|
1696
1696
|
|
1697
1697
|
:example:
|
1698
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1698
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
|
1699
1699
|
"""
|
1700
1700
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1701
1701
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -1813,7 +1813,7 @@ class DatabaseClient(object):
|
|
1813
1813
|
:rtype: :class:`~oci.response.Response`
|
1814
1814
|
|
1815
1815
|
:example:
|
1816
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1816
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
|
1817
1817
|
"""
|
1818
1818
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1819
1819
|
required_arguments = ['autonomousVmClusterId']
|
@@ -1935,7 +1935,7 @@ class DatabaseClient(object):
|
|
1935
1935
|
:rtype: :class:`~oci.response.Response`
|
1936
1936
|
|
1937
1937
|
:example:
|
1938
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1938
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
|
1939
1939
|
"""
|
1940
1940
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1941
1941
|
required_arguments = ['backupDestinationId']
|
@@ -2053,7 +2053,7 @@ class DatabaseClient(object):
|
|
2053
2053
|
:rtype: :class:`~oci.response.Response`
|
2054
2054
|
|
2055
2055
|
:example:
|
2056
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2056
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
|
2057
2057
|
"""
|
2058
2058
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2059
2059
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -2173,7 +2173,7 @@ class DatabaseClient(object):
|
|
2173
2173
|
:rtype: :class:`~oci.response.Response`
|
2174
2174
|
|
2175
2175
|
:example:
|
2176
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
|
2177
2177
|
"""
|
2178
2178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2179
2179
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -2291,7 +2291,7 @@ class DatabaseClient(object):
|
|
2291
2291
|
:rtype: :class:`~oci.response.Response`
|
2292
2292
|
|
2293
2293
|
:example:
|
2294
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2294
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
|
2295
2295
|
"""
|
2296
2296
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2297
2297
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -2409,7 +2409,7 @@ class DatabaseClient(object):
|
|
2409
2409
|
:rtype: :class:`~oci.response.Response`
|
2410
2410
|
|
2411
2411
|
:example:
|
2412
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2412
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
|
2413
2413
|
"""
|
2414
2414
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2415
2415
|
required_arguments = ['cloudVmClusterId']
|
@@ -2527,7 +2527,7 @@ class DatabaseClient(object):
|
|
2527
2527
|
:rtype: :class:`~oci.response.Response`
|
2528
2528
|
|
2529
2529
|
:example:
|
2530
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2530
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
|
2531
2531
|
"""
|
2532
2532
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2533
2533
|
required_arguments = ['cloudVmClusterId']
|
@@ -2649,7 +2649,7 @@ class DatabaseClient(object):
|
|
2649
2649
|
:rtype: :class:`~oci.response.Response`
|
2650
2650
|
|
2651
2651
|
:example:
|
2652
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2652
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
|
2653
2653
|
"""
|
2654
2654
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2655
2655
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -2772,7 +2772,7 @@ class DatabaseClient(object):
|
|
2772
2772
|
:rtype: :class:`~oci.response.Response`
|
2773
2773
|
|
2774
2774
|
:example:
|
2775
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2775
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
|
2776
2776
|
"""
|
2777
2777
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2778
2778
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -2903,7 +2903,7 @@ class DatabaseClient(object):
|
|
2903
2903
|
:rtype: :class:`~oci.response.Response`
|
2904
2904
|
|
2905
2905
|
:example:
|
2906
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2906
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
|
2907
2907
|
"""
|
2908
2908
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2909
2909
|
required_arguments = ['dbSystemId']
|
@@ -3014,7 +3014,7 @@ class DatabaseClient(object):
|
|
3014
3014
|
:rtype: :class:`~oci.response.Response`
|
3015
3015
|
|
3016
3016
|
:example:
|
3017
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
|
3018
3018
|
"""
|
3019
3019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3020
3020
|
required_arguments = ['autonomousDatabaseId']
|
@@ -3132,7 +3132,7 @@ class DatabaseClient(object):
|
|
3132
3132
|
:rtype: :class:`~oci.response.Response`
|
3133
3133
|
|
3134
3134
|
:example:
|
3135
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3135
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
|
3136
3136
|
"""
|
3137
3137
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3138
3138
|
required_arguments = ['exadataInfrastructureId']
|
@@ -3250,7 +3250,7 @@ class DatabaseClient(object):
|
|
3250
3250
|
:rtype: :class:`~oci.response.Response`
|
3251
3251
|
|
3252
3252
|
:example:
|
3253
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3253
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
|
3254
3254
|
"""
|
3255
3255
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3256
3256
|
required_arguments = ['exadbVmClusterId']
|
@@ -3368,7 +3368,7 @@ class DatabaseClient(object):
|
|
3368
3368
|
:rtype: :class:`~oci.response.Response`
|
3369
3369
|
|
3370
3370
|
:example:
|
3371
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3371
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
|
3372
3372
|
"""
|
3373
3373
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3374
3374
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -3491,7 +3491,7 @@ class DatabaseClient(object):
|
|
3491
3491
|
:rtype: :class:`~oci.response.Response`
|
3492
3492
|
|
3493
3493
|
:example:
|
3494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
|
3495
3495
|
"""
|
3496
3496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3497
3497
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -3613,7 +3613,7 @@ class DatabaseClient(object):
|
|
3613
3613
|
:rtype: :class:`~oci.response.Response`
|
3614
3614
|
|
3615
3615
|
:example:
|
3616
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3616
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
|
3617
3617
|
"""
|
3618
3618
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3619
3619
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -3738,7 +3738,7 @@ class DatabaseClient(object):
|
|
3738
3738
|
:rtype: :class:`~oci.response.Response`
|
3739
3739
|
|
3740
3740
|
:example:
|
3741
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3741
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
|
3742
3742
|
"""
|
3743
3743
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3744
3744
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -3860,7 +3860,7 @@ class DatabaseClient(object):
|
|
3860
3860
|
:rtype: :class:`~oci.response.Response`
|
3861
3861
|
|
3862
3862
|
:example:
|
3863
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3863
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
|
3864
3864
|
"""
|
3865
3865
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3866
3866
|
required_arguments = ['keyStoreId']
|
@@ -3978,7 +3978,7 @@ class DatabaseClient(object):
|
|
3978
3978
|
:rtype: :class:`~oci.response.Response`
|
3979
3979
|
|
3980
3980
|
:example:
|
3981
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3981
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
|
3982
3982
|
"""
|
3983
3983
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3984
3984
|
required_arguments = ['databaseId']
|
@@ -4096,7 +4096,7 @@ class DatabaseClient(object):
|
|
4096
4096
|
:rtype: :class:`~oci.response.Response`
|
4097
4097
|
|
4098
4098
|
:example:
|
4099
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4099
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
|
4100
4100
|
"""
|
4101
4101
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4102
4102
|
required_arguments = ['oneoffPatchId']
|
@@ -4214,7 +4214,7 @@ class DatabaseClient(object):
|
|
4214
4214
|
:rtype: :class:`~oci.response.Response`
|
4215
4215
|
|
4216
4216
|
:example:
|
4217
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4217
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
|
4218
4218
|
"""
|
4219
4219
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4220
4220
|
required_arguments = ['schedulingPlanId']
|
@@ -4332,7 +4332,7 @@ class DatabaseClient(object):
|
|
4332
4332
|
:rtype: :class:`~oci.response.Response`
|
4333
4333
|
|
4334
4334
|
:example:
|
4335
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4335
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
|
4336
4336
|
"""
|
4337
4337
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4338
4338
|
required_arguments = ['schedulingPolicyId']
|
@@ -4451,7 +4451,7 @@ class DatabaseClient(object):
|
|
4451
4451
|
:rtype: :class:`~oci.response.Response`
|
4452
4452
|
|
4453
4453
|
:example:
|
4454
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4454
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
|
4455
4455
|
"""
|
4456
4456
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4457
4457
|
required_arguments = ['vmClusterId']
|
@@ -4568,7 +4568,7 @@ class DatabaseClient(object):
|
|
4568
4568
|
:rtype: :class:`~oci.response.Response`
|
4569
4569
|
|
4570
4570
|
:example:
|
4571
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4571
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
|
4572
4572
|
"""
|
4573
4573
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4574
4574
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -4685,7 +4685,7 @@ class DatabaseClient(object):
|
|
4685
4685
|
:rtype: :class:`~oci.response.Response`
|
4686
4686
|
|
4687
4687
|
:example:
|
4688
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4688
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
|
4689
4689
|
"""
|
4690
4690
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4691
4691
|
required_arguments = ['backupId']
|
@@ -4807,7 +4807,7 @@ class DatabaseClient(object):
|
|
4807
4807
|
:rtype: :class:`~oci.response.Response`
|
4808
4808
|
|
4809
4809
|
:example:
|
4810
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4810
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
|
4811
4811
|
"""
|
4812
4812
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4813
4813
|
required_arguments = ['autonomousDatabaseId']
|
@@ -4881,6 +4881,126 @@ class DatabaseClient(object):
|
|
4881
4881
|
api_reference_link=api_reference_link,
|
4882
4882
|
required_arguments=required_arguments)
|
4883
4883
|
|
4884
|
+
def configure_exascale_exadata_infrastructure(self, exadata_infrastructure_id, configure_exascale_exadata_infrastructure_details, **kwargs):
|
4885
|
+
"""
|
4886
|
+
Configures Exascale on Exadata infrastructure resource. Applies to Exadata Cloud@Customer instances only.
|
4887
|
+
|
4888
|
+
|
4889
|
+
:param str exadata_infrastructure_id: (required)
|
4890
|
+
The Exadata infrastructure `OCID`__.
|
4891
|
+
|
4892
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
4893
|
+
|
4894
|
+
:param oci.database.models.ConfigureExascaleExadataInfrastructureDetails configure_exascale_exadata_infrastructure_details: (required)
|
4895
|
+
The exascale config details for the Exadata infrastructure with the total storage needed.
|
4896
|
+
|
4897
|
+
:param str if_match: (optional)
|
4898
|
+
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
4899
|
+
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
4900
|
+
will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
4901
|
+
|
4902
|
+
:param str opc_request_id: (optional)
|
4903
|
+
Unique identifier for the request.
|
4904
|
+
|
4905
|
+
:param str opc_retry_token: (optional)
|
4906
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
4907
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
4908
|
+
hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
4909
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
4910
|
+
may be rejected).
|
4911
|
+
|
4912
|
+
:param obj retry_strategy: (optional)
|
4913
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
4914
|
+
|
4915
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
|
4916
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
4917
|
+
|
4918
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
4919
|
+
|
4920
|
+
:param bool allow_control_chars: (optional)
|
4921
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
4922
|
+
By default, the response will not allow control characters in strings
|
4923
|
+
|
4924
|
+
:return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure`
|
4925
|
+
:rtype: :class:`~oci.response.Response`
|
4926
|
+
|
4927
|
+
:example:
|
4928
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
|
4929
|
+
"""
|
4930
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4931
|
+
required_arguments = ['exadataInfrastructureId']
|
4932
|
+
resource_path = "/exadataInfrastructures/{exadataInfrastructureId}/actions/configureExascale"
|
4933
|
+
method = "POST"
|
4934
|
+
operation_name = "configure_exascale_exadata_infrastructure"
|
4935
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/ExadataInfrastructure/ConfigureExascaleExadataInfrastructure"
|
4936
|
+
|
4937
|
+
# Don't accept unknown kwargs
|
4938
|
+
expected_kwargs = [
|
4939
|
+
"allow_control_chars",
|
4940
|
+
"retry_strategy",
|
4941
|
+
"if_match",
|
4942
|
+
"opc_request_id",
|
4943
|
+
"opc_retry_token"
|
4944
|
+
]
|
4945
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
4946
|
+
if extra_kwargs:
|
4947
|
+
raise ValueError(
|
4948
|
+
f"configure_exascale_exadata_infrastructure got unknown kwargs: {extra_kwargs!r}")
|
4949
|
+
|
4950
|
+
path_params = {
|
4951
|
+
"exadataInfrastructureId": exadata_infrastructure_id
|
4952
|
+
}
|
4953
|
+
|
4954
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
4955
|
+
|
4956
|
+
for (k, v) in six.iteritems(path_params):
|
4957
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
4958
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
4959
|
+
|
4960
|
+
header_params = {
|
4961
|
+
"accept": "application/json",
|
4962
|
+
"content-type": "application/json",
|
4963
|
+
"if-match": kwargs.get("if_match", missing),
|
4964
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
4965
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing)
|
4966
|
+
}
|
4967
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
4968
|
+
|
4969
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
4970
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
4971
|
+
client_retry_strategy=self.retry_strategy
|
4972
|
+
)
|
4973
|
+
|
4974
|
+
if retry_strategy:
|
4975
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
4976
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
4977
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
4978
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
4979
|
+
return retry_strategy.make_retrying_call(
|
4980
|
+
self.base_client.call_api,
|
4981
|
+
resource_path=resource_path,
|
4982
|
+
method=method,
|
4983
|
+
path_params=path_params,
|
4984
|
+
header_params=header_params,
|
4985
|
+
body=configure_exascale_exadata_infrastructure_details,
|
4986
|
+
response_type="ExadataInfrastructure",
|
4987
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
4988
|
+
operation_name=operation_name,
|
4989
|
+
api_reference_link=api_reference_link,
|
4990
|
+
required_arguments=required_arguments)
|
4991
|
+
else:
|
4992
|
+
return self.base_client.call_api(
|
4993
|
+
resource_path=resource_path,
|
4994
|
+
method=method,
|
4995
|
+
path_params=path_params,
|
4996
|
+
header_params=header_params,
|
4997
|
+
body=configure_exascale_exadata_infrastructure_details,
|
4998
|
+
response_type="ExadataInfrastructure",
|
4999
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
5000
|
+
operation_name=operation_name,
|
5001
|
+
api_reference_link=api_reference_link,
|
5002
|
+
required_arguments=required_arguments)
|
5003
|
+
|
4884
5004
|
def configure_saas_admin_user(self, autonomous_database_id, configure_saas_admin_user_details, **kwargs):
|
4885
5005
|
"""
|
4886
5006
|
This operation updates SaaS administrative user configuration of the Autonomous Database.
|
@@ -4918,7 +5038,7 @@ class DatabaseClient(object):
|
|
4918
5038
|
:rtype: :class:`~oci.response.Response`
|
4919
5039
|
|
4920
5040
|
:example:
|
4921
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5041
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
|
4922
5042
|
"""
|
4923
5043
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4924
5044
|
required_arguments = ['autonomousDatabaseId']
|
@@ -5033,7 +5153,7 @@ class DatabaseClient(object):
|
|
5033
5153
|
:rtype: :class:`~oci.response.Response`
|
5034
5154
|
|
5035
5155
|
:example:
|
5036
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5156
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
|
5037
5157
|
"""
|
5038
5158
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5039
5159
|
required_arguments = ['keyStoreId']
|
@@ -5142,7 +5262,7 @@ class DatabaseClient(object):
|
|
5142
5262
|
:rtype: :class:`~oci.response.Response`
|
5143
5263
|
|
5144
5264
|
:example:
|
5145
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5265
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
|
5146
5266
|
"""
|
5147
5267
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5148
5268
|
required_arguments = ['databaseId']
|
@@ -5260,7 +5380,7 @@ class DatabaseClient(object):
|
|
5260
5380
|
:rtype: :class:`~oci.response.Response`
|
5261
5381
|
|
5262
5382
|
:example:
|
5263
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5383
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
|
5264
5384
|
"""
|
5265
5385
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5266
5386
|
required_arguments = ['pluggableDatabaseId']
|
@@ -5370,7 +5490,7 @@ class DatabaseClient(object):
|
|
5370
5490
|
:rtype: :class:`~oci.response.Response`
|
5371
5491
|
|
5372
5492
|
:example:
|
5373
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5493
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
|
5374
5494
|
"""
|
5375
5495
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5376
5496
|
required_arguments = []
|
@@ -5463,7 +5583,7 @@ class DatabaseClient(object):
|
|
5463
5583
|
:rtype: :class:`~oci.response.Response`
|
5464
5584
|
|
5465
5585
|
:example:
|
5466
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5586
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
|
5467
5587
|
"""
|
5468
5588
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5469
5589
|
required_arguments = []
|
@@ -5569,7 +5689,7 @@ class DatabaseClient(object):
|
|
5569
5689
|
:rtype: :class:`~oci.response.Response`
|
5570
5690
|
|
5571
5691
|
:example:
|
5572
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5692
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
|
5573
5693
|
"""
|
5574
5694
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5575
5695
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -5675,7 +5795,7 @@ class DatabaseClient(object):
|
|
5675
5795
|
:rtype: :class:`~oci.response.Response`
|
5676
5796
|
|
5677
5797
|
:example:
|
5678
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5798
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
|
5679
5799
|
"""
|
5680
5800
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5681
5801
|
required_arguments = []
|
@@ -5771,7 +5891,7 @@ class DatabaseClient(object):
|
|
5771
5891
|
:rtype: :class:`~oci.response.Response`
|
5772
5892
|
|
5773
5893
|
:example:
|
5774
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5894
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
|
5775
5895
|
"""
|
5776
5896
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5777
5897
|
required_arguments = []
|
@@ -5867,7 +5987,7 @@ class DatabaseClient(object):
|
|
5867
5987
|
:rtype: :class:`~oci.response.Response`
|
5868
5988
|
|
5869
5989
|
:example:
|
5870
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5990
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
|
5871
5991
|
"""
|
5872
5992
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5873
5993
|
required_arguments = []
|
@@ -5963,7 +6083,7 @@ class DatabaseClient(object):
|
|
5963
6083
|
:rtype: :class:`~oci.response.Response`
|
5964
6084
|
|
5965
6085
|
:example:
|
5966
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6086
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
|
5967
6087
|
"""
|
5968
6088
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5969
6089
|
required_arguments = []
|
@@ -6056,7 +6176,7 @@ class DatabaseClient(object):
|
|
6056
6176
|
:rtype: :class:`~oci.response.Response`
|
6057
6177
|
|
6058
6178
|
:example:
|
6059
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6179
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
|
6060
6180
|
"""
|
6061
6181
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6062
6182
|
required_arguments = []
|
@@ -6150,7 +6270,7 @@ class DatabaseClient(object):
|
|
6150
6270
|
:rtype: :class:`~oci.response.Response`
|
6151
6271
|
|
6152
6272
|
:example:
|
6153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6273
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
|
6154
6274
|
"""
|
6155
6275
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6156
6276
|
required_arguments = []
|
@@ -6246,7 +6366,7 @@ class DatabaseClient(object):
|
|
6246
6366
|
:rtype: :class:`~oci.response.Response`
|
6247
6367
|
|
6248
6368
|
:example:
|
6249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6369
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
|
6250
6370
|
"""
|
6251
6371
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6252
6372
|
required_arguments = []
|
@@ -6346,7 +6466,7 @@ class DatabaseClient(object):
|
|
6346
6466
|
:rtype: :class:`~oci.response.Response`
|
6347
6467
|
|
6348
6468
|
:example:
|
6349
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6469
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
|
6350
6470
|
"""
|
6351
6471
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6352
6472
|
required_arguments = []
|
@@ -6444,7 +6564,7 @@ class DatabaseClient(object):
|
|
6444
6564
|
:rtype: :class:`~oci.response.Response`
|
6445
6565
|
|
6446
6566
|
:example:
|
6447
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6567
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
|
6448
6568
|
"""
|
6449
6569
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6450
6570
|
required_arguments = []
|
@@ -6544,7 +6664,7 @@ class DatabaseClient(object):
|
|
6544
6664
|
:rtype: :class:`~oci.response.Response`
|
6545
6665
|
|
6546
6666
|
:example:
|
6547
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6667
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
|
6548
6668
|
"""
|
6549
6669
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6550
6670
|
required_arguments = ['dbNodeId']
|
@@ -6655,7 +6775,7 @@ class DatabaseClient(object):
|
|
6655
6775
|
:rtype: :class:`~oci.response.Response`
|
6656
6776
|
|
6657
6777
|
:example:
|
6658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6778
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
|
6659
6779
|
"""
|
6660
6780
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6661
6781
|
required_arguments = ['dbNodeId']
|
@@ -6775,7 +6895,7 @@ class DatabaseClient(object):
|
|
6775
6895
|
:rtype: :class:`~oci.response.Response`
|
6776
6896
|
|
6777
6897
|
:example:
|
6778
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6898
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
|
6779
6899
|
"""
|
6780
6900
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6781
6901
|
required_arguments = ['databaseId']
|
@@ -6881,7 +7001,7 @@ class DatabaseClient(object):
|
|
6881
7001
|
:rtype: :class:`~oci.response.Response`
|
6882
7002
|
|
6883
7003
|
:example:
|
6884
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7004
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
|
6885
7005
|
"""
|
6886
7006
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6887
7007
|
required_arguments = []
|
@@ -6974,7 +7094,7 @@ class DatabaseClient(object):
|
|
6974
7094
|
:rtype: :class:`~oci.response.Response`
|
6975
7095
|
|
6976
7096
|
:example:
|
6977
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7097
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
|
6978
7098
|
"""
|
6979
7099
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6980
7100
|
required_arguments = []
|
@@ -7065,7 +7185,7 @@ class DatabaseClient(object):
|
|
7065
7185
|
:rtype: :class:`~oci.response.Response`
|
7066
7186
|
|
7067
7187
|
:example:
|
7068
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7188
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
|
7069
7189
|
"""
|
7070
7190
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7071
7191
|
required_arguments = []
|
@@ -7160,7 +7280,7 @@ class DatabaseClient(object):
|
|
7160
7280
|
:rtype: :class:`~oci.response.Response`
|
7161
7281
|
|
7162
7282
|
:example:
|
7163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7283
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
|
7164
7284
|
"""
|
7165
7285
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7166
7286
|
required_arguments = []
|
@@ -7258,7 +7378,7 @@ class DatabaseClient(object):
|
|
7258
7378
|
:rtype: :class:`~oci.response.Response`
|
7259
7379
|
|
7260
7380
|
:example:
|
7261
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7381
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
|
7262
7382
|
"""
|
7263
7383
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7264
7384
|
required_arguments = []
|
@@ -7354,7 +7474,7 @@ class DatabaseClient(object):
|
|
7354
7474
|
:rtype: :class:`~oci.response.Response`
|
7355
7475
|
|
7356
7476
|
:example:
|
7357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
|
7358
7478
|
"""
|
7359
7479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7360
7480
|
required_arguments = []
|
@@ -7450,7 +7570,7 @@ class DatabaseClient(object):
|
|
7450
7570
|
:rtype: :class:`~oci.response.Response`
|
7451
7571
|
|
7452
7572
|
:example:
|
7453
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7573
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
|
7454
7574
|
"""
|
7455
7575
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7456
7576
|
required_arguments = []
|
@@ -7546,7 +7666,7 @@ class DatabaseClient(object):
|
|
7546
7666
|
:rtype: :class:`~oci.response.Response`
|
7547
7667
|
|
7548
7668
|
:example:
|
7549
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7669
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
|
7550
7670
|
"""
|
7551
7671
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7552
7672
|
required_arguments = []
|
@@ -7643,7 +7763,7 @@ class DatabaseClient(object):
|
|
7643
7763
|
:rtype: :class:`~oci.response.Response`
|
7644
7764
|
|
7645
7765
|
:example:
|
7646
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7766
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
|
7647
7767
|
"""
|
7648
7768
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7649
7769
|
required_arguments = []
|
@@ -7737,7 +7857,7 @@ class DatabaseClient(object):
|
|
7737
7857
|
:rtype: :class:`~oci.response.Response`
|
7738
7858
|
|
7739
7859
|
:example:
|
7740
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7860
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
|
7741
7861
|
"""
|
7742
7862
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7743
7863
|
required_arguments = []
|
@@ -7833,7 +7953,7 @@ class DatabaseClient(object):
|
|
7833
7953
|
:rtype: :class:`~oci.response.Response`
|
7834
7954
|
|
7835
7955
|
:example:
|
7836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7956
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
|
7837
7957
|
"""
|
7838
7958
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7839
7959
|
required_arguments = []
|
@@ -7929,7 +8049,7 @@ class DatabaseClient(object):
|
|
7929
8049
|
:rtype: :class:`~oci.response.Response`
|
7930
8050
|
|
7931
8051
|
:example:
|
7932
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8052
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
|
7933
8053
|
"""
|
7934
8054
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7935
8055
|
required_arguments = []
|
@@ -8026,7 +8146,7 @@ class DatabaseClient(object):
|
|
8026
8146
|
:rtype: :class:`~oci.response.Response`
|
8027
8147
|
|
8028
8148
|
:example:
|
8029
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
|
8030
8150
|
"""
|
8031
8151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8032
8152
|
required_arguments = []
|
@@ -8122,7 +8242,7 @@ class DatabaseClient(object):
|
|
8122
8242
|
:rtype: :class:`~oci.response.Response`
|
8123
8243
|
|
8124
8244
|
:example:
|
8125
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
|
8126
8246
|
"""
|
8127
8247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8128
8248
|
required_arguments = []
|
@@ -8221,7 +8341,7 @@ class DatabaseClient(object):
|
|
8221
8341
|
:rtype: :class:`~oci.response.Response`
|
8222
8342
|
|
8223
8343
|
:example:
|
8224
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8344
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
|
8225
8345
|
"""
|
8226
8346
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8227
8347
|
required_arguments = []
|
@@ -8317,7 +8437,7 @@ class DatabaseClient(object):
|
|
8317
8437
|
:rtype: :class:`~oci.response.Response`
|
8318
8438
|
|
8319
8439
|
:example:
|
8320
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8440
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
|
8321
8441
|
"""
|
8322
8442
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8323
8443
|
required_arguments = []
|
@@ -8415,7 +8535,7 @@ class DatabaseClient(object):
|
|
8415
8535
|
:rtype: :class:`~oci.response.Response`
|
8416
8536
|
|
8417
8537
|
:example:
|
8418
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8538
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
|
8419
8539
|
"""
|
8420
8540
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8421
8541
|
required_arguments = []
|
@@ -8511,7 +8631,7 @@ class DatabaseClient(object):
|
|
8511
8631
|
:rtype: :class:`~oci.response.Response`
|
8512
8632
|
|
8513
8633
|
:example:
|
8514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
|
8515
8635
|
"""
|
8516
8636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8517
8637
|
required_arguments = []
|
@@ -8607,7 +8727,7 @@ class DatabaseClient(object):
|
|
8607
8727
|
:rtype: :class:`~oci.response.Response`
|
8608
8728
|
|
8609
8729
|
:example:
|
8610
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8730
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
|
8611
8731
|
"""
|
8612
8732
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8613
8733
|
required_arguments = []
|
@@ -8703,7 +8823,7 @@ class DatabaseClient(object):
|
|
8703
8823
|
:rtype: :class:`~oci.response.Response`
|
8704
8824
|
|
8705
8825
|
:example:
|
8706
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8826
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
|
8707
8827
|
"""
|
8708
8828
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8709
8829
|
required_arguments = []
|
@@ -8804,7 +8924,7 @@ class DatabaseClient(object):
|
|
8804
8924
|
:rtype: :class:`~oci.response.Response`
|
8805
8925
|
|
8806
8926
|
:example:
|
8807
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8927
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
|
8808
8928
|
"""
|
8809
8929
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8810
8930
|
required_arguments = ['schedulingPolicyId']
|
@@ -8913,7 +9033,7 @@ class DatabaseClient(object):
|
|
8913
9033
|
:rtype: :class:`~oci.response.Response`
|
8914
9034
|
|
8915
9035
|
:example:
|
8916
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9036
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
|
8917
9037
|
"""
|
8918
9038
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8919
9039
|
required_arguments = []
|
@@ -9015,7 +9135,7 @@ class DatabaseClient(object):
|
|
9015
9135
|
:rtype: :class:`~oci.response.Response`
|
9016
9136
|
|
9017
9137
|
:example:
|
9018
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9138
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
|
9019
9139
|
"""
|
9020
9140
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9021
9141
|
required_arguments = ['exadataInfrastructureId']
|
@@ -9144,7 +9264,7 @@ class DatabaseClient(object):
|
|
9144
9264
|
:rtype: :class:`~oci.response.Response`
|
9145
9265
|
|
9146
9266
|
:example:
|
9147
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9267
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
|
9148
9268
|
"""
|
9149
9269
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9150
9270
|
required_arguments = ['dbNodeId', 'action']
|
@@ -9257,7 +9377,7 @@ class DatabaseClient(object):
|
|
9257
9377
|
:rtype: :class:`~oci.response.Response`
|
9258
9378
|
|
9259
9379
|
:example:
|
9260
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9380
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
|
9261
9381
|
"""
|
9262
9382
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9263
9383
|
required_arguments = ['applicationVipId']
|
@@ -9360,7 +9480,7 @@ class DatabaseClient(object):
|
|
9360
9480
|
:rtype: :class:`~oci.response.Response`
|
9361
9481
|
|
9362
9482
|
:example:
|
9363
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9483
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
|
9364
9484
|
"""
|
9365
9485
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9366
9486
|
required_arguments = ['autonomousDatabaseId']
|
@@ -9463,7 +9583,7 @@ class DatabaseClient(object):
|
|
9463
9583
|
:rtype: :class:`~oci.response.Response`
|
9464
9584
|
|
9465
9585
|
:example:
|
9466
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9586
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
|
9467
9587
|
"""
|
9468
9588
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9469
9589
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -9566,7 +9686,7 @@ class DatabaseClient(object):
|
|
9566
9686
|
:rtype: :class:`~oci.response.Response`
|
9567
9687
|
|
9568
9688
|
:example:
|
9569
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9689
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
|
9570
9690
|
"""
|
9571
9691
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9572
9692
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -9669,7 +9789,7 @@ class DatabaseClient(object):
|
|
9669
9789
|
:rtype: :class:`~oci.response.Response`
|
9670
9790
|
|
9671
9791
|
:example:
|
9672
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9792
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
|
9673
9793
|
"""
|
9674
9794
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9675
9795
|
required_arguments = ['autonomousVmClusterId']
|
@@ -9769,7 +9889,7 @@ class DatabaseClient(object):
|
|
9769
9889
|
:rtype: :class:`~oci.response.Response`
|
9770
9890
|
|
9771
9891
|
:example:
|
9772
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9892
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
|
9773
9893
|
"""
|
9774
9894
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9775
9895
|
required_arguments = ['backupId']
|
@@ -9870,7 +9990,7 @@ class DatabaseClient(object):
|
|
9870
9990
|
:rtype: :class:`~oci.response.Response`
|
9871
9991
|
|
9872
9992
|
:example:
|
9873
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9993
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
|
9874
9994
|
"""
|
9875
9995
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9876
9996
|
required_arguments = ['backupDestinationId']
|
@@ -9973,7 +10093,7 @@ class DatabaseClient(object):
|
|
9973
10093
|
:rtype: :class:`~oci.response.Response`
|
9974
10094
|
|
9975
10095
|
:example:
|
9976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10096
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
|
9977
10097
|
"""
|
9978
10098
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9979
10099
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -10079,7 +10199,7 @@ class DatabaseClient(object):
|
|
10079
10199
|
:rtype: :class:`~oci.response.Response`
|
10080
10200
|
|
10081
10201
|
:example:
|
10082
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10202
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
|
10083
10203
|
"""
|
10084
10204
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10085
10205
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -10190,7 +10310,7 @@ class DatabaseClient(object):
|
|
10190
10310
|
:rtype: :class:`~oci.response.Response`
|
10191
10311
|
|
10192
10312
|
:example:
|
10193
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10313
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
|
10194
10314
|
"""
|
10195
10315
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10196
10316
|
required_arguments = ['cloudVmClusterId']
|
@@ -10293,7 +10413,7 @@ class DatabaseClient(object):
|
|
10293
10413
|
:rtype: :class:`~oci.response.Response`
|
10294
10414
|
|
10295
10415
|
:example:
|
10296
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10416
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
|
10297
10417
|
"""
|
10298
10418
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10299
10419
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -10398,7 +10518,7 @@ class DatabaseClient(object):
|
|
10398
10518
|
:rtype: :class:`~oci.response.Response`
|
10399
10519
|
|
10400
10520
|
:example:
|
10401
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10521
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
|
10402
10522
|
"""
|
10403
10523
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10404
10524
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -10511,7 +10631,7 @@ class DatabaseClient(object):
|
|
10511
10631
|
:rtype: :class:`~oci.response.Response`
|
10512
10632
|
|
10513
10633
|
:example:
|
10514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
|
10515
10635
|
"""
|
10516
10636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10517
10637
|
required_arguments = ['databaseId']
|
@@ -10619,7 +10739,7 @@ class DatabaseClient(object):
|
|
10619
10739
|
:rtype: :class:`~oci.response.Response`
|
10620
10740
|
|
10621
10741
|
:example:
|
10622
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10742
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
|
10623
10743
|
"""
|
10624
10744
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10625
10745
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -10726,7 +10846,7 @@ class DatabaseClient(object):
|
|
10726
10846
|
:rtype: :class:`~oci.response.Response`
|
10727
10847
|
|
10728
10848
|
:example:
|
10729
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10849
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
|
10730
10850
|
"""
|
10731
10851
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10732
10852
|
required_arguments = ['dbHomeId']
|
@@ -10835,7 +10955,7 @@ class DatabaseClient(object):
|
|
10835
10955
|
:rtype: :class:`~oci.response.Response`
|
10836
10956
|
|
10837
10957
|
:example:
|
10838
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10958
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
|
10839
10959
|
"""
|
10840
10960
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10841
10961
|
required_arguments = ['exadataInfrastructureId']
|
@@ -10938,7 +11058,7 @@ class DatabaseClient(object):
|
|
10938
11058
|
:rtype: :class:`~oci.response.Response`
|
10939
11059
|
|
10940
11060
|
:example:
|
10941
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11061
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
|
10942
11062
|
"""
|
10943
11063
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10944
11064
|
required_arguments = ['exadbVmClusterId']
|
@@ -11041,7 +11161,7 @@ class DatabaseClient(object):
|
|
11041
11161
|
:rtype: :class:`~oci.response.Response`
|
11042
11162
|
|
11043
11163
|
:example:
|
11044
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11164
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
|
11045
11165
|
"""
|
11046
11166
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11047
11167
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -11144,7 +11264,7 @@ class DatabaseClient(object):
|
|
11144
11264
|
:rtype: :class:`~oci.response.Response`
|
11145
11265
|
|
11146
11266
|
:example:
|
11147
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11267
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
|
11148
11268
|
"""
|
11149
11269
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11150
11270
|
required_arguments = ['executionActionId']
|
@@ -11247,7 +11367,7 @@ class DatabaseClient(object):
|
|
11247
11367
|
:rtype: :class:`~oci.response.Response`
|
11248
11368
|
|
11249
11369
|
:example:
|
11250
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11370
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
|
11251
11371
|
"""
|
11252
11372
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11253
11373
|
required_arguments = ['executionWindowId']
|
@@ -11352,7 +11472,7 @@ class DatabaseClient(object):
|
|
11352
11472
|
:rtype: :class:`~oci.response.Response`
|
11353
11473
|
|
11354
11474
|
:example:
|
11355
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11475
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
|
11356
11476
|
"""
|
11357
11477
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11358
11478
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -11458,7 +11578,7 @@ class DatabaseClient(object):
|
|
11458
11578
|
:rtype: :class:`~oci.response.Response`
|
11459
11579
|
|
11460
11580
|
:example:
|
11461
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11581
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
|
11462
11582
|
"""
|
11463
11583
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11464
11584
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -11561,7 +11681,7 @@ class DatabaseClient(object):
|
|
11561
11681
|
:rtype: :class:`~oci.response.Response`
|
11562
11682
|
|
11563
11683
|
:example:
|
11564
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11684
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
|
11565
11685
|
"""
|
11566
11686
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11567
11687
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -11665,7 +11785,7 @@ class DatabaseClient(object):
|
|
11665
11785
|
:rtype: :class:`~oci.response.Response`
|
11666
11786
|
|
11667
11787
|
:example:
|
11668
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11788
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
|
11669
11789
|
"""
|
11670
11790
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11671
11791
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -11768,7 +11888,7 @@ class DatabaseClient(object):
|
|
11768
11888
|
:rtype: :class:`~oci.response.Response`
|
11769
11889
|
|
11770
11890
|
:example:
|
11771
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11891
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
|
11772
11892
|
"""
|
11773
11893
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11774
11894
|
required_arguments = ['keyStoreId']
|
@@ -11871,7 +11991,7 @@ class DatabaseClient(object):
|
|
11871
11991
|
:rtype: :class:`~oci.response.Response`
|
11872
11992
|
|
11873
11993
|
:example:
|
11874
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11994
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
|
11875
11995
|
"""
|
11876
11996
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11877
11997
|
required_arguments = ['oneoffPatchId']
|
@@ -11974,7 +12094,7 @@ class DatabaseClient(object):
|
|
11974
12094
|
:rtype: :class:`~oci.response.Response`
|
11975
12095
|
|
11976
12096
|
:example:
|
11977
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12097
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
|
11978
12098
|
"""
|
11979
12099
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11980
12100
|
required_arguments = ['pluggableDatabaseId']
|
@@ -12077,7 +12197,7 @@ class DatabaseClient(object):
|
|
12077
12197
|
:rtype: :class:`~oci.response.Response`
|
12078
12198
|
|
12079
12199
|
:example:
|
12080
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12200
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
|
12081
12201
|
"""
|
12082
12202
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12083
12203
|
required_arguments = ['scheduledActionId']
|
@@ -12180,7 +12300,7 @@ class DatabaseClient(object):
|
|
12180
12300
|
:rtype: :class:`~oci.response.Response`
|
12181
12301
|
|
12182
12302
|
:example:
|
12183
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12303
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
|
12184
12304
|
"""
|
12185
12305
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12186
12306
|
required_arguments = ['schedulingPlanId']
|
@@ -12283,7 +12403,7 @@ class DatabaseClient(object):
|
|
12283
12403
|
:rtype: :class:`~oci.response.Response`
|
12284
12404
|
|
12285
12405
|
:example:
|
12286
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12406
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
|
12287
12407
|
"""
|
12288
12408
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12289
12409
|
required_arguments = ['schedulingPolicyId']
|
@@ -12391,7 +12511,7 @@ class DatabaseClient(object):
|
|
12391
12511
|
:rtype: :class:`~oci.response.Response`
|
12392
12512
|
|
12393
12513
|
:example:
|
12394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12514
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
|
12395
12515
|
"""
|
12396
12516
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12397
12517
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -12495,7 +12615,7 @@ class DatabaseClient(object):
|
|
12495
12615
|
:rtype: :class:`~oci.response.Response`
|
12496
12616
|
|
12497
12617
|
:example:
|
12498
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
|
12499
12619
|
"""
|
12500
12620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12501
12621
|
required_arguments = ['vmClusterId']
|
@@ -12604,7 +12724,7 @@ class DatabaseClient(object):
|
|
12604
12724
|
:rtype: :class:`~oci.response.Response`
|
12605
12725
|
|
12606
12726
|
:example:
|
12607
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12727
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
|
12608
12728
|
"""
|
12609
12729
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12610
12730
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -12706,7 +12826,7 @@ class DatabaseClient(object):
|
|
12706
12826
|
:rtype: :class:`~oci.response.Response`
|
12707
12827
|
|
12708
12828
|
:example:
|
12709
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12829
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
|
12710
12830
|
"""
|
12711
12831
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12712
12832
|
required_arguments = ['autonomousDatabaseId']
|
@@ -12805,7 +12925,7 @@ class DatabaseClient(object):
|
|
12805
12925
|
:rtype: :class:`~oci.response.Response`
|
12806
12926
|
|
12807
12927
|
:example:
|
12808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12928
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
|
12809
12929
|
"""
|
12810
12930
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12811
12931
|
required_arguments = ['autonomousDatabaseId']
|
@@ -12901,7 +13021,7 @@ class DatabaseClient(object):
|
|
12901
13021
|
:rtype: :class:`~oci.response.Response`
|
12902
13022
|
|
12903
13023
|
:example:
|
12904
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
|
12905
13025
|
"""
|
12906
13026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12907
13027
|
required_arguments = ['autonomousDatabaseId']
|
@@ -13009,7 +13129,7 @@ class DatabaseClient(object):
|
|
13009
13129
|
:rtype: :class:`~oci.response.Response`
|
13010
13130
|
|
13011
13131
|
:example:
|
13012
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13132
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
|
13013
13133
|
"""
|
13014
13134
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13015
13135
|
required_arguments = ['databaseId']
|
@@ -13124,7 +13244,7 @@ class DatabaseClient(object):
|
|
13124
13244
|
:rtype: :class:`~oci.response.Response`
|
13125
13245
|
|
13126
13246
|
:example:
|
13127
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13247
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
|
13128
13248
|
"""
|
13129
13249
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13130
13250
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -13237,7 +13357,7 @@ class DatabaseClient(object):
|
|
13237
13357
|
:rtype: :class:`~oci.response.Response`
|
13238
13358
|
|
13239
13359
|
:example:
|
13240
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13360
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
|
13241
13361
|
"""
|
13242
13362
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13243
13363
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -13354,7 +13474,7 @@ class DatabaseClient(object):
|
|
13354
13474
|
:rtype: :class:`~oci.response.Response`
|
13355
13475
|
|
13356
13476
|
:example:
|
13357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
|
13358
13478
|
"""
|
13359
13479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13360
13480
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -13467,7 +13587,7 @@ class DatabaseClient(object):
|
|
13467
13587
|
:rtype: :class:`~oci.response.Response`
|
13468
13588
|
|
13469
13589
|
:example:
|
13470
|
-
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.140.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
|
13471
13591
|
"""
|
13472
13592
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13473
13593
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -13580,7 +13700,7 @@ class DatabaseClient(object):
|
|
13580
13700
|
:rtype: :class:`~oci.response.Response`
|
13581
13701
|
|
13582
13702
|
:example:
|
13583
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13703
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
|
13584
13704
|
"""
|
13585
13705
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13586
13706
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -13697,7 +13817,7 @@ class DatabaseClient(object):
|
|
13697
13817
|
:rtype: :class:`~oci.response.Response`
|
13698
13818
|
|
13699
13819
|
:example:
|
13700
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13820
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
|
13701
13821
|
"""
|
13702
13822
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13703
13823
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -13810,7 +13930,7 @@ class DatabaseClient(object):
|
|
13810
13930
|
:rtype: :class:`~oci.response.Response`
|
13811
13931
|
|
13812
13932
|
:example:
|
13813
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13933
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
|
13814
13934
|
"""
|
13815
13935
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13816
13936
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -13923,7 +14043,7 @@ class DatabaseClient(object):
|
|
13923
14043
|
:rtype: :class:`~oci.response.Response`
|
13924
14044
|
|
13925
14045
|
:example:
|
13926
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14046
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
|
13927
14047
|
"""
|
13928
14048
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13929
14049
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -14036,7 +14156,7 @@ class DatabaseClient(object):
|
|
14036
14156
|
:rtype: :class:`~oci.response.Response`
|
14037
14157
|
|
14038
14158
|
:example:
|
14039
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14159
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
|
14040
14160
|
"""
|
14041
14161
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14042
14162
|
required_arguments = ['pluggableDatabaseId']
|
@@ -14146,7 +14266,7 @@ class DatabaseClient(object):
|
|
14146
14266
|
:rtype: :class:`~oci.response.Response`
|
14147
14267
|
|
14148
14268
|
:example:
|
14149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14269
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
|
14150
14270
|
"""
|
14151
14271
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14152
14272
|
required_arguments = ['exadataInfrastructureId']
|
@@ -14259,7 +14379,7 @@ class DatabaseClient(object):
|
|
14259
14379
|
:rtype: :class:`~oci.response.Response`
|
14260
14380
|
|
14261
14381
|
:example:
|
14262
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14382
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
|
14263
14383
|
"""
|
14264
14384
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14265
14385
|
required_arguments = ['oneoffPatchId']
|
@@ -14374,7 +14494,7 @@ class DatabaseClient(object):
|
|
14374
14494
|
:rtype: :class:`~oci.response.Response`
|
14375
14495
|
|
14376
14496
|
:example:
|
14377
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14497
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
|
14378
14498
|
"""
|
14379
14499
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14380
14500
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -14488,7 +14608,7 @@ class DatabaseClient(object):
|
|
14488
14608
|
:rtype: :class:`~oci.response.Response`
|
14489
14609
|
|
14490
14610
|
:example:
|
14491
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14611
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
|
14492
14612
|
"""
|
14493
14613
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14494
14614
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -14590,7 +14710,7 @@ class DatabaseClient(object):
|
|
14590
14710
|
:rtype: :class:`~oci.response.Response`
|
14591
14711
|
|
14592
14712
|
:example:
|
14593
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14713
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
|
14594
14714
|
"""
|
14595
14715
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14596
14716
|
required_arguments = ['autonomousDatabaseId']
|
@@ -14686,7 +14806,7 @@ class DatabaseClient(object):
|
|
14686
14806
|
:rtype: :class:`~oci.response.Response`
|
14687
14807
|
|
14688
14808
|
:example:
|
14689
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14809
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
|
14690
14810
|
"""
|
14691
14811
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14692
14812
|
required_arguments = ['autonomousDatabaseId']
|
@@ -14797,7 +14917,7 @@ class DatabaseClient(object):
|
|
14797
14917
|
:rtype: :class:`~oci.response.Response`
|
14798
14918
|
|
14799
14919
|
:example:
|
14800
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14920
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
|
14801
14921
|
"""
|
14802
14922
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14803
14923
|
required_arguments = ['databaseId']
|
@@ -14921,7 +15041,7 @@ class DatabaseClient(object):
|
|
14921
15041
|
:rtype: :class:`~oci.response.Response`
|
14922
15042
|
|
14923
15043
|
:example:
|
14924
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15044
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
|
14925
15045
|
"""
|
14926
15046
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14927
15047
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -15039,7 +15159,7 @@ class DatabaseClient(object):
|
|
15039
15159
|
:rtype: :class:`~oci.response.Response`
|
15040
15160
|
|
15041
15161
|
:example:
|
15042
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15162
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
|
15043
15163
|
"""
|
15044
15164
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15045
15165
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -15161,7 +15281,7 @@ class DatabaseClient(object):
|
|
15161
15281
|
:rtype: :class:`~oci.response.Response`
|
15162
15282
|
|
15163
15283
|
:example:
|
15164
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15284
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
|
15165
15285
|
"""
|
15166
15286
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15167
15287
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -15279,7 +15399,7 @@ class DatabaseClient(object):
|
|
15279
15399
|
:rtype: :class:`~oci.response.Response`
|
15280
15400
|
|
15281
15401
|
:example:
|
15282
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15402
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
|
15283
15403
|
"""
|
15284
15404
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15285
15405
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -15397,7 +15517,7 @@ class DatabaseClient(object):
|
|
15397
15517
|
:rtype: :class:`~oci.response.Response`
|
15398
15518
|
|
15399
15519
|
:example:
|
15400
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15520
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
|
15401
15521
|
"""
|
15402
15522
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15403
15523
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -15519,7 +15639,7 @@ class DatabaseClient(object):
|
|
15519
15639
|
:rtype: :class:`~oci.response.Response`
|
15520
15640
|
|
15521
15641
|
:example:
|
15522
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
|
15523
15643
|
"""
|
15524
15644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15525
15645
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -15637,7 +15757,7 @@ class DatabaseClient(object):
|
|
15637
15757
|
:rtype: :class:`~oci.response.Response`
|
15638
15758
|
|
15639
15759
|
:example:
|
15640
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15760
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
|
15641
15761
|
"""
|
15642
15762
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15643
15763
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -15755,7 +15875,7 @@ class DatabaseClient(object):
|
|
15755
15875
|
:rtype: :class:`~oci.response.Response`
|
15756
15876
|
|
15757
15877
|
:example:
|
15758
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15878
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
|
15759
15879
|
"""
|
15760
15880
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15761
15881
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -15873,7 +15993,7 @@ class DatabaseClient(object):
|
|
15873
15993
|
:rtype: :class:`~oci.response.Response`
|
15874
15994
|
|
15875
15995
|
:example:
|
15876
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15996
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
|
15877
15997
|
"""
|
15878
15998
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15879
15999
|
required_arguments = ['pluggableDatabaseId']
|
@@ -15998,7 +16118,7 @@ class DatabaseClient(object):
|
|
15998
16118
|
:rtype: :class:`~oci.response.Response`
|
15999
16119
|
|
16000
16120
|
:example:
|
16001
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16121
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
|
16002
16122
|
"""
|
16003
16123
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16004
16124
|
required_arguments = ['autonomousDatabaseId']
|
@@ -16118,7 +16238,7 @@ class DatabaseClient(object):
|
|
16118
16238
|
:rtype: :class:`~oci.response.Response`
|
16119
16239
|
|
16120
16240
|
:example:
|
16121
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16241
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
|
16122
16242
|
"""
|
16123
16243
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16124
16244
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -16231,7 +16351,7 @@ class DatabaseClient(object):
|
|
16231
16351
|
:rtype: :class:`~oci.response.Response`
|
16232
16352
|
|
16233
16353
|
:example:
|
16234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16354
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
|
16235
16355
|
"""
|
16236
16356
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16237
16357
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -16342,7 +16462,7 @@ class DatabaseClient(object):
|
|
16342
16462
|
:rtype: :class:`~oci.response.Response`
|
16343
16463
|
|
16344
16464
|
:example:
|
16345
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16465
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
|
16346
16466
|
"""
|
16347
16467
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16348
16468
|
required_arguments = ['autonomousDatabaseId']
|
@@ -16455,7 +16575,7 @@ class DatabaseClient(object):
|
|
16455
16575
|
:rtype: :class:`~oci.response.Response`
|
16456
16576
|
|
16457
16577
|
:example:
|
16458
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16578
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
|
16459
16579
|
"""
|
16460
16580
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16461
16581
|
required_arguments = ['exadataInfrastructureId']
|
@@ -16558,7 +16678,7 @@ class DatabaseClient(object):
|
|
16558
16678
|
:rtype: :class:`~oci.response.Response`
|
16559
16679
|
|
16560
16680
|
:example:
|
16561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16681
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
|
16562
16682
|
"""
|
16563
16683
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16564
16684
|
required_arguments = ['applicationVipId']
|
@@ -16653,7 +16773,7 @@ class DatabaseClient(object):
|
|
16653
16773
|
:rtype: :class:`~oci.response.Response`
|
16654
16774
|
|
16655
16775
|
:example:
|
16656
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16776
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
|
16657
16777
|
"""
|
16658
16778
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16659
16779
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -16746,7 +16866,7 @@ class DatabaseClient(object):
|
|
16746
16866
|
:rtype: :class:`~oci.response.Response`
|
16747
16867
|
|
16748
16868
|
:example:
|
16749
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16869
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
|
16750
16870
|
"""
|
16751
16871
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16752
16872
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -16838,7 +16958,7 @@ class DatabaseClient(object):
|
|
16838
16958
|
:rtype: :class:`~oci.response.Response`
|
16839
16959
|
|
16840
16960
|
:example:
|
16841
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16961
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
|
16842
16962
|
"""
|
16843
16963
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16844
16964
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -16936,7 +17056,7 @@ class DatabaseClient(object):
|
|
16936
17056
|
:rtype: :class:`~oci.response.Response`
|
16937
17057
|
|
16938
17058
|
:example:
|
16939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17059
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
|
16940
17060
|
"""
|
16941
17061
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16942
17062
|
required_arguments = ['autonomousDatabaseId']
|
@@ -17034,7 +17154,7 @@ class DatabaseClient(object):
|
|
17034
17154
|
:rtype: :class:`~oci.response.Response`
|
17035
17155
|
|
17036
17156
|
:example:
|
17037
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17157
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
|
17038
17158
|
"""
|
17039
17159
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17040
17160
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -17137,7 +17257,7 @@ class DatabaseClient(object):
|
|
17137
17257
|
:rtype: :class:`~oci.response.Response`
|
17138
17258
|
|
17139
17259
|
:example:
|
17140
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17260
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
|
17141
17261
|
"""
|
17142
17262
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17143
17263
|
required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
|
@@ -17231,7 +17351,7 @@ class DatabaseClient(object):
|
|
17231
17351
|
:rtype: :class:`~oci.response.Response`
|
17232
17352
|
|
17233
17353
|
:example:
|
17234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17354
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
|
17235
17355
|
"""
|
17236
17356
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17237
17357
|
required_arguments = []
|
@@ -17317,7 +17437,7 @@ class DatabaseClient(object):
|
|
17317
17437
|
:rtype: :class:`~oci.response.Response`
|
17318
17438
|
|
17319
17439
|
:example:
|
17320
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17440
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
|
17321
17441
|
"""
|
17322
17442
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17323
17443
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -17415,7 +17535,7 @@ class DatabaseClient(object):
|
|
17415
17535
|
:rtype: :class:`~oci.response.Response`
|
17416
17536
|
|
17417
17537
|
:example:
|
17418
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17538
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
|
17419
17539
|
"""
|
17420
17540
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17421
17541
|
required_arguments = ['autonomousDatabaseId']
|
@@ -17510,7 +17630,7 @@ class DatabaseClient(object):
|
|
17510
17630
|
:rtype: :class:`~oci.response.Response`
|
17511
17631
|
|
17512
17632
|
:example:
|
17513
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17633
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
|
17514
17634
|
"""
|
17515
17635
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17516
17636
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -17598,7 +17718,7 @@ class DatabaseClient(object):
|
|
17598
17718
|
:rtype: :class:`~oci.response.Response`
|
17599
17719
|
|
17600
17720
|
:example:
|
17601
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
|
17602
17722
|
"""
|
17603
17723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17604
17724
|
required_arguments = ['autonomousPatchId']
|
@@ -17689,7 +17809,7 @@ class DatabaseClient(object):
|
|
17689
17809
|
:rtype: :class:`~oci.response.Response`
|
17690
17810
|
|
17691
17811
|
:example:
|
17692
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17812
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
|
17693
17813
|
"""
|
17694
17814
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17695
17815
|
required_arguments = ['autonomousVirtualMachineId']
|
@@ -17787,7 +17907,7 @@ class DatabaseClient(object):
|
|
17787
17907
|
:rtype: :class:`~oci.response.Response`
|
17788
17908
|
|
17789
17909
|
:example:
|
17790
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17910
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
|
17791
17911
|
"""
|
17792
17912
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17793
17913
|
required_arguments = ['autonomousVmClusterId']
|
@@ -17885,7 +18005,7 @@ class DatabaseClient(object):
|
|
17885
18005
|
:rtype: :class:`~oci.response.Response`
|
17886
18006
|
|
17887
18007
|
:example:
|
17888
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18008
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
|
17889
18009
|
"""
|
17890
18010
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17891
18011
|
required_arguments = ['autonomousVmClusterId']
|
@@ -17980,7 +18100,7 @@ class DatabaseClient(object):
|
|
17980
18100
|
:rtype: :class:`~oci.response.Response`
|
17981
18101
|
|
17982
18102
|
:example:
|
17983
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18103
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
|
17984
18104
|
"""
|
17985
18105
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17986
18106
|
required_arguments = ['backupId']
|
@@ -18071,7 +18191,7 @@ class DatabaseClient(object):
|
|
18071
18191
|
:rtype: :class:`~oci.response.Response`
|
18072
18192
|
|
18073
18193
|
:example:
|
18074
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18194
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
|
18075
18195
|
"""
|
18076
18196
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18077
18197
|
required_arguments = ['backupDestinationId']
|
@@ -18169,7 +18289,7 @@ class DatabaseClient(object):
|
|
18169
18289
|
:rtype: :class:`~oci.response.Response`
|
18170
18290
|
|
18171
18291
|
:example:
|
18172
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18292
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
|
18173
18293
|
"""
|
18174
18294
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18175
18295
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -18267,7 +18387,7 @@ class DatabaseClient(object):
|
|
18267
18387
|
:rtype: :class:`~oci.response.Response`
|
18268
18388
|
|
18269
18389
|
:example:
|
18270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18390
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
|
18271
18391
|
"""
|
18272
18392
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18273
18393
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -18365,7 +18485,7 @@ class DatabaseClient(object):
|
|
18365
18485
|
:rtype: :class:`~oci.response.Response`
|
18366
18486
|
|
18367
18487
|
:example:
|
18368
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18488
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
|
18369
18489
|
"""
|
18370
18490
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18371
18491
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -18468,7 +18588,7 @@ class DatabaseClient(object):
|
|
18468
18588
|
:rtype: :class:`~oci.response.Response`
|
18469
18589
|
|
18470
18590
|
:example:
|
18471
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
|
18472
18592
|
"""
|
18473
18593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18474
18594
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -18574,7 +18694,7 @@ class DatabaseClient(object):
|
|
18574
18694
|
:rtype: :class:`~oci.response.Response`
|
18575
18695
|
|
18576
18696
|
:example:
|
18577
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18697
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
|
18578
18698
|
"""
|
18579
18699
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18580
18700
|
required_arguments = ['cloudVmClusterId']
|
@@ -18673,7 +18793,7 @@ class DatabaseClient(object):
|
|
18673
18793
|
:rtype: :class:`~oci.response.Response`
|
18674
18794
|
|
18675
18795
|
:example:
|
18676
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18796
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
|
18677
18797
|
"""
|
18678
18798
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18679
18799
|
required_arguments = ['cloudVmClusterId']
|
@@ -18776,7 +18896,7 @@ class DatabaseClient(object):
|
|
18776
18896
|
:rtype: :class:`~oci.response.Response`
|
18777
18897
|
|
18778
18898
|
:example:
|
18779
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18899
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
|
18780
18900
|
"""
|
18781
18901
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18782
18902
|
required_arguments = ['cloudVmClusterId', 'updateId']
|
@@ -18880,7 +19000,7 @@ class DatabaseClient(object):
|
|
18880
19000
|
:rtype: :class:`~oci.response.Response`
|
18881
19001
|
|
18882
19002
|
:example:
|
18883
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19003
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
|
18884
19004
|
"""
|
18885
19005
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18886
19006
|
required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
|
@@ -18979,7 +19099,7 @@ class DatabaseClient(object):
|
|
18979
19099
|
:rtype: :class:`~oci.response.Response`
|
18980
19100
|
|
18981
19101
|
:example:
|
18982
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19102
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
|
18983
19103
|
"""
|
18984
19104
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18985
19105
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -19074,7 +19194,7 @@ class DatabaseClient(object):
|
|
19074
19194
|
:rtype: :class:`~oci.response.Response`
|
19075
19195
|
|
19076
19196
|
:example:
|
19077
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19197
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
|
19078
19198
|
"""
|
19079
19199
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19080
19200
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -19176,7 +19296,7 @@ class DatabaseClient(object):
|
|
19176
19296
|
:rtype: :class:`~oci.response.Response`
|
19177
19297
|
|
19178
19298
|
:example:
|
19179
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19299
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
|
19180
19300
|
"""
|
19181
19301
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19182
19302
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -19277,7 +19397,7 @@ class DatabaseClient(object):
|
|
19277
19397
|
:rtype: :class:`~oci.response.Response`
|
19278
19398
|
|
19279
19399
|
:example:
|
19280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19400
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
|
19281
19401
|
"""
|
19282
19402
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19283
19403
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -19366,7 +19486,7 @@ class DatabaseClient(object):
|
|
19366
19486
|
:rtype: :class:`~oci.response.Response`
|
19367
19487
|
|
19368
19488
|
:example:
|
19369
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19489
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
|
19370
19490
|
"""
|
19371
19491
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19372
19492
|
required_arguments = ['databaseId']
|
@@ -19454,7 +19574,7 @@ class DatabaseClient(object):
|
|
19454
19574
|
:rtype: :class:`~oci.response.Response`
|
19455
19575
|
|
19456
19576
|
:example:
|
19457
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19577
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
|
19458
19578
|
"""
|
19459
19579
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19460
19580
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -19550,7 +19670,7 @@ class DatabaseClient(object):
|
|
19550
19670
|
:rtype: :class:`~oci.response.Response`
|
19551
19671
|
|
19552
19672
|
:example:
|
19553
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19673
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
|
19554
19674
|
"""
|
19555
19675
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19556
19676
|
required_arguments = ['databaseId', 'upgradeHistoryEntryId']
|
@@ -19646,7 +19766,7 @@ class DatabaseClient(object):
|
|
19646
19766
|
:rtype: :class:`~oci.response.Response`
|
19647
19767
|
|
19648
19768
|
:example:
|
19649
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19769
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
|
19650
19770
|
"""
|
19651
19771
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19652
19772
|
required_arguments = ['dbHomeId']
|
@@ -19739,7 +19859,7 @@ class DatabaseClient(object):
|
|
19739
19859
|
:rtype: :class:`~oci.response.Response`
|
19740
19860
|
|
19741
19861
|
:example:
|
19742
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
|
19743
19863
|
"""
|
19744
19864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19745
19865
|
required_arguments = ['dbHomeId', 'patchId']
|
@@ -19833,7 +19953,7 @@ class DatabaseClient(object):
|
|
19833
19953
|
:rtype: :class:`~oci.response.Response`
|
19834
19954
|
|
19835
19955
|
:example:
|
19836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19956
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
|
19837
19957
|
"""
|
19838
19958
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19839
19959
|
required_arguments = ['dbHomeId', 'patchHistoryEntryId']
|
@@ -19922,7 +20042,7 @@ class DatabaseClient(object):
|
|
19922
20042
|
:rtype: :class:`~oci.response.Response`
|
19923
20043
|
|
19924
20044
|
:example:
|
19925
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20045
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
|
19926
20046
|
"""
|
19927
20047
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19928
20048
|
required_arguments = ['dbNodeId']
|
@@ -20018,7 +20138,7 @@ class DatabaseClient(object):
|
|
20018
20138
|
:rtype: :class:`~oci.response.Response`
|
20019
20139
|
|
20020
20140
|
:example:
|
20021
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20141
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
|
20022
20142
|
"""
|
20023
20143
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20024
20144
|
required_arguments = ['dbServerId', 'exadataInfrastructureId']
|
@@ -20127,7 +20247,7 @@ class DatabaseClient(object):
|
|
20127
20247
|
:rtype: :class:`~oci.response.Response`
|
20128
20248
|
|
20129
20249
|
:example:
|
20130
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20250
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
|
20131
20251
|
"""
|
20132
20252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20133
20253
|
required_arguments = ['dbSystemId']
|
@@ -20220,7 +20340,7 @@ class DatabaseClient(object):
|
|
20220
20340
|
:rtype: :class:`~oci.response.Response`
|
20221
20341
|
|
20222
20342
|
:example:
|
20223
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20343
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
|
20224
20344
|
"""
|
20225
20345
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20226
20346
|
required_arguments = ['dbSystemId', 'patchId']
|
@@ -20314,7 +20434,7 @@ class DatabaseClient(object):
|
|
20314
20434
|
:rtype: :class:`~oci.response.Response`
|
20315
20435
|
|
20316
20436
|
:example:
|
20317
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
|
20318
20438
|
"""
|
20319
20439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20320
20440
|
required_arguments = ['dbSystemId', 'patchHistoryEntryId']
|
@@ -20411,7 +20531,7 @@ class DatabaseClient(object):
|
|
20411
20531
|
:rtype: :class:`~oci.response.Response`
|
20412
20532
|
|
20413
20533
|
:example:
|
20414
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20534
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
|
20415
20535
|
"""
|
20416
20536
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20417
20537
|
required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
|
@@ -20516,7 +20636,7 @@ class DatabaseClient(object):
|
|
20516
20636
|
:rtype: :class:`~oci.response.Response`
|
20517
20637
|
|
20518
20638
|
:example:
|
20519
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20639
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
|
20520
20640
|
"""
|
20521
20641
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20522
20642
|
required_arguments = ['exadataInfrastructureId']
|
@@ -20630,7 +20750,7 @@ class DatabaseClient(object):
|
|
20630
20750
|
:rtype: :class:`~oci.response.Response`
|
20631
20751
|
|
20632
20752
|
:example:
|
20633
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20753
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
|
20634
20754
|
"""
|
20635
20755
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20636
20756
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -20733,7 +20853,7 @@ class DatabaseClient(object):
|
|
20733
20853
|
:rtype: :class:`~oci.response.Response`
|
20734
20854
|
|
20735
20855
|
:example:
|
20736
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20856
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
|
20737
20857
|
"""
|
20738
20858
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20739
20859
|
required_arguments = ['exadataInfrastructureId']
|
@@ -20850,7 +20970,7 @@ class DatabaseClient(object):
|
|
20850
20970
|
:rtype: :class:`~oci.response.Response`
|
20851
20971
|
|
20852
20972
|
:example:
|
20853
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20973
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
|
20854
20974
|
"""
|
20855
20975
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20856
20976
|
required_arguments = ['dbSystemId']
|
@@ -20948,7 +21068,7 @@ class DatabaseClient(object):
|
|
20948
21068
|
:rtype: :class:`~oci.response.Response`
|
20949
21069
|
|
20950
21070
|
:example:
|
20951
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21071
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
|
20952
21072
|
"""
|
20953
21073
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20954
21074
|
required_arguments = ['exadbVmClusterId']
|
@@ -21051,7 +21171,7 @@ class DatabaseClient(object):
|
|
21051
21171
|
:rtype: :class:`~oci.response.Response`
|
21052
21172
|
|
21053
21173
|
:example:
|
21054
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21174
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
|
21055
21175
|
"""
|
21056
21176
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21057
21177
|
required_arguments = ['exadbVmClusterId', 'updateId']
|
@@ -21155,7 +21275,7 @@ class DatabaseClient(object):
|
|
21155
21275
|
:rtype: :class:`~oci.response.Response`
|
21156
21276
|
|
21157
21277
|
:example:
|
21158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21278
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exadb_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update_history_entry API.
|
21159
21279
|
"""
|
21160
21280
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21161
21281
|
required_arguments = ['exadbVmClusterId', 'updateHistoryEntryId']
|
@@ -21254,7 +21374,7 @@ class DatabaseClient(object):
|
|
21254
21374
|
:rtype: :class:`~oci.response.Response`
|
21255
21375
|
|
21256
21376
|
:example:
|
21257
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21377
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
|
21258
21378
|
"""
|
21259
21379
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21260
21380
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -21352,7 +21472,7 @@ class DatabaseClient(object):
|
|
21352
21472
|
:rtype: :class:`~oci.response.Response`
|
21353
21473
|
|
21354
21474
|
:example:
|
21355
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21475
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
|
21356
21476
|
"""
|
21357
21477
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21358
21478
|
required_arguments = ['executionActionId']
|
@@ -21450,7 +21570,7 @@ class DatabaseClient(object):
|
|
21450
21570
|
:rtype: :class:`~oci.response.Response`
|
21451
21571
|
|
21452
21572
|
:example:
|
21453
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21573
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
|
21454
21574
|
"""
|
21455
21575
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21456
21576
|
required_arguments = ['executionWindowId']
|
@@ -21549,7 +21669,7 @@ class DatabaseClient(object):
|
|
21549
21669
|
:rtype: :class:`~oci.response.Response`
|
21550
21670
|
|
21551
21671
|
:example:
|
21552
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21672
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
|
21553
21673
|
"""
|
21554
21674
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21555
21675
|
required_arguments = ['backupId']
|
@@ -21640,7 +21760,7 @@ class DatabaseClient(object):
|
|
21640
21760
|
:rtype: :class:`~oci.response.Response`
|
21641
21761
|
|
21642
21762
|
:example:
|
21643
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21763
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
|
21644
21764
|
"""
|
21645
21765
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21646
21766
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -21739,7 +21859,7 @@ class DatabaseClient(object):
|
|
21739
21859
|
:rtype: :class:`~oci.response.Response`
|
21740
21860
|
|
21741
21861
|
:example:
|
21742
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
|
21743
21863
|
"""
|
21744
21864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21745
21865
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -21837,7 +21957,7 @@ class DatabaseClient(object):
|
|
21837
21957
|
:rtype: :class:`~oci.response.Response`
|
21838
21958
|
|
21839
21959
|
:example:
|
21840
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21960
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
|
21841
21961
|
"""
|
21842
21962
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21843
21963
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -21936,7 +22056,7 @@ class DatabaseClient(object):
|
|
21936
22056
|
:rtype: :class:`~oci.response.Response`
|
21937
22057
|
|
21938
22058
|
:example:
|
21939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22059
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
|
21940
22060
|
"""
|
21941
22061
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21942
22062
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -22043,7 +22163,7 @@ class DatabaseClient(object):
|
|
22043
22163
|
:rtype: :class:`~oci.response.Response`
|
22044
22164
|
|
22045
22165
|
:example:
|
22046
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22166
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
|
22047
22167
|
"""
|
22048
22168
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22049
22169
|
required_arguments = ['compartmentId']
|
@@ -22147,7 +22267,7 @@ class DatabaseClient(object):
|
|
22147
22267
|
:rtype: :class:`~oci.response.Response`
|
22148
22268
|
|
22149
22269
|
:example:
|
22150
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22270
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
|
22151
22271
|
"""
|
22152
22272
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22153
22273
|
required_arguments = ['keyStoreId']
|
@@ -22240,7 +22360,7 @@ class DatabaseClient(object):
|
|
22240
22360
|
:rtype: :class:`~oci.response.Response`
|
22241
22361
|
|
22242
22362
|
:example:
|
22243
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22363
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
|
22244
22364
|
"""
|
22245
22365
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22246
22366
|
required_arguments = ['maintenanceRunId']
|
@@ -22326,7 +22446,7 @@ class DatabaseClient(object):
|
|
22326
22446
|
:rtype: :class:`~oci.response.Response`
|
22327
22447
|
|
22328
22448
|
:example:
|
22329
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22449
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
|
22330
22450
|
"""
|
22331
22451
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22332
22452
|
required_arguments = ['maintenanceRunHistoryId']
|
@@ -22417,7 +22537,7 @@ class DatabaseClient(object):
|
|
22417
22537
|
:rtype: :class:`~oci.response.Response`
|
22418
22538
|
|
22419
22539
|
:example:
|
22420
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22540
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
|
22421
22541
|
"""
|
22422
22542
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22423
22543
|
required_arguments = ['oneoffPatchId']
|
@@ -22520,7 +22640,7 @@ class DatabaseClient(object):
|
|
22520
22640
|
:rtype: :class:`~oci.response.Response`
|
22521
22641
|
|
22522
22642
|
:example:
|
22523
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22643
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
|
22524
22644
|
"""
|
22525
22645
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22526
22646
|
required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
|
@@ -22616,7 +22736,7 @@ class DatabaseClient(object):
|
|
22616
22736
|
:rtype: :class:`~oci.response.Response`
|
22617
22737
|
|
22618
22738
|
:example:
|
22619
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22739
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
|
22620
22740
|
"""
|
22621
22741
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22622
22742
|
required_arguments = ['pluggableDatabaseId']
|
@@ -22707,7 +22827,7 @@ class DatabaseClient(object):
|
|
22707
22827
|
:rtype: :class:`~oci.response.Response`
|
22708
22828
|
|
22709
22829
|
:example:
|
22710
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22830
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
|
22711
22831
|
"""
|
22712
22832
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22713
22833
|
required_arguments = ['scheduledActionId']
|
@@ -22805,7 +22925,7 @@ class DatabaseClient(object):
|
|
22805
22925
|
:rtype: :class:`~oci.response.Response`
|
22806
22926
|
|
22807
22927
|
:example:
|
22808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22928
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
|
22809
22929
|
"""
|
22810
22930
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22811
22931
|
required_arguments = ['schedulingPlanId']
|
@@ -22903,7 +23023,7 @@ class DatabaseClient(object):
|
|
22903
23023
|
:rtype: :class:`~oci.response.Response`
|
22904
23024
|
|
22905
23025
|
:example:
|
22906
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23026
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
|
22907
23027
|
"""
|
22908
23028
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22909
23029
|
required_arguments = ['schedulingPolicyId']
|
@@ -23006,7 +23126,7 @@ class DatabaseClient(object):
|
|
23006
23126
|
:rtype: :class:`~oci.response.Response`
|
23007
23127
|
|
23008
23128
|
:example:
|
23009
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23129
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
|
23010
23130
|
"""
|
23011
23131
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23012
23132
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -23105,7 +23225,7 @@ class DatabaseClient(object):
|
|
23105
23225
|
:rtype: :class:`~oci.response.Response`
|
23106
23226
|
|
23107
23227
|
:example:
|
23108
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23228
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
|
23109
23229
|
"""
|
23110
23230
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23111
23231
|
required_arguments = ['vmClusterId']
|
@@ -23209,7 +23329,7 @@ class DatabaseClient(object):
|
|
23209
23329
|
:rtype: :class:`~oci.response.Response`
|
23210
23330
|
|
23211
23331
|
:example:
|
23212
|
-
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.140.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
|
23213
23333
|
"""
|
23214
23334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23215
23335
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -23310,7 +23430,7 @@ class DatabaseClient(object):
|
|
23310
23430
|
:rtype: :class:`~oci.response.Response`
|
23311
23431
|
|
23312
23432
|
:example:
|
23313
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23433
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
|
23314
23434
|
"""
|
23315
23435
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23316
23436
|
required_arguments = ['vmClusterId', 'patchId']
|
@@ -23404,7 +23524,7 @@ class DatabaseClient(object):
|
|
23404
23524
|
:rtype: :class:`~oci.response.Response`
|
23405
23525
|
|
23406
23526
|
:example:
|
23407
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23527
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
|
23408
23528
|
"""
|
23409
23529
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23410
23530
|
required_arguments = ['vmClusterId', 'patchHistoryEntryId']
|
@@ -23501,7 +23621,7 @@ class DatabaseClient(object):
|
|
23501
23621
|
:rtype: :class:`~oci.response.Response`
|
23502
23622
|
|
23503
23623
|
:example:
|
23504
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23624
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
|
23505
23625
|
"""
|
23506
23626
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23507
23627
|
required_arguments = ['vmClusterId', 'updateId']
|
@@ -23605,7 +23725,7 @@ class DatabaseClient(object):
|
|
23605
23725
|
:rtype: :class:`~oci.response.Response`
|
23606
23726
|
|
23607
23727
|
:example:
|
23608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23728
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
|
23609
23729
|
"""
|
23610
23730
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23611
23731
|
required_arguments = ['vmClusterId', 'updateHistoryEntryId']
|
@@ -23706,7 +23826,7 @@ class DatabaseClient(object):
|
|
23706
23826
|
:rtype: :class:`~oci.response.Response`
|
23707
23827
|
|
23708
23828
|
:example:
|
23709
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23829
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
|
23710
23830
|
"""
|
23711
23831
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23712
23832
|
required_arguments = []
|
@@ -23818,7 +23938,7 @@ class DatabaseClient(object):
|
|
23818
23938
|
:rtype: :class:`~oci.response.Response`
|
23819
23939
|
|
23820
23940
|
:example:
|
23821
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23941
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
|
23822
23942
|
"""
|
23823
23943
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23824
23944
|
required_arguments = []
|
@@ -23936,7 +24056,7 @@ class DatabaseClient(object):
|
|
23936
24056
|
:rtype: :class:`~oci.response.Response`
|
23937
24057
|
|
23938
24058
|
:example:
|
23939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24059
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
|
23940
24060
|
"""
|
23941
24061
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23942
24062
|
required_arguments = ['compartmentId', 'cloudVmClusterId']
|
@@ -24064,7 +24184,7 @@ class DatabaseClient(object):
|
|
24064
24184
|
:rtype: :class:`~oci.response.Response`
|
24065
24185
|
|
24066
24186
|
:example:
|
24067
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24187
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
|
24068
24188
|
"""
|
24069
24189
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24070
24190
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -24185,7 +24305,7 @@ class DatabaseClient(object):
|
|
24185
24305
|
:rtype: :class:`~oci.response.Response`
|
24186
24306
|
|
24187
24307
|
:example:
|
24188
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24308
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
|
24189
24309
|
"""
|
24190
24310
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24191
24311
|
required_arguments = ['compartmentId', 'serviceComponent']
|
@@ -24347,7 +24467,7 @@ class DatabaseClient(object):
|
|
24347
24467
|
:rtype: :class:`~oci.response.Response`
|
24348
24468
|
|
24349
24469
|
:example:
|
24350
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24470
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
|
24351
24471
|
"""
|
24352
24472
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24353
24473
|
required_arguments = ['compartmentId']
|
@@ -24523,7 +24643,7 @@ class DatabaseClient(object):
|
|
24523
24643
|
:rtype: :class:`~oci.response.Response`
|
24524
24644
|
|
24525
24645
|
:example:
|
24526
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24646
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
|
24527
24647
|
"""
|
24528
24648
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24529
24649
|
required_arguments = []
|
@@ -24660,7 +24780,7 @@ class DatabaseClient(object):
|
|
24660
24780
|
:rtype: :class:`~oci.response.Response`
|
24661
24781
|
|
24662
24782
|
:example:
|
24663
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24783
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
|
24664
24784
|
"""
|
24665
24785
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24666
24786
|
required_arguments = []
|
@@ -24801,7 +24921,7 @@ class DatabaseClient(object):
|
|
24801
24921
|
:rtype: :class:`~oci.response.Response`
|
24802
24922
|
|
24803
24923
|
:example:
|
24804
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24924
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
|
24805
24925
|
"""
|
24806
24926
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24807
24927
|
required_arguments = ['autonomousDatabaseId', 'compartmentId']
|
@@ -24951,7 +25071,7 @@ class DatabaseClient(object):
|
|
24951
25071
|
:rtype: :class:`~oci.response.Response`
|
24952
25072
|
|
24953
25073
|
:example:
|
24954
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25074
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
|
24955
25075
|
"""
|
24956
25076
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24957
25077
|
required_arguments = ['autonomousDatabaseId']
|
@@ -25062,7 +25182,7 @@ class DatabaseClient(object):
|
|
25062
25182
|
:rtype: :class:`~oci.response.Response`
|
25063
25183
|
|
25064
25184
|
:example:
|
25065
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25185
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
|
25066
25186
|
"""
|
25067
25187
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25068
25188
|
required_arguments = ['autonomousDatabaseId']
|
@@ -25176,7 +25296,7 @@ class DatabaseClient(object):
|
|
25176
25296
|
:rtype: :class:`~oci.response.Response`
|
25177
25297
|
|
25178
25298
|
:example:
|
25179
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25299
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
|
25180
25300
|
"""
|
25181
25301
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25182
25302
|
required_arguments = ['autonomousDatabaseId']
|
@@ -25313,7 +25433,7 @@ class DatabaseClient(object):
|
|
25313
25433
|
:rtype: :class:`~oci.response.Response`
|
25314
25434
|
|
25315
25435
|
:example:
|
25316
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25436
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
|
25317
25437
|
"""
|
25318
25438
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25319
25439
|
required_arguments = ['compartmentId', 'imageShapeFamily']
|
@@ -25514,7 +25634,7 @@ class DatabaseClient(object):
|
|
25514
25634
|
:rtype: :class:`~oci.response.Response`
|
25515
25635
|
|
25516
25636
|
:example:
|
25517
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25637
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
|
25518
25638
|
"""
|
25519
25639
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25520
25640
|
required_arguments = ['compartmentId']
|
@@ -25700,7 +25820,7 @@ class DatabaseClient(object):
|
|
25700
25820
|
:rtype: :class:`~oci.response.Response`
|
25701
25821
|
|
25702
25822
|
:example:
|
25703
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25823
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
|
25704
25824
|
"""
|
25705
25825
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25706
25826
|
required_arguments = ['compartmentId']
|
@@ -25831,7 +25951,7 @@ class DatabaseClient(object):
|
|
25831
25951
|
:rtype: :class:`~oci.response.Response`
|
25832
25952
|
|
25833
25953
|
:example:
|
25834
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25954
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
|
25835
25955
|
"""
|
25836
25956
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25837
25957
|
required_arguments = ['compartmentId']
|
@@ -25955,7 +26075,7 @@ class DatabaseClient(object):
|
|
25955
26075
|
:rtype: :class:`~oci.response.Response`
|
25956
26076
|
|
25957
26077
|
:example:
|
25958
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26078
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
|
25959
26079
|
"""
|
25960
26080
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25961
26081
|
required_arguments = ['availabilityDomain', 'compartmentId']
|
@@ -26079,7 +26199,7 @@ class DatabaseClient(object):
|
|
26079
26199
|
:rtype: :class:`~oci.response.Response`
|
26080
26200
|
|
26081
26201
|
:example:
|
26082
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26202
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
|
26083
26203
|
"""
|
26084
26204
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26085
26205
|
required_arguments = ['compartmentId']
|
@@ -26220,7 +26340,7 @@ class DatabaseClient(object):
|
|
26220
26340
|
:rtype: :class:`~oci.response.Response`
|
26221
26341
|
|
26222
26342
|
:example:
|
26223
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26343
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
|
26224
26344
|
"""
|
26225
26345
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26226
26346
|
required_arguments = ['compartmentId', 'autonomousVmClusterId']
|
@@ -26338,7 +26458,7 @@ class DatabaseClient(object):
|
|
26338
26458
|
:rtype: :class:`~oci.response.Response`
|
26339
26459
|
|
26340
26460
|
:example:
|
26341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26461
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_autonomous_vm_cluster_acd_resource_usage API.
|
26342
26462
|
"""
|
26343
26463
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26344
26464
|
required_arguments = ['autonomousVmClusterId']
|
@@ -26475,7 +26595,7 @@ class DatabaseClient(object):
|
|
26475
26595
|
:rtype: :class:`~oci.response.Response`
|
26476
26596
|
|
26477
26597
|
:example:
|
26478
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26598
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
|
26479
26599
|
"""
|
26480
26600
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26481
26601
|
required_arguments = ['compartmentId']
|
@@ -26612,7 +26732,7 @@ class DatabaseClient(object):
|
|
26612
26732
|
:rtype: :class:`~oci.response.Response`
|
26613
26733
|
|
26614
26734
|
:example:
|
26615
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26735
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
|
26616
26736
|
"""
|
26617
26737
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26618
26738
|
required_arguments = ['compartmentId']
|
@@ -26724,7 +26844,7 @@ class DatabaseClient(object):
|
|
26724
26844
|
:rtype: :class:`~oci.response.Response`
|
26725
26845
|
|
26726
26846
|
:example:
|
26727
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26847
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
|
26728
26848
|
"""
|
26729
26849
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26730
26850
|
required_arguments = []
|
@@ -26842,7 +26962,7 @@ class DatabaseClient(object):
|
|
26842
26962
|
:rtype: :class:`~oci.response.Response`
|
26843
26963
|
|
26844
26964
|
:example:
|
26845
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26965
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
|
26846
26966
|
"""
|
26847
26967
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26848
26968
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -26982,7 +27102,7 @@ class DatabaseClient(object):
|
|
26982
27102
|
:rtype: :class:`~oci.response.Response`
|
26983
27103
|
|
26984
27104
|
:example:
|
26985
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27105
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
|
26986
27106
|
"""
|
26987
27107
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26988
27108
|
required_arguments = ['compartmentId']
|
@@ -27139,7 +27259,7 @@ class DatabaseClient(object):
|
|
27139
27259
|
:rtype: :class:`~oci.response.Response`
|
27140
27260
|
|
27141
27261
|
:example:
|
27142
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27262
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
|
27143
27263
|
"""
|
27144
27264
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27145
27265
|
required_arguments = ['compartmentId']
|
@@ -27278,7 +27398,7 @@ class DatabaseClient(object):
|
|
27278
27398
|
:rtype: :class:`~oci.response.Response`
|
27279
27399
|
|
27280
27400
|
:example:
|
27281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27401
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
|
27282
27402
|
"""
|
27283
27403
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27284
27404
|
required_arguments = ['cloudVmClusterId']
|
@@ -27406,7 +27526,7 @@ class DatabaseClient(object):
|
|
27406
27526
|
:rtype: :class:`~oci.response.Response`
|
27407
27527
|
|
27408
27528
|
:example:
|
27409
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27529
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
|
27410
27530
|
"""
|
27411
27531
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27412
27532
|
required_arguments = ['cloudVmClusterId']
|
@@ -27550,7 +27670,7 @@ class DatabaseClient(object):
|
|
27550
27670
|
:rtype: :class:`~oci.response.Response`
|
27551
27671
|
|
27552
27672
|
:example:
|
27553
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27673
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
|
27554
27674
|
"""
|
27555
27675
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27556
27676
|
required_arguments = ['compartmentId']
|
@@ -27675,7 +27795,7 @@ class DatabaseClient(object):
|
|
27675
27795
|
:rtype: :class:`~oci.response.Response`
|
27676
27796
|
|
27677
27797
|
:example:
|
27678
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27798
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
|
27679
27799
|
"""
|
27680
27800
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27681
27801
|
required_arguments = ['dbNodeId']
|
@@ -27790,7 +27910,7 @@ class DatabaseClient(object):
|
|
27790
27910
|
:rtype: :class:`~oci.response.Response`
|
27791
27911
|
|
27792
27912
|
:example:
|
27793
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27913
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
|
27794
27914
|
"""
|
27795
27915
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27796
27916
|
required_arguments = ['dbNodeId']
|
@@ -27940,7 +28060,7 @@ class DatabaseClient(object):
|
|
27940
28060
|
:rtype: :class:`~oci.response.Response`
|
27941
28061
|
|
27942
28062
|
:example:
|
27943
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
|
27944
28064
|
"""
|
27945
28065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27946
28066
|
required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
|
@@ -28058,7 +28178,7 @@ class DatabaseClient(object):
|
|
28058
28178
|
:rtype: :class:`~oci.response.Response`
|
28059
28179
|
|
28060
28180
|
:example:
|
28061
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
|
28062
28182
|
"""
|
28063
28183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28064
28184
|
required_arguments = ['databaseId']
|
@@ -28201,7 +28321,7 @@ class DatabaseClient(object):
|
|
28201
28321
|
:rtype: :class:`~oci.response.Response`
|
28202
28322
|
|
28203
28323
|
:example:
|
28204
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28324
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
|
28205
28325
|
"""
|
28206
28326
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28207
28327
|
required_arguments = ['compartmentId']
|
@@ -28372,7 +28492,7 @@ class DatabaseClient(object):
|
|
28372
28492
|
:rtype: :class:`~oci.response.Response`
|
28373
28493
|
|
28374
28494
|
:example:
|
28375
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28495
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
|
28376
28496
|
"""
|
28377
28497
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28378
28498
|
required_arguments = ['databaseId']
|
@@ -28547,7 +28667,7 @@ class DatabaseClient(object):
|
|
28547
28667
|
:rtype: :class:`~oci.response.Response`
|
28548
28668
|
|
28549
28669
|
:example:
|
28550
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28670
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
|
28551
28671
|
"""
|
28552
28672
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28553
28673
|
required_arguments = ['compartmentId']
|
@@ -28677,7 +28797,7 @@ class DatabaseClient(object):
|
|
28677
28797
|
:rtype: :class:`~oci.response.Response`
|
28678
28798
|
|
28679
28799
|
:example:
|
28680
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28800
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
|
28681
28801
|
"""
|
28682
28802
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28683
28803
|
required_arguments = ['dbHomeId']
|
@@ -28785,7 +28905,7 @@ class DatabaseClient(object):
|
|
28785
28905
|
:rtype: :class:`~oci.response.Response`
|
28786
28906
|
|
28787
28907
|
:example:
|
28788
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28908
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
|
28789
28909
|
"""
|
28790
28910
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28791
28911
|
required_arguments = ['dbHomeId']
|
@@ -28929,7 +29049,7 @@ class DatabaseClient(object):
|
|
28929
29049
|
:rtype: :class:`~oci.response.Response`
|
28930
29050
|
|
28931
29051
|
:example:
|
28932
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29052
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
|
28933
29053
|
"""
|
28934
29054
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28935
29055
|
required_arguments = ['compartmentId']
|
@@ -29093,7 +29213,7 @@ class DatabaseClient(object):
|
|
29093
29213
|
:rtype: :class:`~oci.response.Response`
|
29094
29214
|
|
29095
29215
|
:example:
|
29096
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29216
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
|
29097
29217
|
"""
|
29098
29218
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29099
29219
|
required_arguments = ['compartmentId']
|
@@ -29249,7 +29369,7 @@ class DatabaseClient(object):
|
|
29249
29369
|
:rtype: :class:`~oci.response.Response`
|
29250
29370
|
|
29251
29371
|
:example:
|
29252
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
|
29253
29373
|
"""
|
29254
29374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29255
29375
|
required_arguments = ['compartmentId', 'exadataInfrastructureId']
|
@@ -29374,7 +29494,7 @@ class DatabaseClient(object):
|
|
29374
29494
|
:rtype: :class:`~oci.response.Response`
|
29375
29495
|
|
29376
29496
|
:example:
|
29377
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29497
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
|
29378
29498
|
"""
|
29379
29499
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29380
29500
|
required_arguments = []
|
@@ -29471,7 +29591,7 @@ class DatabaseClient(object):
|
|
29471
29591
|
:rtype: :class:`~oci.response.Response`
|
29472
29592
|
|
29473
29593
|
:example:
|
29474
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29594
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
|
29475
29595
|
"""
|
29476
29596
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29477
29597
|
required_arguments = ['dbSystemId']
|
@@ -29579,7 +29699,7 @@ class DatabaseClient(object):
|
|
29579
29699
|
:rtype: :class:`~oci.response.Response`
|
29580
29700
|
|
29581
29701
|
:example:
|
29582
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29702
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
|
29583
29703
|
"""
|
29584
29704
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29585
29705
|
required_arguments = ['dbSystemId']
|
@@ -29690,7 +29810,7 @@ class DatabaseClient(object):
|
|
29690
29810
|
:rtype: :class:`~oci.response.Response`
|
29691
29811
|
|
29692
29812
|
:example:
|
29693
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29813
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
|
29694
29814
|
"""
|
29695
29815
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29696
29816
|
required_arguments = ['compartmentId']
|
@@ -29791,7 +29911,7 @@ class DatabaseClient(object):
|
|
29791
29911
|
:rtype: :class:`~oci.response.Response`
|
29792
29912
|
|
29793
29913
|
:example:
|
29794
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
|
29795
29915
|
"""
|
29796
29916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29797
29917
|
required_arguments = ['storageManagement']
|
@@ -29918,7 +30038,7 @@ class DatabaseClient(object):
|
|
29918
30038
|
:rtype: :class:`~oci.response.Response`
|
29919
30039
|
|
29920
30040
|
:example:
|
29921
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30041
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
|
29922
30042
|
"""
|
29923
30043
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29924
30044
|
required_arguments = ['dbSystemId']
|
@@ -30100,7 +30220,7 @@ class DatabaseClient(object):
|
|
30100
30220
|
:rtype: :class:`~oci.response.Response`
|
30101
30221
|
|
30102
30222
|
:example:
|
30103
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30223
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
|
30104
30224
|
"""
|
30105
30225
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30106
30226
|
required_arguments = ['compartmentId']
|
@@ -30251,7 +30371,7 @@ class DatabaseClient(object):
|
|
30251
30371
|
:rtype: :class:`~oci.response.Response`
|
30252
30372
|
|
30253
30373
|
:example:
|
30254
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30374
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
|
30255
30375
|
"""
|
30256
30376
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30257
30377
|
required_arguments = ['compartmentId']
|
@@ -30392,7 +30512,7 @@ class DatabaseClient(object):
|
|
30392
30512
|
:rtype: :class:`~oci.response.Response`
|
30393
30513
|
|
30394
30514
|
:example:
|
30395
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30515
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
|
30396
30516
|
"""
|
30397
30517
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30398
30518
|
required_arguments = ['compartmentId']
|
@@ -30539,7 +30659,7 @@ class DatabaseClient(object):
|
|
30539
30659
|
:rtype: :class:`~oci.response.Response`
|
30540
30660
|
|
30541
30661
|
:example:
|
30542
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_exadb_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_exadb_vm_cluster_update_history_entries API.
|
30543
30663
|
"""
|
30544
30664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30545
30665
|
required_arguments = ['exadbVmClusterId']
|
@@ -30670,7 +30790,7 @@ class DatabaseClient(object):
|
|
30670
30790
|
:rtype: :class:`~oci.response.Response`
|
30671
30791
|
|
30672
30792
|
:example:
|
30673
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30793
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
|
30674
30794
|
"""
|
30675
30795
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30676
30796
|
required_arguments = ['exadbVmClusterId']
|
@@ -30816,7 +30936,7 @@ class DatabaseClient(object):
|
|
30816
30936
|
:rtype: :class:`~oci.response.Response`
|
30817
30937
|
|
30818
30938
|
:example:
|
30819
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30939
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
|
30820
30940
|
"""
|
30821
30941
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30822
30942
|
required_arguments = ['compartmentId']
|
@@ -30952,6 +31072,9 @@ class DatabaseClient(object):
|
|
30952
31072
|
:param str opc_request_id: (optional)
|
30953
31073
|
Unique identifier for the request.
|
30954
31074
|
|
31075
|
+
:param str exadata_infrastructure_id: (optional)
|
31076
|
+
A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
31077
|
+
|
30955
31078
|
:param obj retry_strategy: (optional)
|
30956
31079
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
30957
31080
|
|
@@ -30968,7 +31091,7 @@ class DatabaseClient(object):
|
|
30968
31091
|
:rtype: :class:`~oci.response.Response`
|
30969
31092
|
|
30970
31093
|
:example:
|
30971
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31094
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
|
30972
31095
|
"""
|
30973
31096
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30974
31097
|
required_arguments = ['compartmentId']
|
@@ -30987,7 +31110,8 @@ class DatabaseClient(object):
|
|
30987
31110
|
"sort_order",
|
30988
31111
|
"lifecycle_state",
|
30989
31112
|
"display_name",
|
30990
|
-
"opc_request_id"
|
31113
|
+
"opc_request_id",
|
31114
|
+
"exadata_infrastructure_id"
|
30991
31115
|
]
|
30992
31116
|
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
30993
31117
|
if extra_kwargs:
|
@@ -31022,7 +31146,8 @@ class DatabaseClient(object):
|
|
31022
31146
|
"sortBy": kwargs.get("sort_by", missing),
|
31023
31147
|
"sortOrder": kwargs.get("sort_order", missing),
|
31024
31148
|
"lifecycleState": kwargs.get("lifecycle_state", missing),
|
31025
|
-
"displayName": kwargs.get("display_name", missing)
|
31149
|
+
"displayName": kwargs.get("display_name", missing),
|
31150
|
+
"exadataInfrastructureId": kwargs.get("exadata_infrastructure_id", missing)
|
31026
31151
|
}
|
31027
31152
|
query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
|
31028
31153
|
|
@@ -31121,7 +31246,7 @@ class DatabaseClient(object):
|
|
31121
31246
|
:rtype: :class:`~oci.response.Response`
|
31122
31247
|
|
31123
31248
|
:example:
|
31124
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
|
31125
31250
|
"""
|
31126
31251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31127
31252
|
required_arguments = ['compartmentId']
|
@@ -31276,7 +31401,7 @@ class DatabaseClient(object):
|
|
31276
31401
|
:rtype: :class:`~oci.response.Response`
|
31277
31402
|
|
31278
31403
|
:example:
|
31279
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31404
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
|
31280
31405
|
"""
|
31281
31406
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31282
31407
|
required_arguments = ['compartmentId']
|
@@ -31431,7 +31556,7 @@ class DatabaseClient(object):
|
|
31431
31556
|
:rtype: :class:`~oci.response.Response`
|
31432
31557
|
|
31433
31558
|
:example:
|
31434
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31559
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
|
31435
31560
|
"""
|
31436
31561
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31437
31562
|
required_arguments = ['compartmentId']
|
@@ -31589,7 +31714,7 @@ class DatabaseClient(object):
|
|
31589
31714
|
:rtype: :class:`~oci.response.Response`
|
31590
31715
|
|
31591
31716
|
:example:
|
31592
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31717
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
|
31593
31718
|
"""
|
31594
31719
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31595
31720
|
required_arguments = ['compartmentId', 'externalDatabaseId']
|
@@ -31743,7 +31868,7 @@ class DatabaseClient(object):
|
|
31743
31868
|
:rtype: :class:`~oci.response.Response`
|
31744
31869
|
|
31745
31870
|
:example:
|
31746
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31871
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
|
31747
31872
|
"""
|
31748
31873
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31749
31874
|
required_arguments = ['compartmentId']
|
@@ -31902,7 +32027,7 @@ class DatabaseClient(object):
|
|
31902
32027
|
:rtype: :class:`~oci.response.Response`
|
31903
32028
|
|
31904
32029
|
:example:
|
31905
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32030
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
|
31906
32031
|
"""
|
31907
32032
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31908
32033
|
required_arguments = ['compartmentId']
|
@@ -32046,7 +32171,7 @@ class DatabaseClient(object):
|
|
32046
32171
|
:rtype: :class:`~oci.response.Response`
|
32047
32172
|
|
32048
32173
|
:example:
|
32049
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32174
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
|
32050
32175
|
"""
|
32051
32176
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32052
32177
|
required_arguments = ['compartmentId']
|
@@ -32193,7 +32318,7 @@ class DatabaseClient(object):
|
|
32193
32318
|
:rtype: :class:`~oci.response.Response`
|
32194
32319
|
|
32195
32320
|
:example:
|
32196
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32321
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
|
32197
32322
|
"""
|
32198
32323
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32199
32324
|
required_arguments = ['version']
|
@@ -32350,7 +32475,7 @@ class DatabaseClient(object):
|
|
32350
32475
|
:rtype: :class:`~oci.response.Response`
|
32351
32476
|
|
32352
32477
|
:example:
|
32353
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
|
32354
32479
|
"""
|
32355
32480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32356
32481
|
required_arguments = ['compartmentId']
|
@@ -32463,7 +32588,7 @@ class DatabaseClient(object):
|
|
32463
32588
|
:rtype: :class:`~oci.response.Response`
|
32464
32589
|
|
32465
32590
|
:example:
|
32466
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
|
32467
32592
|
"""
|
32468
32593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32469
32594
|
required_arguments = ['compartmentId']
|
@@ -32601,7 +32726,7 @@ class DatabaseClient(object):
|
|
32601
32726
|
:rtype: :class:`~oci.response.Response`
|
32602
32727
|
|
32603
32728
|
:example:
|
32604
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32729
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
|
32605
32730
|
"""
|
32606
32731
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32607
32732
|
required_arguments = ['compartmentId']
|
@@ -32794,7 +32919,7 @@ class DatabaseClient(object):
|
|
32794
32919
|
:rtype: :class:`~oci.response.Response`
|
32795
32920
|
|
32796
32921
|
:example:
|
32797
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32922
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
|
32798
32923
|
"""
|
32799
32924
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32800
32925
|
required_arguments = ['compartmentId']
|
@@ -32970,7 +33095,7 @@ class DatabaseClient(object):
|
|
32970
33095
|
:rtype: :class:`~oci.response.Response`
|
32971
33096
|
|
32972
33097
|
:example:
|
32973
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33098
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
|
32974
33099
|
"""
|
32975
33100
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32976
33101
|
required_arguments = ['compartmentId']
|
@@ -33102,7 +33227,7 @@ class DatabaseClient(object):
|
|
33102
33227
|
:rtype: :class:`~oci.response.Response`
|
33103
33228
|
|
33104
33229
|
:example:
|
33105
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33230
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
|
33106
33231
|
"""
|
33107
33232
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33108
33233
|
required_arguments = ['type']
|
@@ -33231,7 +33356,7 @@ class DatabaseClient(object):
|
|
33231
33356
|
:rtype: :class:`~oci.response.Response`
|
33232
33357
|
|
33233
33358
|
:example:
|
33234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33359
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
|
33235
33360
|
"""
|
33236
33361
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33237
33362
|
required_arguments = ['databaseId']
|
@@ -33401,7 +33526,7 @@ class DatabaseClient(object):
|
|
33401
33526
|
:rtype: :class:`~oci.response.Response`
|
33402
33527
|
|
33403
33528
|
:example:
|
33404
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33529
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
|
33405
33530
|
"""
|
33406
33531
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33407
33532
|
required_arguments = []
|
@@ -33543,7 +33668,7 @@ class DatabaseClient(object):
|
|
33543
33668
|
:rtype: :class:`~oci.response.Response`
|
33544
33669
|
|
33545
33670
|
:example:
|
33546
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33671
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
|
33547
33672
|
"""
|
33548
33673
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33549
33674
|
required_arguments = ['schedulingPolicyId', 'schedulingPolicyTargetResourceId', 'planIntent']
|
@@ -33692,7 +33817,7 @@ class DatabaseClient(object):
|
|
33692
33817
|
:rtype: :class:`~oci.response.Response`
|
33693
33818
|
|
33694
33819
|
:example:
|
33695
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33820
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
|
33696
33821
|
"""
|
33697
33822
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33698
33823
|
required_arguments = ['compartmentId']
|
@@ -33857,7 +33982,7 @@ class DatabaseClient(object):
|
|
33857
33982
|
:rtype: :class:`~oci.response.Response`
|
33858
33983
|
|
33859
33984
|
:example:
|
33860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33985
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
|
33861
33986
|
"""
|
33862
33987
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33863
33988
|
required_arguments = ['compartmentId']
|
@@ -34013,7 +34138,7 @@ class DatabaseClient(object):
|
|
34013
34138
|
:rtype: :class:`~oci.response.Response`
|
34014
34139
|
|
34015
34140
|
:example:
|
34016
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34141
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
|
34017
34142
|
"""
|
34018
34143
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34019
34144
|
required_arguments = ['compartmentId']
|
@@ -34168,7 +34293,7 @@ class DatabaseClient(object):
|
|
34168
34293
|
:rtype: :class:`~oci.response.Response`
|
34169
34294
|
|
34170
34295
|
:example:
|
34171
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34296
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
|
34172
34297
|
"""
|
34173
34298
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34174
34299
|
required_arguments = ['schedulingPolicyId']
|
@@ -34324,7 +34449,7 @@ class DatabaseClient(object):
|
|
34324
34449
|
:rtype: :class:`~oci.response.Response`
|
34325
34450
|
|
34326
34451
|
:example:
|
34327
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34452
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
|
34328
34453
|
"""
|
34329
34454
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34330
34455
|
required_arguments = ['compartmentId', 'shape', 'giVersion']
|
@@ -34461,7 +34586,7 @@ class DatabaseClient(object):
|
|
34461
34586
|
:rtype: :class:`~oci.response.Response`
|
34462
34587
|
|
34463
34588
|
:example:
|
34464
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34589
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
|
34465
34590
|
"""
|
34466
34591
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34467
34592
|
required_arguments = ['exadataInfrastructureId', 'compartmentId']
|
@@ -34602,7 +34727,7 @@ class DatabaseClient(object):
|
|
34602
34727
|
:rtype: :class:`~oci.response.Response`
|
34603
34728
|
|
34604
34729
|
:example:
|
34605
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34730
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
|
34606
34731
|
"""
|
34607
34732
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34608
34733
|
required_arguments = ['vmClusterId']
|
@@ -34710,7 +34835,7 @@ class DatabaseClient(object):
|
|
34710
34835
|
:rtype: :class:`~oci.response.Response`
|
34711
34836
|
|
34712
34837
|
:example:
|
34713
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34838
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
|
34714
34839
|
"""
|
34715
34840
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34716
34841
|
required_arguments = ['vmClusterId']
|
@@ -34831,7 +34956,7 @@ class DatabaseClient(object):
|
|
34831
34956
|
:rtype: :class:`~oci.response.Response`
|
34832
34957
|
|
34833
34958
|
:example:
|
34834
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34959
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
|
34835
34960
|
"""
|
34836
34961
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34837
34962
|
required_arguments = ['vmClusterId']
|
@@ -34973,7 +35098,7 @@ class DatabaseClient(object):
|
|
34973
35098
|
:rtype: :class:`~oci.response.Response`
|
34974
35099
|
|
34975
35100
|
:example:
|
34976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35101
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
|
34977
35102
|
"""
|
34978
35103
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34979
35104
|
required_arguments = ['vmClusterId']
|
@@ -35127,7 +35252,7 @@ class DatabaseClient(object):
|
|
35127
35252
|
:rtype: :class:`~oci.response.Response`
|
35128
35253
|
|
35129
35254
|
:example:
|
35130
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35255
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
|
35131
35256
|
"""
|
35132
35257
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35133
35258
|
required_arguments = ['compartmentId']
|
@@ -35271,7 +35396,7 @@ class DatabaseClient(object):
|
|
35271
35396
|
:rtype: :class:`~oci.response.Response`
|
35272
35397
|
|
35273
35398
|
:example:
|
35274
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35399
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
|
35275
35400
|
"""
|
35276
35401
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35277
35402
|
required_arguments = ['pluggableDatabaseId']
|
@@ -35391,7 +35516,7 @@ class DatabaseClient(object):
|
|
35391
35516
|
:rtype: :class:`~oci.response.Response`
|
35392
35517
|
|
35393
35518
|
:example:
|
35394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35519
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
|
35395
35520
|
"""
|
35396
35521
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35397
35522
|
required_arguments = ['dbSystemId']
|
@@ -35511,7 +35636,7 @@ class DatabaseClient(object):
|
|
35511
35636
|
:rtype: :class:`~oci.response.Response`
|
35512
35637
|
|
35513
35638
|
:example:
|
35514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35639
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
|
35515
35640
|
"""
|
35516
35641
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35517
35642
|
required_arguments = ['databaseId']
|
@@ -35631,7 +35756,7 @@ class DatabaseClient(object):
|
|
35631
35756
|
:rtype: :class:`~oci.response.Response`
|
35632
35757
|
|
35633
35758
|
:example:
|
35634
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35759
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
|
35635
35760
|
"""
|
35636
35761
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35637
35762
|
required_arguments = ['databaseId']
|
@@ -35751,7 +35876,7 @@ class DatabaseClient(object):
|
|
35751
35876
|
:rtype: :class:`~oci.response.Response`
|
35752
35877
|
|
35753
35878
|
:example:
|
35754
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35879
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
|
35755
35880
|
"""
|
35756
35881
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35757
35882
|
required_arguments = ['pluggableDatabaseId']
|
@@ -35871,7 +35996,7 @@ class DatabaseClient(object):
|
|
35871
35996
|
:rtype: :class:`~oci.response.Response`
|
35872
35997
|
|
35873
35998
|
:example:
|
35874
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35999
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
|
35875
36000
|
"""
|
35876
36001
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35877
36002
|
required_arguments = ['executionActionId']
|
@@ -35988,7 +36113,7 @@ class DatabaseClient(object):
|
|
35988
36113
|
:rtype: :class:`~oci.response.Response`
|
35989
36114
|
|
35990
36115
|
:example:
|
35991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36116
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
|
35992
36117
|
"""
|
35993
36118
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35994
36119
|
required_arguments = ['pluggableDatabaseId']
|
@@ -36094,7 +36219,7 @@ class DatabaseClient(object):
|
|
36094
36219
|
:rtype: :class:`~oci.response.Response`
|
36095
36220
|
|
36096
36221
|
:example:
|
36097
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36222
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
|
36098
36223
|
"""
|
36099
36224
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36100
36225
|
required_arguments = ['autonomousDatabaseId']
|
@@ -36200,7 +36325,7 @@ class DatabaseClient(object):
|
|
36200
36325
|
:rtype: :class:`~oci.response.Response`
|
36201
36326
|
|
36202
36327
|
:example:
|
36203
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36328
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
|
36204
36329
|
"""
|
36205
36330
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36206
36331
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -36309,7 +36434,7 @@ class DatabaseClient(object):
|
|
36309
36434
|
:rtype: :class:`~oci.response.Response`
|
36310
36435
|
|
36311
36436
|
:example:
|
36312
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
|
36313
36438
|
"""
|
36314
36439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36315
36440
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -36427,7 +36552,7 @@ class DatabaseClient(object):
|
|
36427
36552
|
:rtype: :class:`~oci.response.Response`
|
36428
36553
|
|
36429
36554
|
:example:
|
36430
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36555
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
|
36431
36556
|
"""
|
36432
36557
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36433
36558
|
required_arguments = ['pluggableDatabaseId']
|
@@ -36547,7 +36672,7 @@ class DatabaseClient(object):
|
|
36547
36672
|
:rtype: :class:`~oci.response.Response`
|
36548
36673
|
|
36549
36674
|
:example:
|
36550
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36675
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
|
36551
36676
|
"""
|
36552
36677
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36553
36678
|
required_arguments = ['cloudVmClusterId']
|
@@ -36667,7 +36792,7 @@ class DatabaseClient(object):
|
|
36667
36792
|
:rtype: :class:`~oci.response.Response`
|
36668
36793
|
|
36669
36794
|
:example:
|
36670
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36795
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/remove_virtual_machine_from_exadb_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_exadb_vm_cluster API.
|
36671
36796
|
"""
|
36672
36797
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36673
36798
|
required_arguments = ['exadbVmClusterId']
|
@@ -36787,7 +36912,7 @@ class DatabaseClient(object):
|
|
36787
36912
|
:rtype: :class:`~oci.response.Response`
|
36788
36913
|
|
36789
36914
|
:example:
|
36790
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36915
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
|
36791
36916
|
"""
|
36792
36917
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36793
36918
|
required_arguments = ['vmClusterId']
|
@@ -36907,7 +37032,7 @@ class DatabaseClient(object):
|
|
36907
37032
|
:rtype: :class:`~oci.response.Response`
|
36908
37033
|
|
36909
37034
|
:example:
|
36910
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37035
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
|
36911
37036
|
"""
|
36912
37037
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36913
37038
|
required_arguments = ['executionWindowId']
|
@@ -37027,7 +37152,7 @@ class DatabaseClient(object):
|
|
37027
37152
|
:rtype: :class:`~oci.response.Response`
|
37028
37153
|
|
37029
37154
|
:example:
|
37030
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37155
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
|
37031
37156
|
"""
|
37032
37157
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37033
37158
|
required_arguments = ['schedulingPlanId']
|
@@ -37153,7 +37278,7 @@ class DatabaseClient(object):
|
|
37153
37278
|
:rtype: :class:`~oci.response.Response`
|
37154
37279
|
|
37155
37280
|
:example:
|
37156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
|
37157
37282
|
"""
|
37158
37283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37159
37284
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -37272,7 +37397,7 @@ class DatabaseClient(object):
|
|
37272
37397
|
:rtype: :class:`~oci.response.Response`
|
37273
37398
|
|
37274
37399
|
:example:
|
37275
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37400
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
|
37276
37401
|
"""
|
37277
37402
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37278
37403
|
required_arguments = []
|
@@ -37378,7 +37503,7 @@ class DatabaseClient(object):
|
|
37378
37503
|
:rtype: :class:`~oci.response.Response`
|
37379
37504
|
|
37380
37505
|
:example:
|
37381
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
|
37382
37507
|
"""
|
37383
37508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37384
37509
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -37480,7 +37605,7 @@ class DatabaseClient(object):
|
|
37480
37605
|
:rtype: :class:`~oci.response.Response`
|
37481
37606
|
|
37482
37607
|
:example:
|
37483
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
|
37484
37609
|
"""
|
37485
37610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37486
37611
|
required_arguments = ['autonomousDatabaseId']
|
@@ -37583,7 +37708,7 @@ class DatabaseClient(object):
|
|
37583
37708
|
:rtype: :class:`~oci.response.Response`
|
37584
37709
|
|
37585
37710
|
:example:
|
37586
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
|
37587
37712
|
"""
|
37588
37713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37589
37714
|
required_arguments = ['autonomousDatabaseId']
|
@@ -37688,7 +37813,7 @@ class DatabaseClient(object):
|
|
37688
37813
|
:rtype: :class:`~oci.response.Response`
|
37689
37814
|
|
37690
37815
|
:example:
|
37691
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37816
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
|
37692
37817
|
"""
|
37693
37818
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37694
37819
|
required_arguments = ['databaseId']
|
@@ -37786,6 +37911,9 @@ class DatabaseClient(object):
|
|
37786
37911
|
:param str opc_request_id: (optional)
|
37787
37912
|
Unique identifier for the request.
|
37788
37913
|
|
37914
|
+
:param oci.database.models.RotateAutonomousContainerDatabaseEncryptionKeyDetails rotate_autonomous_container_database_encryption_key_details: (optional)
|
37915
|
+
Key details provided by the user for rotate key operation for Autonomous Database.
|
37916
|
+
|
37789
37917
|
:param obj retry_strategy: (optional)
|
37790
37918
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
37791
37919
|
|
@@ -37802,7 +37930,7 @@ class DatabaseClient(object):
|
|
37802
37930
|
:rtype: :class:`~oci.response.Response`
|
37803
37931
|
|
37804
37932
|
:example:
|
37805
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37933
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
|
37806
37934
|
"""
|
37807
37935
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37808
37936
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -37817,7 +37945,8 @@ class DatabaseClient(object):
|
|
37817
37945
|
"retry_strategy",
|
37818
37946
|
"if_match",
|
37819
37947
|
"opc_retry_token",
|
37820
|
-
"opc_request_id"
|
37948
|
+
"opc_request_id",
|
37949
|
+
"rotate_autonomous_container_database_encryption_key_details"
|
37821
37950
|
]
|
37822
37951
|
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
37823
37952
|
if extra_kwargs:
|
@@ -37859,6 +37988,7 @@ class DatabaseClient(object):
|
|
37859
37988
|
method=method,
|
37860
37989
|
path_params=path_params,
|
37861
37990
|
header_params=header_params,
|
37991
|
+
body=kwargs.get('rotate_autonomous_container_database_encryption_key_details'),
|
37862
37992
|
response_type="AutonomousContainerDatabase",
|
37863
37993
|
allow_control_chars=kwargs.get('allow_control_chars'),
|
37864
37994
|
operation_name=operation_name,
|
@@ -37870,6 +38000,7 @@ class DatabaseClient(object):
|
|
37870
38000
|
method=method,
|
37871
38001
|
path_params=path_params,
|
37872
38002
|
header_params=header_params,
|
38003
|
+
body=kwargs.get('rotate_autonomous_container_database_encryption_key_details'),
|
37873
38004
|
response_type="AutonomousContainerDatabase",
|
37874
38005
|
allow_control_chars=kwargs.get('allow_control_chars'),
|
37875
38006
|
operation_name=operation_name,
|
@@ -37903,6 +38034,9 @@ class DatabaseClient(object):
|
|
37903
38034
|
:param str opc_request_id: (optional)
|
37904
38035
|
Unique identifier for the request.
|
37905
38036
|
|
38037
|
+
:param oci.database.models.RotateAutonomousDatabaseEncryptionKeyDetails rotate_autonomous_database_encryption_key_details: (optional)
|
38038
|
+
Key details provided by the user for rotate key operation for Autonomous Database.
|
38039
|
+
|
37906
38040
|
:param obj retry_strategy: (optional)
|
37907
38041
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
37908
38042
|
|
@@ -37919,7 +38053,7 @@ class DatabaseClient(object):
|
|
37919
38053
|
:rtype: :class:`~oci.response.Response`
|
37920
38054
|
|
37921
38055
|
:example:
|
37922
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38056
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
|
37923
38057
|
"""
|
37924
38058
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37925
38059
|
required_arguments = ['autonomousDatabaseId']
|
@@ -37934,7 +38068,8 @@ class DatabaseClient(object):
|
|
37934
38068
|
"retry_strategy",
|
37935
38069
|
"if_match",
|
37936
38070
|
"opc_retry_token",
|
37937
|
-
"opc_request_id"
|
38071
|
+
"opc_request_id",
|
38072
|
+
"rotate_autonomous_database_encryption_key_details"
|
37938
38073
|
]
|
37939
38074
|
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
37940
38075
|
if extra_kwargs:
|
@@ -37976,6 +38111,7 @@ class DatabaseClient(object):
|
|
37976
38111
|
method=method,
|
37977
38112
|
path_params=path_params,
|
37978
38113
|
header_params=header_params,
|
38114
|
+
body=kwargs.get('rotate_autonomous_database_encryption_key_details'),
|
37979
38115
|
response_type="AutonomousDatabase",
|
37980
38116
|
allow_control_chars=kwargs.get('allow_control_chars'),
|
37981
38117
|
operation_name=operation_name,
|
@@ -37987,6 +38123,7 @@ class DatabaseClient(object):
|
|
37987
38123
|
method=method,
|
37988
38124
|
path_params=path_params,
|
37989
38125
|
header_params=header_params,
|
38126
|
+
body=kwargs.get('rotate_autonomous_database_encryption_key_details'),
|
37990
38127
|
response_type="AutonomousDatabase",
|
37991
38128
|
allow_control_chars=kwargs.get('allow_control_chars'),
|
37992
38129
|
operation_name=operation_name,
|
@@ -38037,7 +38174,7 @@ class DatabaseClient(object):
|
|
38037
38174
|
:rtype: :class:`~oci.response.Response`
|
38038
38175
|
|
38039
38176
|
:example:
|
38040
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38177
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
|
38041
38178
|
"""
|
38042
38179
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38043
38180
|
required_arguments = ['autonomousVmClusterId']
|
@@ -38155,7 +38292,7 @@ class DatabaseClient(object):
|
|
38155
38292
|
:rtype: :class:`~oci.response.Response`
|
38156
38293
|
|
38157
38294
|
:example:
|
38158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38295
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
|
38159
38296
|
"""
|
38160
38297
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38161
38298
|
required_arguments = ['autonomousVmClusterId']
|
@@ -38273,7 +38410,7 @@ class DatabaseClient(object):
|
|
38273
38410
|
:rtype: :class:`~oci.response.Response`
|
38274
38411
|
|
38275
38412
|
:example:
|
38276
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38413
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
|
38277
38414
|
"""
|
38278
38415
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38279
38416
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -38392,7 +38529,7 @@ class DatabaseClient(object):
|
|
38392
38529
|
:rtype: :class:`~oci.response.Response`
|
38393
38530
|
|
38394
38531
|
:example:
|
38395
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38532
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
|
38396
38533
|
"""
|
38397
38534
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38398
38535
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -38508,7 +38645,7 @@ class DatabaseClient(object):
|
|
38508
38645
|
:rtype: :class:`~oci.response.Response`
|
38509
38646
|
|
38510
38647
|
:example:
|
38511
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38648
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
|
38512
38649
|
"""
|
38513
38650
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38514
38651
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -38621,7 +38758,7 @@ class DatabaseClient(object):
|
|
38621
38758
|
:rtype: :class:`~oci.response.Response`
|
38622
38759
|
|
38623
38760
|
:example:
|
38624
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38761
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
|
38625
38762
|
"""
|
38626
38763
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38627
38764
|
required_arguments = ['pluggableDatabaseId']
|
@@ -38734,7 +38871,7 @@ class DatabaseClient(object):
|
|
38734
38871
|
:rtype: :class:`~oci.response.Response`
|
38735
38872
|
|
38736
38873
|
:example:
|
38737
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38874
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
|
38738
38875
|
"""
|
38739
38876
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38740
38877
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -38849,7 +38986,7 @@ class DatabaseClient(object):
|
|
38849
38986
|
:rtype: :class:`~oci.response.Response`
|
38850
38987
|
|
38851
38988
|
:example:
|
38852
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38989
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
|
38853
38990
|
"""
|
38854
38991
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38855
38992
|
required_arguments = ['databaseId']
|
@@ -38952,7 +39089,7 @@ class DatabaseClient(object):
|
|
38952
39089
|
:rtype: :class:`~oci.response.Response`
|
38953
39090
|
|
38954
39091
|
:example:
|
38955
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39092
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
|
38956
39093
|
"""
|
38957
39094
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38958
39095
|
required_arguments = ['autonomousDatabaseId']
|
@@ -39064,7 +39201,7 @@ class DatabaseClient(object):
|
|
39064
39201
|
:rtype: :class:`~oci.response.Response`
|
39065
39202
|
|
39066
39203
|
:example:
|
39067
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39204
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
|
39068
39205
|
"""
|
39069
39206
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39070
39207
|
required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
|
@@ -39187,7 +39324,7 @@ class DatabaseClient(object):
|
|
39187
39324
|
:rtype: :class:`~oci.response.Response`
|
39188
39325
|
|
39189
39326
|
:example:
|
39190
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39327
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
|
39191
39328
|
"""
|
39192
39329
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39193
39330
|
required_arguments = ['databaseId']
|
@@ -39309,7 +39446,7 @@ class DatabaseClient(object):
|
|
39309
39446
|
:rtype: :class:`~oci.response.Response`
|
39310
39447
|
|
39311
39448
|
:example:
|
39312
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39449
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
|
39313
39450
|
"""
|
39314
39451
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39315
39452
|
required_arguments = ['pluggableDatabaseId']
|
@@ -39416,7 +39553,7 @@ class DatabaseClient(object):
|
|
39416
39553
|
:rtype: :class:`~oci.response.Response`
|
39417
39554
|
|
39418
39555
|
:example:
|
39419
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39556
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
|
39420
39557
|
"""
|
39421
39558
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39422
39559
|
required_arguments = ['autonomousDatabaseId']
|
@@ -39516,7 +39653,7 @@ class DatabaseClient(object):
|
|
39516
39653
|
:rtype: :class:`~oci.response.Response`
|
39517
39654
|
|
39518
39655
|
:example:
|
39519
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39656
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
|
39520
39657
|
"""
|
39521
39658
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39522
39659
|
required_arguments = ['autonomousDatabaseId']
|
@@ -39626,7 +39763,7 @@ class DatabaseClient(object):
|
|
39626
39763
|
:rtype: :class:`~oci.response.Response`
|
39627
39764
|
|
39628
39765
|
:example:
|
39629
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39766
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
|
39630
39767
|
"""
|
39631
39768
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39632
39769
|
required_arguments = ['pluggableDatabaseId']
|
@@ -39734,7 +39871,7 @@ class DatabaseClient(object):
|
|
39734
39871
|
:rtype: :class:`~oci.response.Response`
|
39735
39872
|
|
39736
39873
|
:example:
|
39737
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39874
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
|
39738
39875
|
"""
|
39739
39876
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39740
39877
|
required_arguments = ['autonomousDatabaseId']
|
@@ -39846,7 +39983,7 @@ class DatabaseClient(object):
|
|
39846
39983
|
:rtype: :class:`~oci.response.Response`
|
39847
39984
|
|
39848
39985
|
:example:
|
39849
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39986
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
|
39850
39987
|
"""
|
39851
39988
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39852
39989
|
required_arguments = ['pluggableDatabaseId']
|
@@ -39958,7 +40095,7 @@ class DatabaseClient(object):
|
|
39958
40095
|
:rtype: :class:`~oci.response.Response`
|
39959
40096
|
|
39960
40097
|
:example:
|
39961
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40098
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
|
39962
40099
|
"""
|
39963
40100
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39964
40101
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -40077,7 +40214,7 @@ class DatabaseClient(object):
|
|
40077
40214
|
:rtype: :class:`~oci.response.Response`
|
40078
40215
|
|
40079
40216
|
:example:
|
40080
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40217
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
|
40081
40218
|
"""
|
40082
40219
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40083
40220
|
required_arguments = ['autonomousDatabaseId']
|
@@ -40201,7 +40338,7 @@ class DatabaseClient(object):
|
|
40201
40338
|
:rtype: :class:`~oci.response.Response`
|
40202
40339
|
|
40203
40340
|
:example:
|
40204
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40341
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
|
40205
40342
|
"""
|
40206
40343
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40207
40344
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -40304,7 +40441,7 @@ class DatabaseClient(object):
|
|
40304
40441
|
:rtype: :class:`~oci.response.Response`
|
40305
40442
|
|
40306
40443
|
:example:
|
40307
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40444
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
|
40308
40445
|
"""
|
40309
40446
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40310
40447
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -40402,7 +40539,7 @@ class DatabaseClient(object):
|
|
40402
40539
|
:rtype: :class:`~oci.response.Response`
|
40403
40540
|
|
40404
40541
|
:example:
|
40405
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40542
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
|
40406
40543
|
"""
|
40407
40544
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40408
40545
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -40507,7 +40644,7 @@ class DatabaseClient(object):
|
|
40507
40644
|
:rtype: :class:`~oci.response.Response`
|
40508
40645
|
|
40509
40646
|
:example:
|
40510
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40647
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
|
40511
40648
|
"""
|
40512
40649
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40513
40650
|
required_arguments = ['dbSystemId']
|
@@ -40608,7 +40745,7 @@ class DatabaseClient(object):
|
|
40608
40745
|
:rtype: :class:`~oci.response.Response`
|
40609
40746
|
|
40610
40747
|
:example:
|
40611
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40748
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
|
40612
40749
|
"""
|
40613
40750
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40614
40751
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -40721,7 +40858,7 @@ class DatabaseClient(object):
|
|
40721
40858
|
:rtype: :class:`~oci.response.Response`
|
40722
40859
|
|
40723
40860
|
:example:
|
40724
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40861
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
|
40725
40862
|
"""
|
40726
40863
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40727
40864
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -40832,7 +40969,7 @@ class DatabaseClient(object):
|
|
40832
40969
|
:rtype: :class:`~oci.response.Response`
|
40833
40970
|
|
40834
40971
|
:example:
|
40835
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40972
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
|
40836
40973
|
"""
|
40837
40974
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40838
40975
|
required_arguments = ['autonomousDatabaseId']
|
@@ -40942,7 +41079,7 @@ class DatabaseClient(object):
|
|
40942
41079
|
:rtype: :class:`~oci.response.Response`
|
40943
41080
|
|
40944
41081
|
:example:
|
40945
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41082
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
|
40946
41083
|
"""
|
40947
41084
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40948
41085
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -41042,7 +41179,7 @@ class DatabaseClient(object):
|
|
41042
41179
|
:rtype: :class:`~oci.response.Response`
|
41043
41180
|
|
41044
41181
|
:example:
|
41045
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41182
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
|
41046
41183
|
"""
|
41047
41184
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41048
41185
|
required_arguments = []
|
@@ -41136,7 +41273,7 @@ class DatabaseClient(object):
|
|
41136
41273
|
:rtype: :class:`~oci.response.Response`
|
41137
41274
|
|
41138
41275
|
:example:
|
41139
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
|
41140
41277
|
"""
|
41141
41278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41142
41279
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -41241,7 +41378,7 @@ class DatabaseClient(object):
|
|
41241
41378
|
:rtype: :class:`~oci.response.Response`
|
41242
41379
|
|
41243
41380
|
:example:
|
41244
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41381
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
|
41245
41382
|
"""
|
41246
41383
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41247
41384
|
required_arguments = ['autonomousDatabaseId']
|
@@ -41344,7 +41481,7 @@ class DatabaseClient(object):
|
|
41344
41481
|
:rtype: :class:`~oci.response.Response`
|
41345
41482
|
|
41346
41483
|
:example:
|
41347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41484
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
|
41348
41485
|
"""
|
41349
41486
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41350
41487
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -41452,7 +41589,7 @@ class DatabaseClient(object):
|
|
41452
41589
|
:rtype: :class:`~oci.response.Response`
|
41453
41590
|
|
41454
41591
|
:example:
|
41455
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41592
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
|
41456
41593
|
"""
|
41457
41594
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41458
41595
|
required_arguments = ['autonomousVmClusterId']
|
@@ -41565,7 +41702,7 @@ class DatabaseClient(object):
|
|
41565
41702
|
:rtype: :class:`~oci.response.Response`
|
41566
41703
|
|
41567
41704
|
:example:
|
41568
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41705
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
|
41569
41706
|
"""
|
41570
41707
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41571
41708
|
required_arguments = ['backupDestinationId']
|
@@ -41675,7 +41812,7 @@ class DatabaseClient(object):
|
|
41675
41812
|
:rtype: :class:`~oci.response.Response`
|
41676
41813
|
|
41677
41814
|
:example:
|
41678
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41815
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
|
41679
41816
|
"""
|
41680
41817
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41681
41818
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -41785,7 +41922,7 @@ class DatabaseClient(object):
|
|
41785
41922
|
:rtype: :class:`~oci.response.Response`
|
41786
41923
|
|
41787
41924
|
:example:
|
41788
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41925
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
|
41789
41926
|
"""
|
41790
41927
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41791
41928
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -41895,7 +42032,7 @@ class DatabaseClient(object):
|
|
41895
42032
|
:rtype: :class:`~oci.response.Response`
|
41896
42033
|
|
41897
42034
|
:example:
|
41898
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42035
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
|
41899
42036
|
"""
|
41900
42037
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41901
42038
|
required_arguments = ['cloudVmClusterId']
|
@@ -42005,7 +42142,7 @@ class DatabaseClient(object):
|
|
42005
42142
|
:rtype: :class:`~oci.response.Response`
|
42006
42143
|
|
42007
42144
|
:example:
|
42008
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42145
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
|
42009
42146
|
"""
|
42010
42147
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42011
42148
|
required_arguments = ['cloudVmClusterId']
|
@@ -42118,7 +42255,7 @@ class DatabaseClient(object):
|
|
42118
42255
|
:rtype: :class:`~oci.response.Response`
|
42119
42256
|
|
42120
42257
|
:example:
|
42121
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42258
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
|
42122
42259
|
"""
|
42123
42260
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42124
42261
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -42232,7 +42369,7 @@ class DatabaseClient(object):
|
|
42232
42369
|
:rtype: :class:`~oci.response.Response`
|
42233
42370
|
|
42234
42371
|
:example:
|
42235
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
|
42236
42373
|
"""
|
42237
42374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42238
42375
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -42348,7 +42485,7 @@ class DatabaseClient(object):
|
|
42348
42485
|
:rtype: :class:`~oci.response.Response`
|
42349
42486
|
|
42350
42487
|
:example:
|
42351
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42488
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
|
42352
42489
|
"""
|
42353
42490
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42354
42491
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -42456,7 +42593,7 @@ class DatabaseClient(object):
|
|
42456
42593
|
:rtype: :class:`~oci.response.Response`
|
42457
42594
|
|
42458
42595
|
:example:
|
42459
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42596
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
|
42460
42597
|
"""
|
42461
42598
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42462
42599
|
required_arguments = ['databaseId']
|
@@ -42561,7 +42698,7 @@ class DatabaseClient(object):
|
|
42561
42698
|
:rtype: :class:`~oci.response.Response`
|
42562
42699
|
|
42563
42700
|
:example:
|
42564
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42701
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
|
42565
42702
|
"""
|
42566
42703
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42567
42704
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -42666,7 +42803,7 @@ class DatabaseClient(object):
|
|
42666
42803
|
:rtype: :class:`~oci.response.Response`
|
42667
42804
|
|
42668
42805
|
:example:
|
42669
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42806
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
|
42670
42807
|
"""
|
42671
42808
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42672
42809
|
required_arguments = ['dbHomeId']
|
@@ -42774,7 +42911,7 @@ class DatabaseClient(object):
|
|
42774
42911
|
:rtype: :class:`~oci.response.Response`
|
42775
42912
|
|
42776
42913
|
:example:
|
42777
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
|
42778
42915
|
"""
|
42779
42916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42780
42917
|
required_arguments = ['dbNodeId']
|
@@ -42888,7 +43025,7 @@ class DatabaseClient(object):
|
|
42888
43025
|
:rtype: :class:`~oci.response.Response`
|
42889
43026
|
|
42890
43027
|
:example:
|
42891
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43028
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
|
42892
43029
|
"""
|
42893
43030
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42894
43031
|
required_arguments = ['dbSystemId']
|
@@ -42997,7 +43134,7 @@ class DatabaseClient(object):
|
|
42997
43134
|
:rtype: :class:`~oci.response.Response`
|
42998
43135
|
|
42999
43136
|
:example:
|
43000
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43137
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
|
43001
43138
|
"""
|
43002
43139
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43003
43140
|
required_arguments = ['exadataInfrastructureId']
|
@@ -43117,7 +43254,7 @@ class DatabaseClient(object):
|
|
43117
43254
|
:rtype: :class:`~oci.response.Response`
|
43118
43255
|
|
43119
43256
|
:example:
|
43120
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43257
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
|
43121
43258
|
"""
|
43122
43259
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43123
43260
|
required_arguments = ['dbSystemId']
|
@@ -43227,7 +43364,7 @@ class DatabaseClient(object):
|
|
43227
43364
|
:rtype: :class:`~oci.response.Response`
|
43228
43365
|
|
43229
43366
|
:example:
|
43230
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43367
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
|
43231
43368
|
"""
|
43232
43369
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43233
43370
|
required_arguments = ['exadbVmClusterId']
|
@@ -43337,7 +43474,7 @@ class DatabaseClient(object):
|
|
43337
43474
|
:rtype: :class:`~oci.response.Response`
|
43338
43475
|
|
43339
43476
|
:example:
|
43340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
|
43341
43478
|
"""
|
43342
43479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43343
43480
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -43447,7 +43584,7 @@ class DatabaseClient(object):
|
|
43447
43584
|
:rtype: :class:`~oci.response.Response`
|
43448
43585
|
|
43449
43586
|
:example:
|
43450
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43587
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
|
43451
43588
|
"""
|
43452
43589
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43453
43590
|
required_arguments = ['executionActionId']
|
@@ -43557,7 +43694,7 @@ class DatabaseClient(object):
|
|
43557
43694
|
:rtype: :class:`~oci.response.Response`
|
43558
43695
|
|
43559
43696
|
:example:
|
43560
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43697
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
|
43561
43698
|
"""
|
43562
43699
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43563
43700
|
required_arguments = ['executionWindowId']
|
@@ -43670,7 +43807,7 @@ class DatabaseClient(object):
|
|
43670
43807
|
:rtype: :class:`~oci.response.Response`
|
43671
43808
|
|
43672
43809
|
:example:
|
43673
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43810
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
|
43674
43811
|
"""
|
43675
43812
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43676
43813
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -43781,7 +43918,7 @@ class DatabaseClient(object):
|
|
43781
43918
|
:rtype: :class:`~oci.response.Response`
|
43782
43919
|
|
43783
43920
|
:example:
|
43784
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43921
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
|
43785
43922
|
"""
|
43786
43923
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43787
43924
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -43891,7 +44028,7 @@ class DatabaseClient(object):
|
|
43891
44028
|
:rtype: :class:`~oci.response.Response`
|
43892
44029
|
|
43893
44030
|
:example:
|
43894
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44031
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
|
43895
44032
|
"""
|
43896
44033
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43897
44034
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -44003,7 +44140,7 @@ class DatabaseClient(object):
|
|
44003
44140
|
:rtype: :class:`~oci.response.Response`
|
44004
44141
|
|
44005
44142
|
:example:
|
44006
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44143
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
|
44007
44144
|
"""
|
44008
44145
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44009
44146
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -44113,7 +44250,7 @@ class DatabaseClient(object):
|
|
44113
44250
|
:rtype: :class:`~oci.response.Response`
|
44114
44251
|
|
44115
44252
|
:example:
|
44116
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44253
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
|
44117
44254
|
"""
|
44118
44255
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44119
44256
|
required_arguments = ['keyStoreId']
|
@@ -44218,7 +44355,7 @@ class DatabaseClient(object):
|
|
44218
44355
|
:rtype: :class:`~oci.response.Response`
|
44219
44356
|
|
44220
44357
|
:example:
|
44221
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44358
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
|
44222
44359
|
"""
|
44223
44360
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44224
44361
|
required_arguments = ['maintenanceRunId']
|
@@ -44326,7 +44463,7 @@ class DatabaseClient(object):
|
|
44326
44463
|
:rtype: :class:`~oci.response.Response`
|
44327
44464
|
|
44328
44465
|
:example:
|
44329
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44466
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
|
44330
44467
|
"""
|
44331
44468
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44332
44469
|
required_arguments = ['oneoffPatchId']
|
@@ -44433,7 +44570,7 @@ class DatabaseClient(object):
|
|
44433
44570
|
:rtype: :class:`~oci.response.Response`
|
44434
44571
|
|
44435
44572
|
:example:
|
44436
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44573
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
|
44437
44574
|
"""
|
44438
44575
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44439
44576
|
required_arguments = ['pluggableDatabaseId']
|
@@ -44541,7 +44678,7 @@ class DatabaseClient(object):
|
|
44541
44678
|
:rtype: :class:`~oci.response.Response`
|
44542
44679
|
|
44543
44680
|
:example:
|
44544
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44681
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
|
44545
44682
|
"""
|
44546
44683
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44547
44684
|
required_arguments = ['scheduledActionId']
|
@@ -44651,7 +44788,7 @@ class DatabaseClient(object):
|
|
44651
44788
|
:rtype: :class:`~oci.response.Response`
|
44652
44789
|
|
44653
44790
|
:example:
|
44654
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44791
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
|
44655
44792
|
"""
|
44656
44793
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44657
44794
|
required_arguments = ['schedulingPolicyId']
|
@@ -44766,7 +44903,7 @@ class DatabaseClient(object):
|
|
44766
44903
|
:rtype: :class:`~oci.response.Response`
|
44767
44904
|
|
44768
44905
|
:example:
|
44769
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44906
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
|
44770
44907
|
"""
|
44771
44908
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44772
44909
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -44877,7 +45014,7 @@ class DatabaseClient(object):
|
|
44877
45014
|
:rtype: :class:`~oci.response.Response`
|
44878
45015
|
|
44879
45016
|
:example:
|
44880
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
|
44881
45018
|
"""
|
44882
45019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44883
45020
|
required_arguments = ['vmClusterId']
|
@@ -44993,7 +45130,7 @@ class DatabaseClient(object):
|
|
44993
45130
|
:rtype: :class:`~oci.response.Response`
|
44994
45131
|
|
44995
45132
|
:example:
|
44996
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45133
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
|
44997
45134
|
"""
|
44998
45135
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44999
45136
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -45104,7 +45241,7 @@ class DatabaseClient(object):
|
|
45104
45241
|
:rtype: :class:`~oci.response.Response`
|
45105
45242
|
|
45106
45243
|
:example:
|
45107
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45244
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
|
45108
45245
|
"""
|
45109
45246
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45110
45247
|
required_arguments = ['databaseId']
|
@@ -45221,7 +45358,7 @@ class DatabaseClient(object):
|
|
45221
45358
|
:rtype: :class:`~oci.response.Response`
|
45222
45359
|
|
45223
45360
|
:example:
|
45224
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45361
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
|
45225
45362
|
"""
|
45226
45363
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45227
45364
|
required_arguments = ['dbSystemId']
|
@@ -45338,7 +45475,7 @@ class DatabaseClient(object):
|
|
45338
45475
|
:rtype: :class:`~oci.response.Response`
|
45339
45476
|
|
45340
45477
|
:example:
|
45341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.140.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
|
45342
45479
|
"""
|
45343
45480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45344
45481
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|