oci 2.154.2__py3-none-any.whl → 2.155.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/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/adk/agent.py +82 -32
- oci/addons/adk/mcp/__init__.py +11 -0
- oci/addons/adk/mcp/mcp_client.py +420 -0
- oci/addons/adk/tool/function_tool.py +7 -3
- oci/addons/adk/tool/tool.py +11 -1
- oci/addons/adk/tool/toolkit.py +11 -2
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apiaccesscontrol/api_metadata_client.py +6 -6
- oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
- oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
- oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/__init__.py +3 -1
- oci/apm_traces/attributes_client.py +12 -12
- oci/apm_traces/models/__init__.py +25 -1
- oci/apm_traces/models/attribute.py +101 -0
- oci/apm_traces/models/attribute_metadata.py +149 -0
- oci/apm_traces/models/attribute_response.py +2 -2
- oci/apm_traces/models/attribute_update_response.py +2 -2
- oci/apm_traces/models/auto_activate_status.py +16 -0
- oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
- oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
- oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
- oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
- oci/apm_traces/models/create_scheduled_query_details.py +471 -0
- oci/apm_traces/models/custom_metric.py +295 -0
- oci/apm_traces/models/log.py +475 -0
- oci/apm_traces/models/object_storage.py +132 -0
- oci/apm_traces/models/scheduled_query.py +666 -0
- oci/apm_traces/models/scheduled_query_collection.py +70 -0
- oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
- oci/apm_traces/models/scheduled_query_summary.py +573 -0
- oci/apm_traces/models/streaming.py +70 -0
- oci/apm_traces/models/tag_metadata.py +2 -2
- oci/apm_traces/models/update_scheduled_query_details.py +471 -0
- oci/apm_traces/query_client.py +8 -6
- oci/apm_traces/scheduled_query_client.py +755 -0
- oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
- oci/apm_traces/trace_client.py +131 -6
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/base_client.py +3 -0
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +88 -88
- 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/capacity_management/demand_signal_client.py +13 -13
- oci/capacity_management/internal_demand_signal_client.py +12 -12
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +125 -125
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +901 -421
- oci/database/database_client_composite_operations.py +123 -0
- oci/database/models/__init__.py +14 -0
- oci/database/models/autonomous_container_database.py +37 -0
- oci/database/models/autonomous_container_database_summary.py +37 -0
- oci/database/models/autonomous_database_software_image.py +37 -0
- oci/database/models/autonomous_database_software_image_summary.py +37 -0
- oci/database/models/autonomous_vm_cluster.py +37 -0
- oci/database/models/autonomous_vm_cluster_summary.py +37 -0
- oci/database/models/azure_encryption_key_details.py +80 -0
- oci/database/models/backup.py +7 -3
- oci/database/models/backup_destination.py +37 -0
- oci/database/models/backup_destination_configuration_summary.py +7 -3
- oci/database/models/backup_destination_details.py +7 -3
- oci/database/models/backup_destination_details_summary.py +7 -3
- oci/database/models/backup_destination_summary.py +37 -0
- oci/database/models/backup_summary.py +7 -3
- oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
- oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
- oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
- oci/database/models/cloud_vm_cluster.py +80 -2
- oci/database/models/cloud_vm_cluster_summary.py +80 -2
- oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
- oci/database/models/create_cloud_vm_cluster_details.py +17 -17
- oci/database/models/create_database_base.py +1 -1
- oci/database/models/create_vm_cluster_details.py +2 -2
- oci/database/models/database.py +37 -0
- oci/database/models/database_software_image.py +37 -0
- oci/database/models/database_software_image_summary.py +37 -0
- oci/database/models/database_summary.py +37 -0
- oci/database/models/db_home.py +37 -0
- oci/database/models/db_home_from_agent_resource_id.py +37 -0
- oci/database/models/db_home_summary.py +37 -0
- oci/database/models/db_node.py +37 -0
- oci/database/models/db_node_summary.py +37 -0
- oci/database/models/db_server.py +37 -0
- oci/database/models/db_server_summary.py +37 -0
- oci/database/models/db_system.py +37 -0
- oci/database/models/db_system_summary.py +37 -0
- oci/database/models/encryption_key_location_details.py +15 -5
- oci/database/models/exadata_infrastructure.py +37 -0
- oci/database/models/exadata_infrastructure_summary.py +37 -0
- oci/database/models/execution_action.py +39 -2
- oci/database/models/execution_action_summary.py +39 -2
- oci/database/models/execution_window.py +39 -2
- oci/database/models/execution_window_summary.py +39 -2
- oci/database/models/external_container_database.py +37 -0
- oci/database/models/external_container_database_summary.py +37 -0
- oci/database/models/external_database_base.py +37 -0
- oci/database/models/external_database_connector.py +37 -0
- oci/database/models/external_database_connector_summary.py +37 -0
- oci/database/models/external_hsm_encryption_details.py +1 -1
- oci/database/models/external_macs_connector.py +7 -0
- oci/database/models/external_macs_connector_summary.py +7 -0
- oci/database/models/external_non_container_database.py +37 -0
- oci/database/models/external_non_container_database_summary.py +37 -0
- oci/database/models/external_pluggable_database.py +37 -0
- oci/database/models/external_pluggable_database_summary.py +37 -0
- oci/database/models/identity_connector_details.py +113 -0
- oci/database/models/key_store.py +39 -2
- oci/database/models/key_store_summary.py +39 -2
- oci/database/models/maintenance_run.py +37 -0
- oci/database/models/maintenance_run_history.py +39 -2
- oci/database/models/maintenance_run_history_summary.py +39 -2
- oci/database/models/maintenance_run_summary.py +37 -0
- oci/database/models/oneoff_patch.py +39 -2
- oci/database/models/oneoff_patch_summary.py +39 -2
- oci/database/models/pluggable_database.py +37 -0
- oci/database/models/pluggable_database_summary.py +37 -0
- oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/resource_pool_member_collection.py +70 -0
- oci/database/models/resource_pool_member_summary.py +74 -0
- oci/database/models/scheduling_policy.py +39 -2
- oci/database/models/scheduling_policy_summary.py +39 -2
- oci/database/models/scheduling_window.py +39 -2
- oci/database/models/scheduling_window_summary.py +39 -2
- oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/vm_cluster.py +37 -0
- oci/database/models/vm_cluster_network.py +39 -2
- oci/database/models/vm_cluster_network_summary.py +39 -2
- oci/database/models/vm_cluster_summary.py +37 -0
- oci/database_management/db_management_client.py +229 -229
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +15 -15
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +155 -42
- oci/database_migration/database_migration_client_composite_operations.py +42 -0
- oci/database_migration/models/__init__.py +4 -0
- oci/database_migration/models/collect_traces_data.py +183 -0
- oci/database_migration/models/collect_traces_details.py +132 -0
- oci/database_migration/models/job.py +27 -0
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/dbmulticloud/__init__.py +28 -0
- oci/dbmulticloud/models/__init__.py +112 -0
- oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
- oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
- oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
- oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
- oci/dbmulticloud/models/resources.py +229 -0
- oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/work_request.py +496 -0
- oci/dbmulticloud/models/work_request_error.py +134 -0
- oci/dbmulticloud/models/work_request_error_collection.py +70 -0
- oci/dbmulticloud/models/work_request_log_entry.py +101 -0
- oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
- oci/dbmulticloud/models/work_request_resource.py +232 -0
- oci/dbmulticloud/models/work_request_summary.py +496 -0
- oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
- oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
- oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
- oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
- oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
- oci/dbmulticloud/work_request_client.py +770 -0
- oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
- oci/distributed_database/distributed_db_service_client.py +19 -19
- oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/fleet_software_update/models/__init__.py +12 -0
- oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
- oci/fleet_software_update/models/fsu_cycle.py +11 -3
- oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
- oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
- oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
- oci/fleet_software_update/models/upgrade_details.py +107 -0
- oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
- oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
- 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 +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/load_balancer/models/backend.py +4 -4
- oci/load_balancer/models/backend_details.py +10 -4
- oci/load_balancer/models/backend_set.py +6 -4
- oci/load_balancer/models/backend_set_details.py +12 -4
- oci/load_balancer/models/create_backend_details.py +10 -4
- oci/load_balancer/models/create_backend_set_details.py +12 -4
- oci/load_balancer/models/create_listener_details.py +6 -4
- oci/load_balancer/models/create_load_balancer_details.py +39 -0
- oci/load_balancer/models/listener.py +6 -4
- oci/load_balancer/models/listener_details.py +6 -4
- oci/load_balancer/models/load_balancer.py +61 -2
- oci/load_balancer/models/reserved_ip.py +4 -0
- oci/load_balancer/models/update_backend_details.py +10 -4
- oci/load_balancer/models/update_backend_set_details.py +12 -4
- oci/load_balancer/models/update_listener_details.py +6 -4
- oci/load_balancer/models/update_load_balancer_details.py +59 -0
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +18 -18
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/model_deployment_client.py +2 -2
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +8 -8
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/__init__.py +2 -0
- oci/mysql/models/backup.py +29 -2
- oci/mysql/models/backup_summary.py +29 -2
- oci/mysql/models/copy_backup_details.py +29 -2
- oci/mysql/models/create_db_system_details.py +27 -0
- oci/mysql/models/db_system.py +27 -0
- oci/mysql/models/db_system_snapshot.py +27 -0
- oci/mysql/models/encrypt_data_details.py +117 -0
- oci/mysql/models/replica.py +27 -0
- oci/mysql/models/update_db_system_details.py +27 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +92 -92
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/models/__init__.py +14 -0
- oci/nosql/models/configuration.py +109 -0
- oci/nosql/models/hosted_configuration.py +78 -0
- oci/nosql/models/kms_key.py +244 -0
- oci/nosql/models/multi_tenancy_configuration.py +49 -0
- oci/nosql/models/update_configuration_details.py +109 -0
- oci/nosql/models/update_hosted_configuration_details.py +78 -0
- oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
- oci/nosql/models/work_request.py +7 -3
- oci/nosql/models/work_request_summary.py +7 -3
- oci/nosql/nosql_client.py +340 -25
- oci/nosql/nosql_client_composite_operations.py +81 -0
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +17 -17
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/oci_cache_user_client.py +7 -7
- oci/redis/redis_cluster_client.py +15 -15
- oci/redis/redis_identity_client.py +1 -1
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +96 -96
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/wlms/weblogic_management_service_client.py +41 -41
- oci/wlms/weblogic_management_service_configuration_client.py +2 -2
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
- {oci-2.154.2.dist-info → oci-2.155.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.155.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']
|
@@ -278,7 +278,7 @@ class DatabaseClient(object):
|
|
278
278
|
:rtype: :class:`~oci.response.Response`
|
279
279
|
|
280
280
|
:example:
|
281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/add_standby_autonomous_container_database.py.html>`__ to see an example of how to use add_standby_autonomous_container_database API.
|
282
282
|
"""
|
283
283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
284
284
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -395,7 +395,7 @@ class DatabaseClient(object):
|
|
395
395
|
:rtype: :class:`~oci.response.Response`
|
396
396
|
|
397
397
|
:example:
|
398
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
398
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
399
399
|
"""
|
400
400
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
401
401
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -510,7 +510,7 @@ class DatabaseClient(object):
|
|
510
510
|
:rtype: :class:`~oci.response.Response`
|
511
511
|
|
512
512
|
:example:
|
513
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
513
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
|
514
514
|
"""
|
515
515
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
516
516
|
required_arguments = ['exadataInfrastructureId']
|
@@ -628,7 +628,7 @@ class DatabaseClient(object):
|
|
628
628
|
:rtype: :class:`~oci.response.Response`
|
629
629
|
|
630
630
|
:example:
|
631
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
631
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
632
632
|
"""
|
633
633
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
634
634
|
required_arguments = ['cloudVmClusterId']
|
@@ -748,7 +748,7 @@ class DatabaseClient(object):
|
|
748
748
|
:rtype: :class:`~oci.response.Response`
|
749
749
|
|
750
750
|
:example:
|
751
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
751
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
752
752
|
"""
|
753
753
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
754
754
|
required_arguments = ['vmClusterId']
|
@@ -872,7 +872,7 @@ class DatabaseClient(object):
|
|
872
872
|
:rtype: :class:`~oci.response.Response`
|
873
873
|
|
874
874
|
:example:
|
875
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
875
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
|
876
876
|
"""
|
877
877
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
878
878
|
required_arguments = ['autonomousDatabaseId']
|
@@ -991,7 +991,7 @@ class DatabaseClient(object):
|
|
991
991
|
:rtype: :class:`~oci.response.Response`
|
992
992
|
|
993
993
|
:example:
|
994
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
994
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
|
995
995
|
"""
|
996
996
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
997
997
|
required_arguments = ['backupId']
|
@@ -1107,7 +1107,7 @@ class DatabaseClient(object):
|
|
1107
1107
|
:rtype: :class:`~oci.response.Response`
|
1108
1108
|
|
1109
1109
|
:example:
|
1110
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1110
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
|
1111
1111
|
"""
|
1112
1112
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1113
1113
|
required_arguments = ['executionWindowId']
|
@@ -1224,7 +1224,7 @@ class DatabaseClient(object):
|
|
1224
1224
|
:rtype: :class:`~oci.response.Response`
|
1225
1225
|
|
1226
1226
|
:example:
|
1227
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1227
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
|
1228
1228
|
"""
|
1229
1229
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1230
1230
|
required_arguments = ['schedulingPlanId']
|
@@ -1344,7 +1344,7 @@ class DatabaseClient(object):
|
|
1344
1344
|
:rtype: :class:`~oci.response.Response`
|
1345
1345
|
|
1346
1346
|
:example:
|
1347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1347
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
|
1348
1348
|
"""
|
1349
1349
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1350
1350
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -1470,7 +1470,7 @@ class DatabaseClient(object):
|
|
1470
1470
|
:rtype: :class:`~oci.response.Response`
|
1471
1471
|
|
1472
1472
|
:example:
|
1473
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1473
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
|
1474
1474
|
"""
|
1475
1475
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1476
1476
|
required_arguments = ['autonomousDatabaseId']
|
@@ -1590,7 +1590,7 @@ class DatabaseClient(object):
|
|
1590
1590
|
:rtype: :class:`~oci.response.Response`
|
1591
1591
|
|
1592
1592
|
:example:
|
1593
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1593
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
1594
1594
|
"""
|
1595
1595
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1596
1596
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -1712,7 +1712,7 @@ class DatabaseClient(object):
|
|
1712
1712
|
:rtype: :class:`~oci.response.Response`
|
1713
1713
|
|
1714
1714
|
:example:
|
1715
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1715
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
|
1716
1716
|
"""
|
1717
1717
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1718
1718
|
required_arguments = ['autonomousDatabaseId']
|
@@ -1836,7 +1836,7 @@ class DatabaseClient(object):
|
|
1836
1836
|
:rtype: :class:`~oci.response.Response`
|
1837
1837
|
|
1838
1838
|
:example:
|
1839
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1839
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
|
1840
1840
|
"""
|
1841
1841
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1842
1842
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -1954,7 +1954,7 @@ class DatabaseClient(object):
|
|
1954
1954
|
:rtype: :class:`~oci.response.Response`
|
1955
1955
|
|
1956
1956
|
:example:
|
1957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1957
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
|
1958
1958
|
"""
|
1959
1959
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1960
1960
|
required_arguments = ['autonomousVmClusterId']
|
@@ -2076,7 +2076,7 @@ class DatabaseClient(object):
|
|
2076
2076
|
:rtype: :class:`~oci.response.Response`
|
2077
2077
|
|
2078
2078
|
:example:
|
2079
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2079
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
|
2080
2080
|
"""
|
2081
2081
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2082
2082
|
required_arguments = ['backupDestinationId']
|
@@ -2194,7 +2194,7 @@ class DatabaseClient(object):
|
|
2194
2194
|
:rtype: :class:`~oci.response.Response`
|
2195
2195
|
|
2196
2196
|
:example:
|
2197
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2197
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
2198
2198
|
"""
|
2199
2199
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2200
2200
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -2268,6 +2268,124 @@ class DatabaseClient(object):
|
|
2268
2268
|
api_reference_link=api_reference_link,
|
2269
2269
|
required_arguments=required_arguments)
|
2270
2270
|
|
2271
|
+
def change_cloud_autonomous_vm_cluster_subscription(self, change_cloud_autonomous_vm_cluster_subscription_details, cloud_autonomous_vm_cluster_id, **kwargs):
|
2272
|
+
"""
|
2273
|
+
Associate a Cloud Autonomous VM cluster with a different subscription.
|
2274
|
+
|
2275
|
+
|
2276
|
+
:param oci.database.models.ChangeCloudAutonomousVmClusterSubscriptionDetails change_cloud_autonomous_vm_cluster_subscription_details: (required)
|
2277
|
+
Associate a Cloud Autonomous VM cluster with a different subscription.
|
2278
|
+
|
2279
|
+
:param str cloud_autonomous_vm_cluster_id: (required)
|
2280
|
+
The Cloud VM cluster `OCID`__.
|
2281
|
+
|
2282
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
2283
|
+
|
2284
|
+
:param str opc_retry_token: (optional)
|
2285
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
2286
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
2287
|
+
hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
2288
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
2289
|
+
may be rejected).
|
2290
|
+
|
2291
|
+
:param str opc_request_id: (optional)
|
2292
|
+
Unique identifier for the request.
|
2293
|
+
|
2294
|
+
:param str if_match: (optional)
|
2295
|
+
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
2296
|
+
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
2297
|
+
will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
2298
|
+
|
2299
|
+
:param obj retry_strategy: (optional)
|
2300
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
2301
|
+
|
2302
|
+
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.
|
2303
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
2304
|
+
|
2305
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
2306
|
+
|
2307
|
+
:param bool allow_control_chars: (optional)
|
2308
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
2309
|
+
By default, the response will not allow control characters in strings
|
2310
|
+
|
2311
|
+
:return: A :class:`~oci.response.Response` object with data of type None
|
2312
|
+
:rtype: :class:`~oci.response.Response`
|
2313
|
+
|
2314
|
+
:example:
|
2315
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_cloud_autonomous_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_subscription API.
|
2316
|
+
"""
|
2317
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2318
|
+
required_arguments = ['cloudAutonomousVmClusterId']
|
2319
|
+
resource_path = "/cloudAutonomousVmClusters/{cloudAutonomousVmClusterId}/actions/changeSubscription"
|
2320
|
+
method = "POST"
|
2321
|
+
operation_name = "change_cloud_autonomous_vm_cluster_subscription"
|
2322
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/CloudAutonomousVmCluster/ChangeCloudAutonomousVmClusterSubscription"
|
2323
|
+
|
2324
|
+
# Don't accept unknown kwargs
|
2325
|
+
expected_kwargs = [
|
2326
|
+
"allow_control_chars",
|
2327
|
+
"retry_strategy",
|
2328
|
+
"opc_retry_token",
|
2329
|
+
"opc_request_id",
|
2330
|
+
"if_match"
|
2331
|
+
]
|
2332
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
2333
|
+
if extra_kwargs:
|
2334
|
+
raise ValueError(
|
2335
|
+
f"change_cloud_autonomous_vm_cluster_subscription got unknown kwargs: {extra_kwargs!r}")
|
2336
|
+
|
2337
|
+
path_params = {
|
2338
|
+
"cloudAutonomousVmClusterId": cloud_autonomous_vm_cluster_id
|
2339
|
+
}
|
2340
|
+
|
2341
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
2342
|
+
|
2343
|
+
for (k, v) in six.iteritems(path_params):
|
2344
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
2345
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
2346
|
+
|
2347
|
+
header_params = {
|
2348
|
+
"accept": "application/json",
|
2349
|
+
"content-type": "application/json",
|
2350
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing),
|
2351
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
2352
|
+
"if-match": kwargs.get("if_match", missing)
|
2353
|
+
}
|
2354
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
2355
|
+
|
2356
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
2357
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
2358
|
+
client_retry_strategy=self.retry_strategy
|
2359
|
+
)
|
2360
|
+
|
2361
|
+
if retry_strategy:
|
2362
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
2363
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
2364
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
2365
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
2366
|
+
return retry_strategy.make_retrying_call(
|
2367
|
+
self.base_client.call_api,
|
2368
|
+
resource_path=resource_path,
|
2369
|
+
method=method,
|
2370
|
+
path_params=path_params,
|
2371
|
+
header_params=header_params,
|
2372
|
+
body=change_cloud_autonomous_vm_cluster_subscription_details,
|
2373
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
2374
|
+
operation_name=operation_name,
|
2375
|
+
api_reference_link=api_reference_link,
|
2376
|
+
required_arguments=required_arguments)
|
2377
|
+
else:
|
2378
|
+
return self.base_client.call_api(
|
2379
|
+
resource_path=resource_path,
|
2380
|
+
method=method,
|
2381
|
+
path_params=path_params,
|
2382
|
+
header_params=header_params,
|
2383
|
+
body=change_cloud_autonomous_vm_cluster_subscription_details,
|
2384
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
2385
|
+
operation_name=operation_name,
|
2386
|
+
api_reference_link=api_reference_link,
|
2387
|
+
required_arguments=required_arguments)
|
2388
|
+
|
2271
2389
|
def change_cloud_exadata_infrastructure_compartment(self, change_cloud_exadata_infrastructure_compartment_details, cloud_exadata_infrastructure_id, **kwargs):
|
2272
2390
|
"""
|
2273
2391
|
Moves a cloud Exadata infrastructure resource and its dependent resources to another compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only.For more information about moving resources to a different compartment, see `Moving Database Resources to a Different Compartment`__.
|
@@ -2314,7 +2432,7 @@ class DatabaseClient(object):
|
|
2314
2432
|
:rtype: :class:`~oci.response.Response`
|
2315
2433
|
|
2316
2434
|
:example:
|
2317
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2435
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
|
2318
2436
|
"""
|
2319
2437
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2320
2438
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -2432,7 +2550,7 @@ class DatabaseClient(object):
|
|
2432
2550
|
:rtype: :class:`~oci.response.Response`
|
2433
2551
|
|
2434
2552
|
:example:
|
2435
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2553
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
|
2436
2554
|
"""
|
2437
2555
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2438
2556
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -2550,7 +2668,7 @@ class DatabaseClient(object):
|
|
2550
2668
|
:rtype: :class:`~oci.response.Response`
|
2551
2669
|
|
2552
2670
|
:example:
|
2553
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2671
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
|
2554
2672
|
"""
|
2555
2673
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2556
2674
|
required_arguments = ['cloudVmClusterId']
|
@@ -2668,7 +2786,7 @@ class DatabaseClient(object):
|
|
2668
2786
|
:rtype: :class:`~oci.response.Response`
|
2669
2787
|
|
2670
2788
|
:example:
|
2671
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2789
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
|
2672
2790
|
"""
|
2673
2791
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2674
2792
|
required_arguments = ['cloudVmClusterId']
|
@@ -2790,7 +2908,7 @@ class DatabaseClient(object):
|
|
2790
2908
|
:rtype: :class:`~oci.response.Response`
|
2791
2909
|
|
2792
2910
|
:example:
|
2793
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2911
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
|
2794
2912
|
"""
|
2795
2913
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2796
2914
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -2913,7 +3031,7 @@ class DatabaseClient(object):
|
|
2913
3031
|
:rtype: :class:`~oci.response.Response`
|
2914
3032
|
|
2915
3033
|
:example:
|
2916
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3034
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
|
2917
3035
|
"""
|
2918
3036
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2919
3037
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -3044,7 +3162,7 @@ class DatabaseClient(object):
|
|
3044
3162
|
:rtype: :class:`~oci.response.Response`
|
3045
3163
|
|
3046
3164
|
:example:
|
3047
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3165
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
|
3048
3166
|
"""
|
3049
3167
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3050
3168
|
required_arguments = ['dbSystemId']
|
@@ -3159,7 +3277,7 @@ class DatabaseClient(object):
|
|
3159
3277
|
:rtype: :class:`~oci.response.Response`
|
3160
3278
|
|
3161
3279
|
:example:
|
3162
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
|
3163
3281
|
"""
|
3164
3282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3165
3283
|
required_arguments = ['autonomousDatabaseId']
|
@@ -3278,7 +3396,7 @@ class DatabaseClient(object):
|
|
3278
3396
|
:rtype: :class:`~oci.response.Response`
|
3279
3397
|
|
3280
3398
|
:example:
|
3281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3399
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_encryption_key_location.py.html>`__ to see an example of how to use change_encryption_key_location API.
|
3282
3400
|
"""
|
3283
3401
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3284
3402
|
required_arguments = ['databaseId']
|
@@ -3397,7 +3515,7 @@ class DatabaseClient(object):
|
|
3397
3515
|
:rtype: :class:`~oci.response.Response`
|
3398
3516
|
|
3399
3517
|
:example:
|
3400
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3518
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
|
3401
3519
|
"""
|
3402
3520
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3403
3521
|
required_arguments = ['exadataInfrastructureId']
|
@@ -3515,7 +3633,7 @@ class DatabaseClient(object):
|
|
3515
3633
|
:rtype: :class:`~oci.response.Response`
|
3516
3634
|
|
3517
3635
|
:example:
|
3518
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3636
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
|
3519
3637
|
"""
|
3520
3638
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3521
3639
|
required_arguments = ['exadbVmClusterId']
|
@@ -3633,7 +3751,7 @@ class DatabaseClient(object):
|
|
3633
3751
|
:rtype: :class:`~oci.response.Response`
|
3634
3752
|
|
3635
3753
|
:example:
|
3636
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3754
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_exadb_vm_cluster_subscription.py.html>`__ to see an example of how to use change_exadb_vm_cluster_subscription API.
|
3637
3755
|
"""
|
3638
3756
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3639
3757
|
required_arguments = ['exadbVmClusterId']
|
@@ -3751,7 +3869,7 @@ class DatabaseClient(object):
|
|
3751
3869
|
:rtype: :class:`~oci.response.Response`
|
3752
3870
|
|
3753
3871
|
:example:
|
3754
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3872
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
3755
3873
|
"""
|
3756
3874
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3757
3875
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -3869,7 +3987,7 @@ class DatabaseClient(object):
|
|
3869
3987
|
:rtype: :class:`~oci.response.Response`
|
3870
3988
|
|
3871
3989
|
:example:
|
3872
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3990
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_exascale_db_storage_vault_subscription.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_subscription API.
|
3873
3991
|
"""
|
3874
3992
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3875
3993
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -3992,7 +4110,7 @@ class DatabaseClient(object):
|
|
3992
4110
|
:rtype: :class:`~oci.response.Response`
|
3993
4111
|
|
3994
4112
|
:example:
|
3995
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4113
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
|
3996
4114
|
"""
|
3997
4115
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3998
4116
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -4114,7 +4232,7 @@ class DatabaseClient(object):
|
|
4114
4232
|
:rtype: :class:`~oci.response.Response`
|
4115
4233
|
|
4116
4234
|
:example:
|
4117
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4235
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
4118
4236
|
"""
|
4119
4237
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4120
4238
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -4239,7 +4357,7 @@ class DatabaseClient(object):
|
|
4239
4357
|
:rtype: :class:`~oci.response.Response`
|
4240
4358
|
|
4241
4359
|
:example:
|
4242
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4360
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
|
4243
4361
|
"""
|
4244
4362
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4245
4363
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -4361,7 +4479,7 @@ class DatabaseClient(object):
|
|
4361
4479
|
:rtype: :class:`~oci.response.Response`
|
4362
4480
|
|
4363
4481
|
:example:
|
4364
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4482
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
|
4365
4483
|
"""
|
4366
4484
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4367
4485
|
required_arguments = ['keyStoreId']
|
@@ -4479,7 +4597,7 @@ class DatabaseClient(object):
|
|
4479
4597
|
:rtype: :class:`~oci.response.Response`
|
4480
4598
|
|
4481
4599
|
:example:
|
4482
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4600
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
|
4483
4601
|
"""
|
4484
4602
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4485
4603
|
required_arguments = ['databaseId']
|
@@ -4597,7 +4715,7 @@ class DatabaseClient(object):
|
|
4597
4715
|
:rtype: :class:`~oci.response.Response`
|
4598
4716
|
|
4599
4717
|
:example:
|
4600
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4718
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
|
4601
4719
|
"""
|
4602
4720
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4603
4721
|
required_arguments = ['oneoffPatchId']
|
@@ -4715,7 +4833,7 @@ class DatabaseClient(object):
|
|
4715
4833
|
:rtype: :class:`~oci.response.Response`
|
4716
4834
|
|
4717
4835
|
:example:
|
4718
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4836
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
|
4719
4837
|
"""
|
4720
4838
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4721
4839
|
required_arguments = ['schedulingPlanId']
|
@@ -4833,7 +4951,7 @@ class DatabaseClient(object):
|
|
4833
4951
|
:rtype: :class:`~oci.response.Response`
|
4834
4952
|
|
4835
4953
|
:example:
|
4836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4954
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
|
4837
4955
|
"""
|
4838
4956
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4839
4957
|
required_arguments = ['schedulingPolicyId']
|
@@ -4952,7 +5070,7 @@ class DatabaseClient(object):
|
|
4952
5070
|
:rtype: :class:`~oci.response.Response`
|
4953
5071
|
|
4954
5072
|
:example:
|
4955
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5073
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
|
4956
5074
|
"""
|
4957
5075
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4958
5076
|
required_arguments = ['vmClusterId']
|
@@ -5069,7 +5187,7 @@ class DatabaseClient(object):
|
|
5069
5187
|
:rtype: :class:`~oci.response.Response`
|
5070
5188
|
|
5071
5189
|
:example:
|
5072
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5190
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
5073
5191
|
"""
|
5074
5192
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5075
5193
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -5186,7 +5304,7 @@ class DatabaseClient(object):
|
|
5186
5304
|
:rtype: :class:`~oci.response.Response`
|
5187
5305
|
|
5188
5306
|
:example:
|
5189
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5307
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
|
5190
5308
|
"""
|
5191
5309
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5192
5310
|
required_arguments = ['backupId']
|
@@ -5312,7 +5430,7 @@ class DatabaseClient(object):
|
|
5312
5430
|
:rtype: :class:`~oci.response.Response`
|
5313
5431
|
|
5314
5432
|
:example:
|
5315
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5433
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
|
5316
5434
|
"""
|
5317
5435
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5318
5436
|
required_arguments = ['autonomousDatabaseId']
|
@@ -5432,7 +5550,7 @@ class DatabaseClient(object):
|
|
5432
5550
|
:rtype: :class:`~oci.response.Response`
|
5433
5551
|
|
5434
5552
|
:example:
|
5435
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5553
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
|
5436
5554
|
"""
|
5437
5555
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5438
5556
|
required_arguments = ['exadataInfrastructureId']
|
@@ -5549,7 +5667,7 @@ class DatabaseClient(object):
|
|
5549
5667
|
:rtype: :class:`~oci.response.Response`
|
5550
5668
|
|
5551
5669
|
:example:
|
5552
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5670
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
|
5553
5671
|
"""
|
5554
5672
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5555
5673
|
required_arguments = ['autonomousDatabaseId']
|
@@ -5666,7 +5784,7 @@ class DatabaseClient(object):
|
|
5666
5784
|
:rtype: :class:`~oci.response.Response`
|
5667
5785
|
|
5668
5786
|
:example:
|
5669
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5787
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
5670
5788
|
"""
|
5671
5789
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5672
5790
|
required_arguments = ['keyStoreId']
|
@@ -5786,7 +5904,7 @@ class DatabaseClient(object):
|
|
5786
5904
|
:rtype: :class:`~oci.response.Response`
|
5787
5905
|
|
5788
5906
|
:example:
|
5789
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5907
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/convert_standby_autonomous_container_database.py.html>`__ to see an example of how to use convert_standby_autonomous_container_database API.
|
5790
5908
|
"""
|
5791
5909
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5792
5910
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -5899,7 +6017,7 @@ class DatabaseClient(object):
|
|
5899
6017
|
:rtype: :class:`~oci.response.Response`
|
5900
6018
|
|
5901
6019
|
:example:
|
5902
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6020
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
|
5903
6021
|
"""
|
5904
6022
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5905
6023
|
required_arguments = ['databaseId']
|
@@ -6017,7 +6135,7 @@ class DatabaseClient(object):
|
|
6017
6135
|
:rtype: :class:`~oci.response.Response`
|
6018
6136
|
|
6019
6137
|
:example:
|
6020
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6138
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
|
6021
6139
|
"""
|
6022
6140
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6023
6141
|
required_arguments = ['pluggableDatabaseId']
|
@@ -6141,7 +6259,7 @@ class DatabaseClient(object):
|
|
6141
6259
|
:rtype: :class:`~oci.response.Response`
|
6142
6260
|
|
6143
6261
|
:example:
|
6144
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6262
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/convert_to_standalone.py.html>`__ to see an example of how to use convert_to_standalone API.
|
6145
6263
|
"""
|
6146
6264
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6147
6265
|
required_arguments = ['databaseId']
|
@@ -6251,7 +6369,7 @@ class DatabaseClient(object):
|
|
6251
6369
|
:rtype: :class:`~oci.response.Response`
|
6252
6370
|
|
6253
6371
|
:example:
|
6254
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
|
6255
6373
|
"""
|
6256
6374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6257
6375
|
required_arguments = []
|
@@ -6344,7 +6462,7 @@ class DatabaseClient(object):
|
|
6344
6462
|
:rtype: :class:`~oci.response.Response`
|
6345
6463
|
|
6346
6464
|
:example:
|
6347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6465
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
|
6348
6466
|
"""
|
6349
6467
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6350
6468
|
required_arguments = []
|
@@ -6443,7 +6561,7 @@ class DatabaseClient(object):
|
|
6443
6561
|
:rtype: :class:`~oci.response.Response`
|
6444
6562
|
|
6445
6563
|
:example:
|
6446
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6564
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
6447
6565
|
"""
|
6448
6566
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6449
6567
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -6553,7 +6671,7 @@ class DatabaseClient(object):
|
|
6553
6671
|
:rtype: :class:`~oci.response.Response`
|
6554
6672
|
|
6555
6673
|
:example:
|
6556
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6674
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
|
6557
6675
|
"""
|
6558
6676
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6559
6677
|
required_arguments = []
|
@@ -6655,7 +6773,7 @@ class DatabaseClient(object):
|
|
6655
6773
|
:rtype: :class:`~oci.response.Response`
|
6656
6774
|
|
6657
6775
|
:example:
|
6658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6776
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
|
6659
6777
|
"""
|
6660
6778
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6661
6779
|
required_arguments = []
|
@@ -6753,7 +6871,7 @@ class DatabaseClient(object):
|
|
6753
6871
|
:rtype: :class:`~oci.response.Response`
|
6754
6872
|
|
6755
6873
|
:example:
|
6756
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6874
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
|
6757
6875
|
"""
|
6758
6876
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6759
6877
|
required_arguments = []
|
@@ -6849,7 +6967,7 @@ class DatabaseClient(object):
|
|
6849
6967
|
:rtype: :class:`~oci.response.Response`
|
6850
6968
|
|
6851
6969
|
:example:
|
6852
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6970
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
|
6853
6971
|
"""
|
6854
6972
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6855
6973
|
required_arguments = []
|
@@ -6942,7 +7060,7 @@ class DatabaseClient(object):
|
|
6942
7060
|
:rtype: :class:`~oci.response.Response`
|
6943
7061
|
|
6944
7062
|
:example:
|
6945
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
|
6946
7064
|
"""
|
6947
7065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6948
7066
|
required_arguments = []
|
@@ -7036,7 +7154,7 @@ class DatabaseClient(object):
|
|
7036
7154
|
:rtype: :class:`~oci.response.Response`
|
7037
7155
|
|
7038
7156
|
:example:
|
7039
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7157
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
|
7040
7158
|
"""
|
7041
7159
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7042
7160
|
required_arguments = []
|
@@ -7116,6 +7234,10 @@ class DatabaseClient(object):
|
|
7116
7234
|
:param str opc_request_id: (optional)
|
7117
7235
|
Unique identifier for the request.
|
7118
7236
|
|
7237
|
+
:param bool opc_dry_run: (optional)
|
7238
|
+
Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually
|
7239
|
+
creating or updating a resource and is used only to perform validation on the submitted data.
|
7240
|
+
|
7119
7241
|
:param obj retry_strategy: (optional)
|
7120
7242
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
7121
7243
|
|
@@ -7132,7 +7254,7 @@ class DatabaseClient(object):
|
|
7132
7254
|
:rtype: :class:`~oci.response.Response`
|
7133
7255
|
|
7134
7256
|
:example:
|
7135
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7257
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
|
7136
7258
|
"""
|
7137
7259
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7138
7260
|
required_arguments = []
|
@@ -7146,7 +7268,8 @@ class DatabaseClient(object):
|
|
7146
7268
|
"allow_control_chars",
|
7147
7269
|
"retry_strategy",
|
7148
7270
|
"opc_retry_token",
|
7149
|
-
"opc_request_id"
|
7271
|
+
"opc_request_id",
|
7272
|
+
"opc_dry_run"
|
7150
7273
|
]
|
7151
7274
|
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
7152
7275
|
if extra_kwargs:
|
@@ -7157,7 +7280,8 @@ class DatabaseClient(object):
|
|
7157
7280
|
"accept": "application/json",
|
7158
7281
|
"content-type": "application/json",
|
7159
7282
|
"opc-retry-token": kwargs.get("opc_retry_token", missing),
|
7160
|
-
"opc-request-id": kwargs.get("opc_request_id", missing)
|
7283
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
7284
|
+
"opc-dry-run": kwargs.get("opc_dry_run", missing)
|
7161
7285
|
}
|
7162
7286
|
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
7163
7287
|
|
@@ -7236,7 +7360,7 @@ class DatabaseClient(object):
|
|
7236
7360
|
:rtype: :class:`~oci.response.Response`
|
7237
7361
|
|
7238
7362
|
:example:
|
7239
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7363
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
|
7240
7364
|
"""
|
7241
7365
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7242
7366
|
required_arguments = []
|
@@ -7340,7 +7464,7 @@ class DatabaseClient(object):
|
|
7340
7464
|
:rtype: :class:`~oci.response.Response`
|
7341
7465
|
|
7342
7466
|
:example:
|
7343
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7467
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
|
7344
7468
|
"""
|
7345
7469
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7346
7470
|
required_arguments = []
|
@@ -7442,7 +7566,7 @@ class DatabaseClient(object):
|
|
7442
7566
|
:rtype: :class:`~oci.response.Response`
|
7443
7567
|
|
7444
7568
|
:example:
|
7445
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7569
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
|
7446
7570
|
"""
|
7447
7571
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7448
7572
|
required_arguments = ['dbNodeId']
|
@@ -7553,7 +7677,7 @@ class DatabaseClient(object):
|
|
7553
7677
|
:rtype: :class:`~oci.response.Response`
|
7554
7678
|
|
7555
7679
|
:example:
|
7556
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7680
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
|
7557
7681
|
"""
|
7558
7682
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7559
7683
|
required_arguments = ['dbNodeId']
|
@@ -7673,7 +7797,7 @@ class DatabaseClient(object):
|
|
7673
7797
|
:rtype: :class:`~oci.response.Response`
|
7674
7798
|
|
7675
7799
|
:example:
|
7676
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7800
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
|
7677
7801
|
"""
|
7678
7802
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7679
7803
|
required_arguments = ['databaseId']
|
@@ -7783,7 +7907,7 @@ class DatabaseClient(object):
|
|
7783
7907
|
:rtype: :class:`~oci.response.Response`
|
7784
7908
|
|
7785
7909
|
:example:
|
7786
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7910
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
|
7787
7911
|
"""
|
7788
7912
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7789
7913
|
required_arguments = []
|
@@ -7878,7 +8002,7 @@ class DatabaseClient(object):
|
|
7878
8002
|
:rtype: :class:`~oci.response.Response`
|
7879
8003
|
|
7880
8004
|
:example:
|
7881
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8005
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
|
7882
8006
|
"""
|
7883
8007
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7884
8008
|
required_arguments = []
|
@@ -7969,7 +8093,7 @@ class DatabaseClient(object):
|
|
7969
8093
|
:rtype: :class:`~oci.response.Response`
|
7970
8094
|
|
7971
8095
|
:example:
|
7972
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8096
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
|
7973
8097
|
"""
|
7974
8098
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7975
8099
|
required_arguments = []
|
@@ -8064,7 +8188,7 @@ class DatabaseClient(object):
|
|
8064
8188
|
:rtype: :class:`~oci.response.Response`
|
8065
8189
|
|
8066
8190
|
:example:
|
8067
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8191
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
|
8068
8192
|
"""
|
8069
8193
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8070
8194
|
required_arguments = []
|
@@ -8162,7 +8286,7 @@ class DatabaseClient(object):
|
|
8162
8286
|
:rtype: :class:`~oci.response.Response`
|
8163
8287
|
|
8164
8288
|
:example:
|
8165
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8289
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
|
8166
8290
|
"""
|
8167
8291
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8168
8292
|
required_arguments = []
|
@@ -8258,7 +8382,7 @@ class DatabaseClient(object):
|
|
8258
8382
|
:rtype: :class:`~oci.response.Response`
|
8259
8383
|
|
8260
8384
|
:example:
|
8261
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8385
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
|
8262
8386
|
"""
|
8263
8387
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8264
8388
|
required_arguments = []
|
@@ -8354,7 +8478,7 @@ class DatabaseClient(object):
|
|
8354
8478
|
:rtype: :class:`~oci.response.Response`
|
8355
8479
|
|
8356
8480
|
:example:
|
8357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8481
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
|
8358
8482
|
"""
|
8359
8483
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8360
8484
|
required_arguments = []
|
@@ -8450,7 +8574,7 @@ class DatabaseClient(object):
|
|
8450
8574
|
:rtype: :class:`~oci.response.Response`
|
8451
8575
|
|
8452
8576
|
:example:
|
8453
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8577
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
|
8454
8578
|
"""
|
8455
8579
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8456
8580
|
required_arguments = []
|
@@ -8547,7 +8671,7 @@ class DatabaseClient(object):
|
|
8547
8671
|
:rtype: :class:`~oci.response.Response`
|
8548
8672
|
|
8549
8673
|
:example:
|
8550
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8674
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
|
8551
8675
|
"""
|
8552
8676
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8553
8677
|
required_arguments = []
|
@@ -8641,7 +8765,7 @@ class DatabaseClient(object):
|
|
8641
8765
|
:rtype: :class:`~oci.response.Response`
|
8642
8766
|
|
8643
8767
|
:example:
|
8644
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8768
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
|
8645
8769
|
"""
|
8646
8770
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8647
8771
|
required_arguments = []
|
@@ -8737,7 +8861,7 @@ class DatabaseClient(object):
|
|
8737
8861
|
:rtype: :class:`~oci.response.Response`
|
8738
8862
|
|
8739
8863
|
:example:
|
8740
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8864
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
|
8741
8865
|
"""
|
8742
8866
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8743
8867
|
required_arguments = []
|
@@ -8833,7 +8957,7 @@ class DatabaseClient(object):
|
|
8833
8957
|
:rtype: :class:`~oci.response.Response`
|
8834
8958
|
|
8835
8959
|
:example:
|
8836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8960
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
|
8837
8961
|
"""
|
8838
8962
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8839
8963
|
required_arguments = []
|
@@ -8930,7 +9054,7 @@ class DatabaseClient(object):
|
|
8930
9054
|
:rtype: :class:`~oci.response.Response`
|
8931
9055
|
|
8932
9056
|
:example:
|
8933
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9057
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
|
8934
9058
|
"""
|
8935
9059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8936
9060
|
required_arguments = []
|
@@ -9026,7 +9150,7 @@ class DatabaseClient(object):
|
|
9026
9150
|
:rtype: :class:`~oci.response.Response`
|
9027
9151
|
|
9028
9152
|
:example:
|
9029
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9153
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
|
9030
9154
|
"""
|
9031
9155
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9032
9156
|
required_arguments = []
|
@@ -9125,7 +9249,7 @@ class DatabaseClient(object):
|
|
9125
9249
|
:rtype: :class:`~oci.response.Response`
|
9126
9250
|
|
9127
9251
|
:example:
|
9128
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9252
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
|
9129
9253
|
"""
|
9130
9254
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9131
9255
|
required_arguments = []
|
@@ -9221,7 +9345,7 @@ class DatabaseClient(object):
|
|
9221
9345
|
:rtype: :class:`~oci.response.Response`
|
9222
9346
|
|
9223
9347
|
:example:
|
9224
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9348
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
|
9225
9349
|
"""
|
9226
9350
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9227
9351
|
required_arguments = []
|
@@ -9319,7 +9443,7 @@ class DatabaseClient(object):
|
|
9319
9443
|
:rtype: :class:`~oci.response.Response`
|
9320
9444
|
|
9321
9445
|
:example:
|
9322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9446
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
|
9323
9447
|
"""
|
9324
9448
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9325
9449
|
required_arguments = []
|
@@ -9415,7 +9539,7 @@ class DatabaseClient(object):
|
|
9415
9539
|
:rtype: :class:`~oci.response.Response`
|
9416
9540
|
|
9417
9541
|
:example:
|
9418
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9542
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
|
9419
9543
|
"""
|
9420
9544
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9421
9545
|
required_arguments = []
|
@@ -9511,7 +9635,7 @@ class DatabaseClient(object):
|
|
9511
9635
|
:rtype: :class:`~oci.response.Response`
|
9512
9636
|
|
9513
9637
|
:example:
|
9514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9638
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
|
9515
9639
|
"""
|
9516
9640
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9517
9641
|
required_arguments = []
|
@@ -9607,7 +9731,7 @@ class DatabaseClient(object):
|
|
9607
9731
|
:rtype: :class:`~oci.response.Response`
|
9608
9732
|
|
9609
9733
|
:example:
|
9610
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9734
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
|
9611
9735
|
"""
|
9612
9736
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9613
9737
|
required_arguments = []
|
@@ -9708,7 +9832,7 @@ class DatabaseClient(object):
|
|
9708
9832
|
:rtype: :class:`~oci.response.Response`
|
9709
9833
|
|
9710
9834
|
:example:
|
9711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9835
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
|
9712
9836
|
"""
|
9713
9837
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9714
9838
|
required_arguments = ['schedulingPolicyId']
|
@@ -9817,7 +9941,7 @@ class DatabaseClient(object):
|
|
9817
9941
|
:rtype: :class:`~oci.response.Response`
|
9818
9942
|
|
9819
9943
|
:example:
|
9820
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
|
9821
9945
|
"""
|
9822
9946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9823
9947
|
required_arguments = []
|
@@ -9919,7 +10043,7 @@ class DatabaseClient(object):
|
|
9919
10043
|
:rtype: :class:`~oci.response.Response`
|
9920
10044
|
|
9921
10045
|
:example:
|
9922
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10046
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
|
9923
10047
|
"""
|
9924
10048
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9925
10049
|
required_arguments = ['exadataInfrastructureId']
|
@@ -10048,7 +10172,7 @@ class DatabaseClient(object):
|
|
10048
10172
|
:rtype: :class:`~oci.response.Response`
|
10049
10173
|
|
10050
10174
|
:example:
|
10051
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10175
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
|
10052
10176
|
"""
|
10053
10177
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10054
10178
|
required_arguments = ['dbNodeId', 'action']
|
@@ -10161,7 +10285,7 @@ class DatabaseClient(object):
|
|
10161
10285
|
:rtype: :class:`~oci.response.Response`
|
10162
10286
|
|
10163
10287
|
:example:
|
10164
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10288
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
|
10165
10289
|
"""
|
10166
10290
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10167
10291
|
required_arguments = ['applicationVipId']
|
@@ -10268,7 +10392,7 @@ class DatabaseClient(object):
|
|
10268
10392
|
:rtype: :class:`~oci.response.Response`
|
10269
10393
|
|
10270
10394
|
:example:
|
10271
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10395
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
|
10272
10396
|
"""
|
10273
10397
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10274
10398
|
required_arguments = ['autonomousDatabaseId']
|
@@ -10377,7 +10501,7 @@ class DatabaseClient(object):
|
|
10377
10501
|
:rtype: :class:`~oci.response.Response`
|
10378
10502
|
|
10379
10503
|
:example:
|
10380
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10504
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
|
10381
10505
|
"""
|
10382
10506
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10383
10507
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -10482,7 +10606,7 @@ class DatabaseClient(object):
|
|
10482
10606
|
:rtype: :class:`~oci.response.Response`
|
10483
10607
|
|
10484
10608
|
:example:
|
10485
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10609
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
|
10486
10610
|
"""
|
10487
10611
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10488
10612
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -10585,7 +10709,7 @@ class DatabaseClient(object):
|
|
10585
10709
|
:rtype: :class:`~oci.response.Response`
|
10586
10710
|
|
10587
10711
|
:example:
|
10588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10712
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
|
10589
10713
|
"""
|
10590
10714
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10591
10715
|
required_arguments = ['autonomousVmClusterId']
|
@@ -10685,7 +10809,7 @@ class DatabaseClient(object):
|
|
10685
10809
|
:rtype: :class:`~oci.response.Response`
|
10686
10810
|
|
10687
10811
|
:example:
|
10688
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10812
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
|
10689
10813
|
"""
|
10690
10814
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10691
10815
|
required_arguments = ['backupId']
|
@@ -10786,7 +10910,7 @@ class DatabaseClient(object):
|
|
10786
10910
|
:rtype: :class:`~oci.response.Response`
|
10787
10911
|
|
10788
10912
|
:example:
|
10789
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10913
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
|
10790
10914
|
"""
|
10791
10915
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10792
10916
|
required_arguments = ['backupDestinationId']
|
@@ -10889,7 +11013,7 @@ class DatabaseClient(object):
|
|
10889
11013
|
:rtype: :class:`~oci.response.Response`
|
10890
11014
|
|
10891
11015
|
:example:
|
10892
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11016
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
|
10893
11017
|
"""
|
10894
11018
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10895
11019
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -10995,7 +11119,7 @@ class DatabaseClient(object):
|
|
10995
11119
|
:rtype: :class:`~oci.response.Response`
|
10996
11120
|
|
10997
11121
|
:example:
|
10998
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11122
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
|
10999
11123
|
"""
|
11000
11124
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11001
11125
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -11106,7 +11230,7 @@ class DatabaseClient(object):
|
|
11106
11230
|
:rtype: :class:`~oci.response.Response`
|
11107
11231
|
|
11108
11232
|
:example:
|
11109
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11233
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
|
11110
11234
|
"""
|
11111
11235
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11112
11236
|
required_arguments = ['cloudVmClusterId']
|
@@ -11209,7 +11333,7 @@ class DatabaseClient(object):
|
|
11209
11333
|
:rtype: :class:`~oci.response.Response`
|
11210
11334
|
|
11211
11335
|
:example:
|
11212
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11336
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
|
11213
11337
|
"""
|
11214
11338
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11215
11339
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -11314,7 +11438,7 @@ class DatabaseClient(object):
|
|
11314
11438
|
:rtype: :class:`~oci.response.Response`
|
11315
11439
|
|
11316
11440
|
:example:
|
11317
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11441
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
|
11318
11442
|
"""
|
11319
11443
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11320
11444
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -11427,7 +11551,7 @@ class DatabaseClient(object):
|
|
11427
11551
|
:rtype: :class:`~oci.response.Response`
|
11428
11552
|
|
11429
11553
|
:example:
|
11430
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11554
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
|
11431
11555
|
"""
|
11432
11556
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11433
11557
|
required_arguments = ['databaseId']
|
@@ -11535,7 +11659,7 @@ class DatabaseClient(object):
|
|
11535
11659
|
:rtype: :class:`~oci.response.Response`
|
11536
11660
|
|
11537
11661
|
:example:
|
11538
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
|
11539
11663
|
"""
|
11540
11664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11541
11665
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -11642,7 +11766,7 @@ class DatabaseClient(object):
|
|
11642
11766
|
:rtype: :class:`~oci.response.Response`
|
11643
11767
|
|
11644
11768
|
:example:
|
11645
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11769
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
|
11646
11770
|
"""
|
11647
11771
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11648
11772
|
required_arguments = ['dbHomeId']
|
@@ -11751,7 +11875,7 @@ class DatabaseClient(object):
|
|
11751
11875
|
:rtype: :class:`~oci.response.Response`
|
11752
11876
|
|
11753
11877
|
:example:
|
11754
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11878
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
|
11755
11879
|
"""
|
11756
11880
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11757
11881
|
required_arguments = ['exadataInfrastructureId']
|
@@ -11854,7 +11978,7 @@ class DatabaseClient(object):
|
|
11854
11978
|
:rtype: :class:`~oci.response.Response`
|
11855
11979
|
|
11856
11980
|
:example:
|
11857
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11981
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
|
11858
11982
|
"""
|
11859
11983
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11860
11984
|
required_arguments = ['exadbVmClusterId']
|
@@ -11957,7 +12081,7 @@ class DatabaseClient(object):
|
|
11957
12081
|
:rtype: :class:`~oci.response.Response`
|
11958
12082
|
|
11959
12083
|
:example:
|
11960
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12084
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
|
11961
12085
|
"""
|
11962
12086
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11963
12087
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -12060,7 +12184,7 @@ class DatabaseClient(object):
|
|
12060
12184
|
:rtype: :class:`~oci.response.Response`
|
12061
12185
|
|
12062
12186
|
:example:
|
12063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12187
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
|
12064
12188
|
"""
|
12065
12189
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12066
12190
|
required_arguments = ['executionActionId']
|
@@ -12163,7 +12287,7 @@ class DatabaseClient(object):
|
|
12163
12287
|
:rtype: :class:`~oci.response.Response`
|
12164
12288
|
|
12165
12289
|
:example:
|
12166
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12290
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
|
12167
12291
|
"""
|
12168
12292
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12169
12293
|
required_arguments = ['executionWindowId']
|
@@ -12268,7 +12392,7 @@ class DatabaseClient(object):
|
|
12268
12392
|
:rtype: :class:`~oci.response.Response`
|
12269
12393
|
|
12270
12394
|
:example:
|
12271
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12395
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
|
12272
12396
|
"""
|
12273
12397
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12274
12398
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -12374,7 +12498,7 @@ class DatabaseClient(object):
|
|
12374
12498
|
:rtype: :class:`~oci.response.Response`
|
12375
12499
|
|
12376
12500
|
:example:
|
12377
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12501
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
|
12378
12502
|
"""
|
12379
12503
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12380
12504
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -12477,7 +12601,7 @@ class DatabaseClient(object):
|
|
12477
12601
|
:rtype: :class:`~oci.response.Response`
|
12478
12602
|
|
12479
12603
|
:example:
|
12480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12604
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
|
12481
12605
|
"""
|
12482
12606
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12483
12607
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -12581,7 +12705,7 @@ class DatabaseClient(object):
|
|
12581
12705
|
:rtype: :class:`~oci.response.Response`
|
12582
12706
|
|
12583
12707
|
:example:
|
12584
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12708
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
|
12585
12709
|
"""
|
12586
12710
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12587
12711
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -12684,7 +12808,7 @@ class DatabaseClient(object):
|
|
12684
12808
|
:rtype: :class:`~oci.response.Response`
|
12685
12809
|
|
12686
12810
|
:example:
|
12687
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12811
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
|
12688
12812
|
"""
|
12689
12813
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12690
12814
|
required_arguments = ['keyStoreId']
|
@@ -12787,7 +12911,7 @@ class DatabaseClient(object):
|
|
12787
12911
|
:rtype: :class:`~oci.response.Response`
|
12788
12912
|
|
12789
12913
|
:example:
|
12790
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
|
12791
12915
|
"""
|
12792
12916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12793
12917
|
required_arguments = ['oneoffPatchId']
|
@@ -12890,7 +13014,7 @@ class DatabaseClient(object):
|
|
12890
13014
|
:rtype: :class:`~oci.response.Response`
|
12891
13015
|
|
12892
13016
|
:example:
|
12893
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
|
12894
13018
|
"""
|
12895
13019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12896
13020
|
required_arguments = ['pluggableDatabaseId']
|
@@ -12993,7 +13117,7 @@ class DatabaseClient(object):
|
|
12993
13117
|
:rtype: :class:`~oci.response.Response`
|
12994
13118
|
|
12995
13119
|
:example:
|
12996
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13120
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
|
12997
13121
|
"""
|
12998
13122
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12999
13123
|
required_arguments = ['scheduledActionId']
|
@@ -13096,7 +13220,7 @@ class DatabaseClient(object):
|
|
13096
13220
|
:rtype: :class:`~oci.response.Response`
|
13097
13221
|
|
13098
13222
|
:example:
|
13099
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13223
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
|
13100
13224
|
"""
|
13101
13225
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13102
13226
|
required_arguments = ['schedulingPlanId']
|
@@ -13199,7 +13323,7 @@ class DatabaseClient(object):
|
|
13199
13323
|
:rtype: :class:`~oci.response.Response`
|
13200
13324
|
|
13201
13325
|
:example:
|
13202
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13326
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
|
13203
13327
|
"""
|
13204
13328
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13205
13329
|
required_arguments = ['schedulingPolicyId']
|
@@ -13307,7 +13431,7 @@ class DatabaseClient(object):
|
|
13307
13431
|
:rtype: :class:`~oci.response.Response`
|
13308
13432
|
|
13309
13433
|
:example:
|
13310
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13434
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
|
13311
13435
|
"""
|
13312
13436
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13313
13437
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -13411,7 +13535,7 @@ class DatabaseClient(object):
|
|
13411
13535
|
:rtype: :class:`~oci.response.Response`
|
13412
13536
|
|
13413
13537
|
:example:
|
13414
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13538
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
|
13415
13539
|
"""
|
13416
13540
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13417
13541
|
required_arguments = ['vmClusterId']
|
@@ -13520,7 +13644,7 @@ class DatabaseClient(object):
|
|
13520
13644
|
:rtype: :class:`~oci.response.Response`
|
13521
13645
|
|
13522
13646
|
:example:
|
13523
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13647
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
|
13524
13648
|
"""
|
13525
13649
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13526
13650
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -13626,7 +13750,7 @@ class DatabaseClient(object):
|
|
13626
13750
|
:rtype: :class:`~oci.response.Response`
|
13627
13751
|
|
13628
13752
|
:example:
|
13629
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13753
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
|
13630
13754
|
"""
|
13631
13755
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13632
13756
|
required_arguments = ['autonomousDatabaseId']
|
@@ -13731,7 +13855,7 @@ class DatabaseClient(object):
|
|
13731
13855
|
:rtype: :class:`~oci.response.Response`
|
13732
13856
|
|
13733
13857
|
:example:
|
13734
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13858
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
|
13735
13859
|
"""
|
13736
13860
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13737
13861
|
required_arguments = ['autonomousDatabaseId']
|
@@ -13833,7 +13957,7 @@ class DatabaseClient(object):
|
|
13833
13957
|
:rtype: :class:`~oci.response.Response`
|
13834
13958
|
|
13835
13959
|
:example:
|
13836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13960
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
|
13837
13961
|
"""
|
13838
13962
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13839
13963
|
required_arguments = ['autonomousDatabaseId']
|
@@ -13943,7 +14067,7 @@ class DatabaseClient(object):
|
|
13943
14067
|
:rtype: :class:`~oci.response.Response`
|
13944
14068
|
|
13945
14069
|
:example:
|
13946
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14070
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
|
13947
14071
|
"""
|
13948
14072
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13949
14073
|
required_arguments = ['databaseId']
|
@@ -14058,7 +14182,7 @@ class DatabaseClient(object):
|
|
14058
14182
|
:rtype: :class:`~oci.response.Response`
|
14059
14183
|
|
14060
14184
|
:example:
|
14061
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14185
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14062
14186
|
"""
|
14063
14187
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14064
14188
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -14171,7 +14295,7 @@ class DatabaseClient(object):
|
|
14171
14295
|
:rtype: :class:`~oci.response.Response`
|
14172
14296
|
|
14173
14297
|
:example:
|
14174
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14298
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14175
14299
|
"""
|
14176
14300
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14177
14301
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -14288,7 +14412,7 @@ class DatabaseClient(object):
|
|
14288
14412
|
:rtype: :class:`~oci.response.Response`
|
14289
14413
|
|
14290
14414
|
:example:
|
14291
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14415
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14292
14416
|
"""
|
14293
14417
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14294
14418
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -14401,7 +14525,7 @@ class DatabaseClient(object):
|
|
14401
14525
|
:rtype: :class:`~oci.response.Response`
|
14402
14526
|
|
14403
14527
|
:example:
|
14404
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14528
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14405
14529
|
"""
|
14406
14530
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14407
14531
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -14514,7 +14638,7 @@ class DatabaseClient(object):
|
|
14514
14638
|
:rtype: :class:`~oci.response.Response`
|
14515
14639
|
|
14516
14640
|
:example:
|
14517
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14641
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14518
14642
|
"""
|
14519
14643
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14520
14644
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -14631,7 +14755,7 @@ class DatabaseClient(object):
|
|
14631
14755
|
:rtype: :class:`~oci.response.Response`
|
14632
14756
|
|
14633
14757
|
:example:
|
14634
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14758
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14635
14759
|
"""
|
14636
14760
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14637
14761
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -14744,7 +14868,7 @@ class DatabaseClient(object):
|
|
14744
14868
|
:rtype: :class:`~oci.response.Response`
|
14745
14869
|
|
14746
14870
|
:example:
|
14747
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14871
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14748
14872
|
"""
|
14749
14873
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14750
14874
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -14857,7 +14981,7 @@ class DatabaseClient(object):
|
|
14857
14981
|
:rtype: :class:`~oci.response.Response`
|
14858
14982
|
|
14859
14983
|
:example:
|
14860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14984
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14861
14985
|
"""
|
14862
14986
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14863
14987
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -14970,7 +15094,7 @@ class DatabaseClient(object):
|
|
14970
15094
|
:rtype: :class:`~oci.response.Response`
|
14971
15095
|
|
14972
15096
|
:example:
|
14973
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15097
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
|
14974
15098
|
"""
|
14975
15099
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14976
15100
|
required_arguments = ['pluggableDatabaseId']
|
@@ -15080,7 +15204,7 @@ class DatabaseClient(object):
|
|
15080
15204
|
:rtype: :class:`~oci.response.Response`
|
15081
15205
|
|
15082
15206
|
:example:
|
15083
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15207
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
|
15084
15208
|
"""
|
15085
15209
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15086
15210
|
required_arguments = ['exadataInfrastructureId']
|
@@ -15193,7 +15317,7 @@ class DatabaseClient(object):
|
|
15193
15317
|
:rtype: :class:`~oci.response.Response`
|
15194
15318
|
|
15195
15319
|
:example:
|
15196
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15320
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
|
15197
15321
|
"""
|
15198
15322
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15199
15323
|
required_arguments = ['oneoffPatchId']
|
@@ -15308,7 +15432,7 @@ class DatabaseClient(object):
|
|
15308
15432
|
:rtype: :class:`~oci.response.Response`
|
15309
15433
|
|
15310
15434
|
:example:
|
15311
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15435
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
|
15312
15436
|
"""
|
15313
15437
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15314
15438
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -15422,7 +15546,7 @@ class DatabaseClient(object):
|
|
15422
15546
|
:rtype: :class:`~oci.response.Response`
|
15423
15547
|
|
15424
15548
|
:example:
|
15425
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15549
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
15426
15550
|
"""
|
15427
15551
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15428
15552
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -15542,7 +15666,7 @@ class DatabaseClient(object):
|
|
15542
15666
|
:rtype: :class:`~oci.response.Response`
|
15543
15667
|
|
15544
15668
|
:example:
|
15545
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15669
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/edit_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use edit_autonomous_container_database_dataguard API.
|
15546
15670
|
"""
|
15547
15671
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15548
15672
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -15651,7 +15775,7 @@ class DatabaseClient(object):
|
|
15651
15775
|
:rtype: :class:`~oci.response.Response`
|
15652
15776
|
|
15653
15777
|
:example:
|
15654
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15778
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
|
15655
15779
|
"""
|
15656
15780
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15657
15781
|
required_arguments = ['autonomousDatabaseId']
|
@@ -15753,7 +15877,7 @@ class DatabaseClient(object):
|
|
15753
15877
|
:rtype: :class:`~oci.response.Response`
|
15754
15878
|
|
15755
15879
|
:example:
|
15756
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15880
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
|
15757
15881
|
"""
|
15758
15882
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15759
15883
|
required_arguments = ['autonomousDatabaseId']
|
@@ -15866,7 +15990,7 @@ class DatabaseClient(object):
|
|
15866
15990
|
:rtype: :class:`~oci.response.Response`
|
15867
15991
|
|
15868
15992
|
:example:
|
15869
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15993
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
|
15870
15994
|
"""
|
15871
15995
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15872
15996
|
required_arguments = ['databaseId']
|
@@ -15990,7 +16114,7 @@ class DatabaseClient(object):
|
|
15990
16114
|
:rtype: :class:`~oci.response.Response`
|
15991
16115
|
|
15992
16116
|
:example:
|
15993
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16117
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
15994
16118
|
"""
|
15995
16119
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15996
16120
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -16108,7 +16232,7 @@ class DatabaseClient(object):
|
|
16108
16232
|
:rtype: :class:`~oci.response.Response`
|
16109
16233
|
|
16110
16234
|
:example:
|
16111
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16235
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16112
16236
|
"""
|
16113
16237
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16114
16238
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -16230,7 +16354,7 @@ class DatabaseClient(object):
|
|
16230
16354
|
:rtype: :class:`~oci.response.Response`
|
16231
16355
|
|
16232
16356
|
:example:
|
16233
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16357
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16234
16358
|
"""
|
16235
16359
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16236
16360
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -16348,7 +16472,7 @@ class DatabaseClient(object):
|
|
16348
16472
|
:rtype: :class:`~oci.response.Response`
|
16349
16473
|
|
16350
16474
|
:example:
|
16351
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16475
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16352
16476
|
"""
|
16353
16477
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16354
16478
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -16466,7 +16590,7 @@ class DatabaseClient(object):
|
|
16466
16590
|
:rtype: :class:`~oci.response.Response`
|
16467
16591
|
|
16468
16592
|
:example:
|
16469
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16593
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16470
16594
|
"""
|
16471
16595
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16472
16596
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -16588,7 +16712,7 @@ class DatabaseClient(object):
|
|
16588
16712
|
:rtype: :class:`~oci.response.Response`
|
16589
16713
|
|
16590
16714
|
:example:
|
16591
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16715
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16592
16716
|
"""
|
16593
16717
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16594
16718
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -16706,7 +16830,7 @@ class DatabaseClient(object):
|
|
16706
16830
|
:rtype: :class:`~oci.response.Response`
|
16707
16831
|
|
16708
16832
|
:example:
|
16709
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16833
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16710
16834
|
"""
|
16711
16835
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16712
16836
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -16824,7 +16948,7 @@ class DatabaseClient(object):
|
|
16824
16948
|
:rtype: :class:`~oci.response.Response`
|
16825
16949
|
|
16826
16950
|
:example:
|
16827
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16951
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16828
16952
|
"""
|
16829
16953
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16830
16954
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -16942,7 +17066,7 @@ class DatabaseClient(object):
|
|
16942
17066
|
:rtype: :class:`~oci.response.Response`
|
16943
17067
|
|
16944
17068
|
:example:
|
16945
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17069
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
|
16946
17070
|
"""
|
16947
17071
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16948
17072
|
required_arguments = ['pluggableDatabaseId']
|
@@ -17071,7 +17195,7 @@ class DatabaseClient(object):
|
|
17071
17195
|
:rtype: :class:`~oci.response.Response`
|
17072
17196
|
|
17073
17197
|
:example:
|
17074
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17198
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
|
17075
17199
|
"""
|
17076
17200
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17077
17201
|
required_arguments = ['autonomousDatabaseId']
|
@@ -17192,7 +17316,7 @@ class DatabaseClient(object):
|
|
17192
17316
|
:rtype: :class:`~oci.response.Response`
|
17193
17317
|
|
17194
17318
|
:example:
|
17195
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17319
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/failover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard API.
|
17196
17320
|
"""
|
17197
17321
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17198
17322
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -17301,7 +17425,7 @@ class DatabaseClient(object):
|
|
17301
17425
|
:rtype: :class:`~oci.response.Response`
|
17302
17426
|
|
17303
17427
|
:example:
|
17304
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17428
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
17305
17429
|
"""
|
17306
17430
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17307
17431
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -17421,7 +17545,7 @@ class DatabaseClient(object):
|
|
17421
17545
|
:rtype: :class:`~oci.response.Response`
|
17422
17546
|
|
17423
17547
|
:example:
|
17424
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17548
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/failover_data_guard.py.html>`__ to see an example of how to use failover_data_guard API.
|
17425
17549
|
"""
|
17426
17550
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17427
17551
|
required_arguments = ['databaseId']
|
@@ -17540,7 +17664,7 @@ class DatabaseClient(object):
|
|
17540
17664
|
:rtype: :class:`~oci.response.Response`
|
17541
17665
|
|
17542
17666
|
:example:
|
17543
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17667
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
|
17544
17668
|
"""
|
17545
17669
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17546
17670
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -17655,7 +17779,7 @@ class DatabaseClient(object):
|
|
17655
17779
|
:rtype: :class:`~oci.response.Response`
|
17656
17780
|
|
17657
17781
|
:example:
|
17658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17782
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
|
17659
17783
|
"""
|
17660
17784
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17661
17785
|
required_arguments = ['autonomousDatabaseId']
|
@@ -17770,7 +17894,7 @@ class DatabaseClient(object):
|
|
17770
17894
|
:rtype: :class:`~oci.response.Response`
|
17771
17895
|
|
17772
17896
|
:example:
|
17773
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17897
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
|
17774
17898
|
"""
|
17775
17899
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17776
17900
|
required_arguments = ['exadataInfrastructureId']
|
@@ -17873,7 +17997,7 @@ class DatabaseClient(object):
|
|
17873
17997
|
:rtype: :class:`~oci.response.Response`
|
17874
17998
|
|
17875
17999
|
:example:
|
17876
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18000
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
|
17877
18001
|
"""
|
17878
18002
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17879
18003
|
required_arguments = ['applicationVipId']
|
@@ -17968,7 +18092,7 @@ class DatabaseClient(object):
|
|
17968
18092
|
:rtype: :class:`~oci.response.Response`
|
17969
18093
|
|
17970
18094
|
:example:
|
17971
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18095
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
|
17972
18096
|
"""
|
17973
18097
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17974
18098
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -18061,7 +18185,7 @@ class DatabaseClient(object):
|
|
18061
18185
|
:rtype: :class:`~oci.response.Response`
|
18062
18186
|
|
18063
18187
|
:example:
|
18064
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18188
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
18065
18189
|
"""
|
18066
18190
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18067
18191
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -18153,7 +18277,7 @@ class DatabaseClient(object):
|
|
18153
18277
|
:rtype: :class:`~oci.response.Response`
|
18154
18278
|
|
18155
18279
|
:example:
|
18156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
18157
18281
|
"""
|
18158
18282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18159
18283
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -18251,7 +18375,7 @@ class DatabaseClient(object):
|
|
18251
18375
|
:rtype: :class:`~oci.response.Response`
|
18252
18376
|
|
18253
18377
|
:example:
|
18254
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
|
18255
18379
|
"""
|
18256
18380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18257
18381
|
required_arguments = ['autonomousDatabaseId']
|
@@ -18349,7 +18473,7 @@ class DatabaseClient(object):
|
|
18349
18473
|
:rtype: :class:`~oci.response.Response`
|
18350
18474
|
|
18351
18475
|
:example:
|
18352
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18476
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
|
18353
18477
|
"""
|
18354
18478
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18355
18479
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -18452,7 +18576,7 @@ class DatabaseClient(object):
|
|
18452
18576
|
:rtype: :class:`~oci.response.Response`
|
18453
18577
|
|
18454
18578
|
:example:
|
18455
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18579
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
|
18456
18580
|
"""
|
18457
18581
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18458
18582
|
required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
|
@@ -18546,7 +18670,7 @@ class DatabaseClient(object):
|
|
18546
18670
|
:rtype: :class:`~oci.response.Response`
|
18547
18671
|
|
18548
18672
|
:example:
|
18549
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18673
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
|
18550
18674
|
"""
|
18551
18675
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18552
18676
|
required_arguments = []
|
@@ -18632,7 +18756,7 @@ class DatabaseClient(object):
|
|
18632
18756
|
:rtype: :class:`~oci.response.Response`
|
18633
18757
|
|
18634
18758
|
:example:
|
18635
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18759
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
|
18636
18760
|
"""
|
18637
18761
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18638
18762
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -18730,7 +18854,7 @@ class DatabaseClient(object):
|
|
18730
18854
|
:rtype: :class:`~oci.response.Response`
|
18731
18855
|
|
18732
18856
|
:example:
|
18733
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18857
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
|
18734
18858
|
"""
|
18735
18859
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18736
18860
|
required_arguments = ['autonomousDatabaseId']
|
@@ -18825,7 +18949,7 @@ class DatabaseClient(object):
|
|
18825
18949
|
:rtype: :class:`~oci.response.Response`
|
18826
18950
|
|
18827
18951
|
:example:
|
18828
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18952
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
|
18829
18953
|
"""
|
18830
18954
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18831
18955
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -18913,7 +19037,7 @@ class DatabaseClient(object):
|
|
18913
19037
|
:rtype: :class:`~oci.response.Response`
|
18914
19038
|
|
18915
19039
|
:example:
|
18916
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19040
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
|
18917
19041
|
"""
|
18918
19042
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18919
19043
|
required_arguments = ['autonomousPatchId']
|
@@ -19004,7 +19128,7 @@ class DatabaseClient(object):
|
|
19004
19128
|
:rtype: :class:`~oci.response.Response`
|
19005
19129
|
|
19006
19130
|
:example:
|
19007
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19131
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
|
19008
19132
|
"""
|
19009
19133
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19010
19134
|
required_arguments = ['autonomousVirtualMachineId']
|
@@ -19102,7 +19226,7 @@ class DatabaseClient(object):
|
|
19102
19226
|
:rtype: :class:`~oci.response.Response`
|
19103
19227
|
|
19104
19228
|
:example:
|
19105
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19229
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
|
19106
19230
|
"""
|
19107
19231
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19108
19232
|
required_arguments = ['autonomousVmClusterId']
|
@@ -19200,7 +19324,7 @@ class DatabaseClient(object):
|
|
19200
19324
|
:rtype: :class:`~oci.response.Response`
|
19201
19325
|
|
19202
19326
|
:example:
|
19203
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19327
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19204
19328
|
"""
|
19205
19329
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19206
19330
|
required_arguments = ['autonomousVmClusterId']
|
@@ -19295,7 +19419,7 @@ class DatabaseClient(object):
|
|
19295
19419
|
:rtype: :class:`~oci.response.Response`
|
19296
19420
|
|
19297
19421
|
:example:
|
19298
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19422
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
|
19299
19423
|
"""
|
19300
19424
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19301
19425
|
required_arguments = ['backupId']
|
@@ -19386,7 +19510,7 @@ class DatabaseClient(object):
|
|
19386
19510
|
:rtype: :class:`~oci.response.Response`
|
19387
19511
|
|
19388
19512
|
:example:
|
19389
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19513
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
|
19390
19514
|
"""
|
19391
19515
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19392
19516
|
required_arguments = ['backupDestinationId']
|
@@ -19484,7 +19608,7 @@ class DatabaseClient(object):
|
|
19484
19608
|
:rtype: :class:`~oci.response.Response`
|
19485
19609
|
|
19486
19610
|
:example:
|
19487
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19611
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
|
19488
19612
|
"""
|
19489
19613
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19490
19614
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -19582,7 +19706,7 @@ class DatabaseClient(object):
|
|
19582
19706
|
:rtype: :class:`~oci.response.Response`
|
19583
19707
|
|
19584
19708
|
:example:
|
19585
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19709
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19586
19710
|
"""
|
19587
19711
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19588
19712
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -19680,7 +19804,7 @@ class DatabaseClient(object):
|
|
19680
19804
|
:rtype: :class:`~oci.response.Response`
|
19681
19805
|
|
19682
19806
|
:example:
|
19683
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19807
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
|
19684
19808
|
"""
|
19685
19809
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19686
19810
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -19783,7 +19907,7 @@ class DatabaseClient(object):
|
|
19783
19907
|
:rtype: :class:`~oci.response.Response`
|
19784
19908
|
|
19785
19909
|
:example:
|
19786
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19910
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19787
19911
|
"""
|
19788
19912
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19789
19913
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -19889,7 +20013,7 @@ class DatabaseClient(object):
|
|
19889
20013
|
:rtype: :class:`~oci.response.Response`
|
19890
20014
|
|
19891
20015
|
:example:
|
19892
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20016
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
|
19893
20017
|
"""
|
19894
20018
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19895
20019
|
required_arguments = ['cloudVmClusterId']
|
@@ -19988,7 +20112,7 @@ class DatabaseClient(object):
|
|
19988
20112
|
:rtype: :class:`~oci.response.Response`
|
19989
20113
|
|
19990
20114
|
:example:
|
19991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20115
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19992
20116
|
"""
|
19993
20117
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19994
20118
|
required_arguments = ['cloudVmClusterId']
|
@@ -20091,7 +20215,7 @@ class DatabaseClient(object):
|
|
20091
20215
|
:rtype: :class:`~oci.response.Response`
|
20092
20216
|
|
20093
20217
|
:example:
|
20094
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20218
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
|
20095
20219
|
"""
|
20096
20220
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20097
20221
|
required_arguments = ['cloudVmClusterId', 'updateId']
|
@@ -20195,7 +20319,7 @@ class DatabaseClient(object):
|
|
20195
20319
|
:rtype: :class:`~oci.response.Response`
|
20196
20320
|
|
20197
20321
|
:example:
|
20198
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
20199
20323
|
"""
|
20200
20324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20201
20325
|
required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
|
@@ -20294,7 +20418,7 @@ class DatabaseClient(object):
|
|
20294
20418
|
:rtype: :class:`~oci.response.Response`
|
20295
20419
|
|
20296
20420
|
:example:
|
20297
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20421
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
|
20298
20422
|
"""
|
20299
20423
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20300
20424
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -20389,7 +20513,7 @@ class DatabaseClient(object):
|
|
20389
20513
|
:rtype: :class:`~oci.response.Response`
|
20390
20514
|
|
20391
20515
|
:example:
|
20392
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20516
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
|
20393
20517
|
"""
|
20394
20518
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20395
20519
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -20491,7 +20615,7 @@ class DatabaseClient(object):
|
|
20491
20615
|
:rtype: :class:`~oci.response.Response`
|
20492
20616
|
|
20493
20617
|
:example:
|
20494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
|
20495
20619
|
"""
|
20496
20620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20497
20621
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -20592,7 +20716,7 @@ class DatabaseClient(object):
|
|
20592
20716
|
:rtype: :class:`~oci.response.Response`
|
20593
20717
|
|
20594
20718
|
:example:
|
20595
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20719
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
|
20596
20720
|
"""
|
20597
20721
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20598
20722
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -20681,7 +20805,7 @@ class DatabaseClient(object):
|
|
20681
20805
|
:rtype: :class:`~oci.response.Response`
|
20682
20806
|
|
20683
20807
|
:example:
|
20684
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20808
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
|
20685
20809
|
"""
|
20686
20810
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20687
20811
|
required_arguments = ['databaseId']
|
@@ -20769,7 +20893,7 @@ class DatabaseClient(object):
|
|
20769
20893
|
:rtype: :class:`~oci.response.Response`
|
20770
20894
|
|
20771
20895
|
:example:
|
20772
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20896
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
|
20773
20897
|
"""
|
20774
20898
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20775
20899
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -20865,7 +20989,7 @@ class DatabaseClient(object):
|
|
20865
20989
|
:rtype: :class:`~oci.response.Response`
|
20866
20990
|
|
20867
20991
|
:example:
|
20868
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20992
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
|
20869
20993
|
"""
|
20870
20994
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20871
20995
|
required_arguments = ['databaseId', 'upgradeHistoryEntryId']
|
@@ -20961,7 +21085,7 @@ class DatabaseClient(object):
|
|
20961
21085
|
:rtype: :class:`~oci.response.Response`
|
20962
21086
|
|
20963
21087
|
:example:
|
20964
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21088
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
|
20965
21089
|
"""
|
20966
21090
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20967
21091
|
required_arguments = ['dbHomeId']
|
@@ -21054,7 +21178,7 @@ class DatabaseClient(object):
|
|
21054
21178
|
:rtype: :class:`~oci.response.Response`
|
21055
21179
|
|
21056
21180
|
:example:
|
21057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
|
21058
21182
|
"""
|
21059
21183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21060
21184
|
required_arguments = ['dbHomeId', 'patchId']
|
@@ -21148,7 +21272,7 @@ class DatabaseClient(object):
|
|
21148
21272
|
:rtype: :class:`~oci.response.Response`
|
21149
21273
|
|
21150
21274
|
:example:
|
21151
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
21152
21276
|
"""
|
21153
21277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21154
21278
|
required_arguments = ['dbHomeId', 'patchHistoryEntryId']
|
@@ -21237,7 +21361,7 @@ class DatabaseClient(object):
|
|
21237
21361
|
:rtype: :class:`~oci.response.Response`
|
21238
21362
|
|
21239
21363
|
:example:
|
21240
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21364
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
|
21241
21365
|
"""
|
21242
21366
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21243
21367
|
required_arguments = ['dbNodeId']
|
@@ -21333,7 +21457,7 @@ class DatabaseClient(object):
|
|
21333
21457
|
:rtype: :class:`~oci.response.Response`
|
21334
21458
|
|
21335
21459
|
:example:
|
21336
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21460
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
|
21337
21461
|
"""
|
21338
21462
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21339
21463
|
required_arguments = ['dbServerId', 'exadataInfrastructureId']
|
@@ -21442,7 +21566,7 @@ class DatabaseClient(object):
|
|
21442
21566
|
:rtype: :class:`~oci.response.Response`
|
21443
21567
|
|
21444
21568
|
:example:
|
21445
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21569
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
|
21446
21570
|
"""
|
21447
21571
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21448
21572
|
required_arguments = ['dbSystemId']
|
@@ -21535,7 +21659,7 @@ class DatabaseClient(object):
|
|
21535
21659
|
:rtype: :class:`~oci.response.Response`
|
21536
21660
|
|
21537
21661
|
:example:
|
21538
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
|
21539
21663
|
"""
|
21540
21664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21541
21665
|
required_arguments = ['dbSystemId', 'patchId']
|
@@ -21629,7 +21753,7 @@ class DatabaseClient(object):
|
|
21629
21753
|
:rtype: :class:`~oci.response.Response`
|
21630
21754
|
|
21631
21755
|
:example:
|
21632
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21756
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
21633
21757
|
"""
|
21634
21758
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21635
21759
|
required_arguments = ['dbSystemId', 'patchHistoryEntryId']
|
@@ -21726,7 +21850,7 @@ class DatabaseClient(object):
|
|
21726
21850
|
:rtype: :class:`~oci.response.Response`
|
21727
21851
|
|
21728
21852
|
:example:
|
21729
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21853
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
21730
21854
|
"""
|
21731
21855
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21732
21856
|
required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
|
@@ -21831,7 +21955,7 @@ class DatabaseClient(object):
|
|
21831
21955
|
:rtype: :class:`~oci.response.Response`
|
21832
21956
|
|
21833
21957
|
:example:
|
21834
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21958
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
|
21835
21959
|
"""
|
21836
21960
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21837
21961
|
required_arguments = ['exadataInfrastructureId']
|
@@ -21945,7 +22069,7 @@ class DatabaseClient(object):
|
|
21945
22069
|
:rtype: :class:`~oci.response.Response`
|
21946
22070
|
|
21947
22071
|
:example:
|
21948
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22072
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
|
21949
22073
|
"""
|
21950
22074
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21951
22075
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -22048,7 +22172,7 @@ class DatabaseClient(object):
|
|
22048
22172
|
:rtype: :class:`~oci.response.Response`
|
22049
22173
|
|
22050
22174
|
:example:
|
22051
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22175
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
22052
22176
|
"""
|
22053
22177
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22054
22178
|
required_arguments = ['exadataInfrastructureId']
|
@@ -22165,7 +22289,7 @@ class DatabaseClient(object):
|
|
22165
22289
|
:rtype: :class:`~oci.response.Response`
|
22166
22290
|
|
22167
22291
|
:example:
|
22168
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22292
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
|
22169
22293
|
"""
|
22170
22294
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22171
22295
|
required_arguments = ['dbSystemId']
|
@@ -22263,7 +22387,7 @@ class DatabaseClient(object):
|
|
22263
22387
|
:rtype: :class:`~oci.response.Response`
|
22264
22388
|
|
22265
22389
|
:example:
|
22266
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22390
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
|
22267
22391
|
"""
|
22268
22392
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22269
22393
|
required_arguments = ['exadbVmClusterId']
|
@@ -22366,7 +22490,7 @@ class DatabaseClient(object):
|
|
22366
22490
|
:rtype: :class:`~oci.response.Response`
|
22367
22491
|
|
22368
22492
|
:example:
|
22369
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22493
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
|
22370
22494
|
"""
|
22371
22495
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22372
22496
|
required_arguments = ['exadbVmClusterId', 'updateId']
|
@@ -22470,7 +22594,7 @@ class DatabaseClient(object):
|
|
22470
22594
|
:rtype: :class:`~oci.response.Response`
|
22471
22595
|
|
22472
22596
|
:example:
|
22473
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22597
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
22474
22598
|
"""
|
22475
22599
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22476
22600
|
required_arguments = ['exadbVmClusterId', 'updateHistoryEntryId']
|
@@ -22569,7 +22693,7 @@ class DatabaseClient(object):
|
|
22569
22693
|
:rtype: :class:`~oci.response.Response`
|
22570
22694
|
|
22571
22695
|
:example:
|
22572
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22696
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
|
22573
22697
|
"""
|
22574
22698
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22575
22699
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -22667,7 +22791,7 @@ class DatabaseClient(object):
|
|
22667
22791
|
:rtype: :class:`~oci.response.Response`
|
22668
22792
|
|
22669
22793
|
:example:
|
22670
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22794
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
|
22671
22795
|
"""
|
22672
22796
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22673
22797
|
required_arguments = ['executionActionId']
|
@@ -22765,7 +22889,7 @@ class DatabaseClient(object):
|
|
22765
22889
|
:rtype: :class:`~oci.response.Response`
|
22766
22890
|
|
22767
22891
|
:example:
|
22768
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22892
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
|
22769
22893
|
"""
|
22770
22894
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22771
22895
|
required_arguments = ['executionWindowId']
|
@@ -22864,7 +22988,7 @@ class DatabaseClient(object):
|
|
22864
22988
|
:rtype: :class:`~oci.response.Response`
|
22865
22989
|
|
22866
22990
|
:example:
|
22867
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
|
22868
22992
|
"""
|
22869
22993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22870
22994
|
required_arguments = ['backupId']
|
@@ -22955,7 +23079,7 @@ class DatabaseClient(object):
|
|
22955
23079
|
:rtype: :class:`~oci.response.Response`
|
22956
23080
|
|
22957
23081
|
:example:
|
22958
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23082
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
|
22959
23083
|
"""
|
22960
23084
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22961
23085
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -23054,7 +23178,7 @@ class DatabaseClient(object):
|
|
23054
23178
|
:rtype: :class:`~oci.response.Response`
|
23055
23179
|
|
23056
23180
|
:example:
|
23057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
|
23058
23182
|
"""
|
23059
23183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23060
23184
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -23152,7 +23276,7 @@ class DatabaseClient(object):
|
|
23152
23276
|
:rtype: :class:`~oci.response.Response`
|
23153
23277
|
|
23154
23278
|
:example:
|
23155
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23279
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
|
23156
23280
|
"""
|
23157
23281
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23158
23282
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -23251,7 +23375,7 @@ class DatabaseClient(object):
|
|
23251
23375
|
:rtype: :class:`~oci.response.Response`
|
23252
23376
|
|
23253
23377
|
:example:
|
23254
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
|
23255
23379
|
"""
|
23256
23380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23257
23381
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -23358,7 +23482,7 @@ class DatabaseClient(object):
|
|
23358
23482
|
:rtype: :class:`~oci.response.Response`
|
23359
23483
|
|
23360
23484
|
:example:
|
23361
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
|
23362
23486
|
"""
|
23363
23487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23364
23488
|
required_arguments = ['compartmentId']
|
@@ -23462,7 +23586,7 @@ class DatabaseClient(object):
|
|
23462
23586
|
:rtype: :class:`~oci.response.Response`
|
23463
23587
|
|
23464
23588
|
:example:
|
23465
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23589
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
|
23466
23590
|
"""
|
23467
23591
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23468
23592
|
required_arguments = ['keyStoreId']
|
@@ -23555,7 +23679,7 @@ class DatabaseClient(object):
|
|
23555
23679
|
:rtype: :class:`~oci.response.Response`
|
23556
23680
|
|
23557
23681
|
:example:
|
23558
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
|
23559
23683
|
"""
|
23560
23684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23561
23685
|
required_arguments = ['maintenanceRunId']
|
@@ -23641,7 +23765,7 @@ class DatabaseClient(object):
|
|
23641
23765
|
:rtype: :class:`~oci.response.Response`
|
23642
23766
|
|
23643
23767
|
:example:
|
23644
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23768
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
|
23645
23769
|
"""
|
23646
23770
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23647
23771
|
required_arguments = ['maintenanceRunHistoryId']
|
@@ -23732,7 +23856,7 @@ class DatabaseClient(object):
|
|
23732
23856
|
:rtype: :class:`~oci.response.Response`
|
23733
23857
|
|
23734
23858
|
:example:
|
23735
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23859
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
|
23736
23860
|
"""
|
23737
23861
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23738
23862
|
required_arguments = ['oneoffPatchId']
|
@@ -23835,7 +23959,7 @@ class DatabaseClient(object):
|
|
23835
23959
|
:rtype: :class:`~oci.response.Response`
|
23836
23960
|
|
23837
23961
|
:example:
|
23838
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23962
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
|
23839
23963
|
"""
|
23840
23964
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23841
23965
|
required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
|
@@ -23931,7 +24055,7 @@ class DatabaseClient(object):
|
|
23931
24055
|
:rtype: :class:`~oci.response.Response`
|
23932
24056
|
|
23933
24057
|
:example:
|
23934
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
|
23935
24059
|
"""
|
23936
24060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23937
24061
|
required_arguments = ['pluggableDatabaseId']
|
@@ -24022,7 +24146,7 @@ class DatabaseClient(object):
|
|
24022
24146
|
:rtype: :class:`~oci.response.Response`
|
24023
24147
|
|
24024
24148
|
:example:
|
24025
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
|
24026
24150
|
"""
|
24027
24151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24028
24152
|
required_arguments = ['scheduledActionId']
|
@@ -24120,7 +24244,7 @@ class DatabaseClient(object):
|
|
24120
24244
|
:rtype: :class:`~oci.response.Response`
|
24121
24245
|
|
24122
24246
|
:example:
|
24123
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24247
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
|
24124
24248
|
"""
|
24125
24249
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24126
24250
|
required_arguments = ['schedulingPlanId']
|
@@ -24218,7 +24342,7 @@ class DatabaseClient(object):
|
|
24218
24342
|
:rtype: :class:`~oci.response.Response`
|
24219
24343
|
|
24220
24344
|
:example:
|
24221
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24345
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
|
24222
24346
|
"""
|
24223
24347
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24224
24348
|
required_arguments = ['schedulingPolicyId']
|
@@ -24321,7 +24445,7 @@ class DatabaseClient(object):
|
|
24321
24445
|
:rtype: :class:`~oci.response.Response`
|
24322
24446
|
|
24323
24447
|
:example:
|
24324
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24448
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
|
24325
24449
|
"""
|
24326
24450
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24327
24451
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -24420,7 +24544,7 @@ class DatabaseClient(object):
|
|
24420
24544
|
:rtype: :class:`~oci.response.Response`
|
24421
24545
|
|
24422
24546
|
:example:
|
24423
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24547
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
|
24424
24548
|
"""
|
24425
24549
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24426
24550
|
required_arguments = ['vmClusterId']
|
@@ -24524,7 +24648,7 @@ class DatabaseClient(object):
|
|
24524
24648
|
:rtype: :class:`~oci.response.Response`
|
24525
24649
|
|
24526
24650
|
:example:
|
24527
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24651
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
|
24528
24652
|
"""
|
24529
24653
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24530
24654
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -24625,7 +24749,7 @@ class DatabaseClient(object):
|
|
24625
24749
|
:rtype: :class:`~oci.response.Response`
|
24626
24750
|
|
24627
24751
|
:example:
|
24628
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24752
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
|
24629
24753
|
"""
|
24630
24754
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24631
24755
|
required_arguments = ['vmClusterId', 'patchId']
|
@@ -24719,7 +24843,7 @@ class DatabaseClient(object):
|
|
24719
24843
|
:rtype: :class:`~oci.response.Response`
|
24720
24844
|
|
24721
24845
|
:example:
|
24722
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24846
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
24723
24847
|
"""
|
24724
24848
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24725
24849
|
required_arguments = ['vmClusterId', 'patchHistoryEntryId']
|
@@ -24816,7 +24940,7 @@ class DatabaseClient(object):
|
|
24816
24940
|
:rtype: :class:`~oci.response.Response`
|
24817
24941
|
|
24818
24942
|
:example:
|
24819
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24943
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
|
24820
24944
|
"""
|
24821
24945
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24822
24946
|
required_arguments = ['vmClusterId', 'updateId']
|
@@ -24920,7 +25044,7 @@ class DatabaseClient(object):
|
|
24920
25044
|
:rtype: :class:`~oci.response.Response`
|
24921
25045
|
|
24922
25046
|
:example:
|
24923
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25047
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
24924
25048
|
"""
|
24925
25049
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24926
25050
|
required_arguments = ['vmClusterId', 'updateHistoryEntryId']
|
@@ -25021,7 +25145,7 @@ class DatabaseClient(object):
|
|
25021
25145
|
:rtype: :class:`~oci.response.Response`
|
25022
25146
|
|
25023
25147
|
:example:
|
25024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25148
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
|
25025
25149
|
"""
|
25026
25150
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25027
25151
|
required_arguments = []
|
@@ -25133,7 +25257,7 @@ class DatabaseClient(object):
|
|
25133
25257
|
:rtype: :class:`~oci.response.Response`
|
25134
25258
|
|
25135
25259
|
:example:
|
25136
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25260
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
|
25137
25261
|
"""
|
25138
25262
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25139
25263
|
required_arguments = []
|
@@ -25251,7 +25375,7 @@ class DatabaseClient(object):
|
|
25251
25375
|
:rtype: :class:`~oci.response.Response`
|
25252
25376
|
|
25253
25377
|
:example:
|
25254
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
|
25255
25379
|
"""
|
25256
25380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25257
25381
|
required_arguments = ['compartmentId', 'cloudVmClusterId']
|
@@ -25415,7 +25539,7 @@ class DatabaseClient(object):
|
|
25415
25539
|
:rtype: :class:`~oci.response.Response`
|
25416
25540
|
|
25417
25541
|
:example:
|
25418
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25542
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_container_database_backups.py.html>`__ to see an example of how to use list_autonomous_container_database_backups API.
|
25419
25543
|
"""
|
25420
25544
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25421
25545
|
required_arguments = []
|
@@ -25558,7 +25682,7 @@ class DatabaseClient(object):
|
|
25558
25682
|
:rtype: :class:`~oci.response.Response`
|
25559
25683
|
|
25560
25684
|
:example:
|
25561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25685
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
25562
25686
|
"""
|
25563
25687
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25564
25688
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -25679,7 +25803,7 @@ class DatabaseClient(object):
|
|
25679
25803
|
:rtype: :class:`~oci.response.Response`
|
25680
25804
|
|
25681
25805
|
:example:
|
25682
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25806
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
|
25683
25807
|
"""
|
25684
25808
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25685
25809
|
required_arguments = ['compartmentId', 'serviceComponent']
|
@@ -25841,7 +25965,7 @@ class DatabaseClient(object):
|
|
25841
25965
|
:rtype: :class:`~oci.response.Response`
|
25842
25966
|
|
25843
25967
|
:example:
|
25844
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25968
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
|
25845
25969
|
"""
|
25846
25970
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25847
25971
|
required_arguments = ['compartmentId']
|
@@ -26017,7 +26141,7 @@ class DatabaseClient(object):
|
|
26017
26141
|
:rtype: :class:`~oci.response.Response`
|
26018
26142
|
|
26019
26143
|
:example:
|
26020
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26144
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
|
26021
26145
|
"""
|
26022
26146
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26023
26147
|
required_arguments = []
|
@@ -26154,7 +26278,7 @@ class DatabaseClient(object):
|
|
26154
26278
|
:rtype: :class:`~oci.response.Response`
|
26155
26279
|
|
26156
26280
|
:example:
|
26157
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
|
26158
26282
|
"""
|
26159
26283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26160
26284
|
required_arguments = []
|
@@ -26295,7 +26419,7 @@ class DatabaseClient(object):
|
|
26295
26419
|
:rtype: :class:`~oci.response.Response`
|
26296
26420
|
|
26297
26421
|
:example:
|
26298
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26422
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
|
26299
26423
|
"""
|
26300
26424
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26301
26425
|
required_arguments = ['autonomousDatabaseId', 'compartmentId']
|
@@ -26445,7 +26569,7 @@ class DatabaseClient(object):
|
|
26445
26569
|
:rtype: :class:`~oci.response.Response`
|
26446
26570
|
|
26447
26571
|
:example:
|
26448
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26572
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
|
26449
26573
|
"""
|
26450
26574
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26451
26575
|
required_arguments = ['autonomousDatabaseId']
|
@@ -26556,7 +26680,7 @@ class DatabaseClient(object):
|
|
26556
26680
|
:rtype: :class:`~oci.response.Response`
|
26557
26681
|
|
26558
26682
|
:example:
|
26559
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26683
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
|
26560
26684
|
"""
|
26561
26685
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26562
26686
|
required_arguments = ['autonomousDatabaseId']
|
@@ -26670,7 +26794,7 @@ class DatabaseClient(object):
|
|
26670
26794
|
:rtype: :class:`~oci.response.Response`
|
26671
26795
|
|
26672
26796
|
:example:
|
26673
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26797
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
|
26674
26798
|
"""
|
26675
26799
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26676
26800
|
required_arguments = ['autonomousDatabaseId']
|
@@ -26807,7 +26931,7 @@ class DatabaseClient(object):
|
|
26807
26931
|
:rtype: :class:`~oci.response.Response`
|
26808
26932
|
|
26809
26933
|
:example:
|
26810
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26934
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
|
26811
26935
|
"""
|
26812
26936
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26813
26937
|
required_arguments = ['compartmentId', 'imageShapeFamily']
|
@@ -27008,7 +27132,7 @@ class DatabaseClient(object):
|
|
27008
27132
|
:rtype: :class:`~oci.response.Response`
|
27009
27133
|
|
27010
27134
|
:example:
|
27011
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27135
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
|
27012
27136
|
"""
|
27013
27137
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27014
27138
|
required_arguments = ['compartmentId']
|
@@ -27194,7 +27318,7 @@ class DatabaseClient(object):
|
|
27194
27318
|
:rtype: :class:`~oci.response.Response`
|
27195
27319
|
|
27196
27320
|
:example:
|
27197
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27321
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
|
27198
27322
|
"""
|
27199
27323
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27200
27324
|
required_arguments = ['compartmentId']
|
@@ -27325,7 +27449,7 @@ class DatabaseClient(object):
|
|
27325
27449
|
:rtype: :class:`~oci.response.Response`
|
27326
27450
|
|
27327
27451
|
:example:
|
27328
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27452
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
|
27329
27453
|
"""
|
27330
27454
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27331
27455
|
required_arguments = ['compartmentId']
|
@@ -27449,7 +27573,7 @@ class DatabaseClient(object):
|
|
27449
27573
|
:rtype: :class:`~oci.response.Response`
|
27450
27574
|
|
27451
27575
|
:example:
|
27452
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27576
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
|
27453
27577
|
"""
|
27454
27578
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27455
27579
|
required_arguments = ['availabilityDomain', 'compartmentId']
|
@@ -27573,7 +27697,7 @@ class DatabaseClient(object):
|
|
27573
27697
|
:rtype: :class:`~oci.response.Response`
|
27574
27698
|
|
27575
27699
|
:example:
|
27576
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27700
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
|
27577
27701
|
"""
|
27578
27702
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27579
27703
|
required_arguments = ['compartmentId']
|
@@ -27714,7 +27838,7 @@ class DatabaseClient(object):
|
|
27714
27838
|
:rtype: :class:`~oci.response.Response`
|
27715
27839
|
|
27716
27840
|
:example:
|
27717
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27841
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
|
27718
27842
|
"""
|
27719
27843
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27720
27844
|
required_arguments = ['compartmentId', 'autonomousVmClusterId']
|
@@ -27832,7 +27956,7 @@ class DatabaseClient(object):
|
|
27832
27956
|
:rtype: :class:`~oci.response.Response`
|
27833
27957
|
|
27834
27958
|
:example:
|
27835
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27959
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
27836
27960
|
"""
|
27837
27961
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27838
27962
|
required_arguments = ['autonomousVmClusterId']
|
@@ -27969,7 +28093,7 @@ class DatabaseClient(object):
|
|
27969
28093
|
:rtype: :class:`~oci.response.Response`
|
27970
28094
|
|
27971
28095
|
:example:
|
27972
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28096
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
|
27973
28097
|
"""
|
27974
28098
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27975
28099
|
required_arguments = ['compartmentId']
|
@@ -28106,7 +28230,7 @@ class DatabaseClient(object):
|
|
28106
28230
|
:rtype: :class:`~oci.response.Response`
|
28107
28231
|
|
28108
28232
|
:example:
|
28109
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28233
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
|
28110
28234
|
"""
|
28111
28235
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28112
28236
|
required_arguments = ['compartmentId']
|
@@ -28238,7 +28362,7 @@ class DatabaseClient(object):
|
|
28238
28362
|
:rtype: :class:`~oci.response.Response`
|
28239
28363
|
|
28240
28364
|
:example:
|
28241
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28365
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
|
28242
28366
|
"""
|
28243
28367
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28244
28368
|
required_arguments = []
|
@@ -28375,7 +28499,7 @@ class DatabaseClient(object):
|
|
28375
28499
|
:rtype: :class:`~oci.response.Response`
|
28376
28500
|
|
28377
28501
|
:example:
|
28378
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28502
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
28379
28503
|
"""
|
28380
28504
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28381
28505
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -28515,7 +28639,7 @@ class DatabaseClient(object):
|
|
28515
28639
|
:rtype: :class:`~oci.response.Response`
|
28516
28640
|
|
28517
28641
|
:example:
|
28518
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
|
28519
28643
|
"""
|
28520
28644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28521
28645
|
required_arguments = ['compartmentId']
|
@@ -28672,7 +28796,7 @@ class DatabaseClient(object):
|
|
28672
28796
|
:rtype: :class:`~oci.response.Response`
|
28673
28797
|
|
28674
28798
|
:example:
|
28675
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28799
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
|
28676
28800
|
"""
|
28677
28801
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28678
28802
|
required_arguments = ['compartmentId']
|
@@ -28811,7 +28935,7 @@ class DatabaseClient(object):
|
|
28811
28935
|
:rtype: :class:`~oci.response.Response`
|
28812
28936
|
|
28813
28937
|
:example:
|
28814
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28938
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
28815
28939
|
"""
|
28816
28940
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28817
28941
|
required_arguments = ['cloudVmClusterId']
|
@@ -28939,7 +29063,7 @@ class DatabaseClient(object):
|
|
28939
29063
|
:rtype: :class:`~oci.response.Response`
|
28940
29064
|
|
28941
29065
|
:example:
|
28942
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29066
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
|
28943
29067
|
"""
|
28944
29068
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28945
29069
|
required_arguments = ['cloudVmClusterId']
|
@@ -29088,7 +29212,7 @@ class DatabaseClient(object):
|
|
29088
29212
|
:rtype: :class:`~oci.response.Response`
|
29089
29213
|
|
29090
29214
|
:example:
|
29091
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29215
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
|
29092
29216
|
"""
|
29093
29217
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29094
29218
|
required_arguments = ['compartmentId']
|
@@ -29222,7 +29346,7 @@ class DatabaseClient(object):
|
|
29222
29346
|
:rtype: :class:`~oci.response.Response`
|
29223
29347
|
|
29224
29348
|
:example:
|
29225
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29349
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
|
29226
29350
|
"""
|
29227
29351
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29228
29352
|
required_arguments = ['dbNodeId']
|
@@ -29337,7 +29461,7 @@ class DatabaseClient(object):
|
|
29337
29461
|
:rtype: :class:`~oci.response.Response`
|
29338
29462
|
|
29339
29463
|
:example:
|
29340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
|
29341
29465
|
"""
|
29342
29466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29343
29467
|
required_arguments = ['dbNodeId']
|
@@ -29487,7 +29611,7 @@ class DatabaseClient(object):
|
|
29487
29611
|
:rtype: :class:`~oci.response.Response`
|
29488
29612
|
|
29489
29613
|
:example:
|
29490
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29614
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
|
29491
29615
|
"""
|
29492
29616
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29493
29617
|
required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
|
@@ -29605,7 +29729,7 @@ class DatabaseClient(object):
|
|
29605
29729
|
:rtype: :class:`~oci.response.Response`
|
29606
29730
|
|
29607
29731
|
:example:
|
29608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29732
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
|
29609
29733
|
"""
|
29610
29734
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29611
29735
|
required_arguments = ['databaseId']
|
@@ -29753,7 +29877,7 @@ class DatabaseClient(object):
|
|
29753
29877
|
:rtype: :class:`~oci.response.Response`
|
29754
29878
|
|
29755
29879
|
:example:
|
29756
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29880
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
|
29757
29881
|
"""
|
29758
29882
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29759
29883
|
required_arguments = ['compartmentId']
|
@@ -29926,7 +30050,7 @@ class DatabaseClient(object):
|
|
29926
30050
|
:rtype: :class:`~oci.response.Response`
|
29927
30051
|
|
29928
30052
|
:example:
|
29929
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
|
29930
30054
|
"""
|
29931
30055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29932
30056
|
required_arguments = ['databaseId']
|
@@ -30101,7 +30225,7 @@ class DatabaseClient(object):
|
|
30101
30225
|
:rtype: :class:`~oci.response.Response`
|
30102
30226
|
|
30103
30227
|
:example:
|
30104
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30228
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
|
30105
30229
|
"""
|
30106
30230
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30107
30231
|
required_arguments = ['compartmentId']
|
@@ -30231,7 +30355,7 @@ class DatabaseClient(object):
|
|
30231
30355
|
:rtype: :class:`~oci.response.Response`
|
30232
30356
|
|
30233
30357
|
:example:
|
30234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30358
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
30235
30359
|
"""
|
30236
30360
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30237
30361
|
required_arguments = ['dbHomeId']
|
@@ -30339,7 +30463,7 @@ class DatabaseClient(object):
|
|
30339
30463
|
:rtype: :class:`~oci.response.Response`
|
30340
30464
|
|
30341
30465
|
:example:
|
30342
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30466
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
|
30343
30467
|
"""
|
30344
30468
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30345
30469
|
required_arguments = ['dbHomeId']
|
@@ -30483,7 +30607,7 @@ class DatabaseClient(object):
|
|
30483
30607
|
:rtype: :class:`~oci.response.Response`
|
30484
30608
|
|
30485
30609
|
:example:
|
30486
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30610
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
|
30487
30611
|
"""
|
30488
30612
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30489
30613
|
required_arguments = ['compartmentId']
|
@@ -30647,7 +30771,7 @@ class DatabaseClient(object):
|
|
30647
30771
|
:rtype: :class:`~oci.response.Response`
|
30648
30772
|
|
30649
30773
|
:example:
|
30650
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30774
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
|
30651
30775
|
"""
|
30652
30776
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30653
30777
|
required_arguments = ['compartmentId']
|
@@ -30803,7 +30927,7 @@ class DatabaseClient(object):
|
|
30803
30927
|
:rtype: :class:`~oci.response.Response`
|
30804
30928
|
|
30805
30929
|
:example:
|
30806
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30930
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
|
30807
30931
|
"""
|
30808
30932
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30809
30933
|
required_arguments = ['compartmentId', 'exadataInfrastructureId']
|
@@ -30928,7 +31052,7 @@ class DatabaseClient(object):
|
|
30928
31052
|
:rtype: :class:`~oci.response.Response`
|
30929
31053
|
|
30930
31054
|
:example:
|
30931
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31055
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
|
30932
31056
|
"""
|
30933
31057
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30934
31058
|
required_arguments = []
|
@@ -31025,7 +31149,7 @@ class DatabaseClient(object):
|
|
31025
31149
|
:rtype: :class:`~oci.response.Response`
|
31026
31150
|
|
31027
31151
|
:example:
|
31028
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31152
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
31029
31153
|
"""
|
31030
31154
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31031
31155
|
required_arguments = ['dbSystemId']
|
@@ -31133,7 +31257,7 @@ class DatabaseClient(object):
|
|
31133
31257
|
:rtype: :class:`~oci.response.Response`
|
31134
31258
|
|
31135
31259
|
:example:
|
31136
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31260
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
|
31137
31261
|
"""
|
31138
31262
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31139
31263
|
required_arguments = ['dbSystemId']
|
@@ -31244,7 +31368,7 @@ class DatabaseClient(object):
|
|
31244
31368
|
:rtype: :class:`~oci.response.Response`
|
31245
31369
|
|
31246
31370
|
:example:
|
31247
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31371
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
|
31248
31372
|
"""
|
31249
31373
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31250
31374
|
required_arguments = ['compartmentId']
|
@@ -31350,7 +31474,7 @@ class DatabaseClient(object):
|
|
31350
31474
|
:rtype: :class:`~oci.response.Response`
|
31351
31475
|
|
31352
31476
|
:example:
|
31353
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
|
31354
31478
|
"""
|
31355
31479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31356
31480
|
required_arguments = ['storageManagement']
|
@@ -31486,7 +31610,7 @@ class DatabaseClient(object):
|
|
31486
31610
|
:rtype: :class:`~oci.response.Response`
|
31487
31611
|
|
31488
31612
|
:example:
|
31489
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31613
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
31490
31614
|
"""
|
31491
31615
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31492
31616
|
required_arguments = ['dbSystemId']
|
@@ -31633,7 +31757,7 @@ class DatabaseClient(object):
|
|
31633
31757
|
:rtype: :class:`~oci.response.Response`
|
31634
31758
|
|
31635
31759
|
:example:
|
31636
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31760
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_system_upgrades.py.html>`__ to see an example of how to use list_db_system_upgrades API.
|
31637
31761
|
"""
|
31638
31762
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31639
31763
|
required_arguments = ['dbSystemId']
|
@@ -31776,7 +31900,7 @@ class DatabaseClient(object):
|
|
31776
31900
|
:rtype: :class:`~oci.response.Response`
|
31777
31901
|
|
31778
31902
|
:example:
|
31779
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31903
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
|
31780
31904
|
"""
|
31781
31905
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31782
31906
|
required_arguments = ['compartmentId']
|
@@ -31927,7 +32051,7 @@ class DatabaseClient(object):
|
|
31927
32051
|
:rtype: :class:`~oci.response.Response`
|
31928
32052
|
|
31929
32053
|
:example:
|
31930
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32054
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
|
31931
32055
|
"""
|
31932
32056
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31933
32057
|
required_arguments = ['compartmentId']
|
@@ -32068,7 +32192,7 @@ class DatabaseClient(object):
|
|
32068
32192
|
:rtype: :class:`~oci.response.Response`
|
32069
32193
|
|
32070
32194
|
:example:
|
32071
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32195
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
|
32072
32196
|
"""
|
32073
32197
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32074
32198
|
required_arguments = ['compartmentId']
|
@@ -32215,7 +32339,7 @@ class DatabaseClient(object):
|
|
32215
32339
|
:rtype: :class:`~oci.response.Response`
|
32216
32340
|
|
32217
32341
|
:example:
|
32218
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32342
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
32219
32343
|
"""
|
32220
32344
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32221
32345
|
required_arguments = ['exadbVmClusterId']
|
@@ -32346,7 +32470,7 @@ class DatabaseClient(object):
|
|
32346
32470
|
:rtype: :class:`~oci.response.Response`
|
32347
32471
|
|
32348
32472
|
:example:
|
32349
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32473
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
|
32350
32474
|
"""
|
32351
32475
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32352
32476
|
required_arguments = ['exadbVmClusterId']
|
@@ -32495,7 +32619,7 @@ class DatabaseClient(object):
|
|
32495
32619
|
:rtype: :class:`~oci.response.Response`
|
32496
32620
|
|
32497
32621
|
:example:
|
32498
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32622
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
|
32499
32623
|
"""
|
32500
32624
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32501
32625
|
required_arguments = ['compartmentId']
|
@@ -32655,7 +32779,7 @@ class DatabaseClient(object):
|
|
32655
32779
|
:rtype: :class:`~oci.response.Response`
|
32656
32780
|
|
32657
32781
|
:example:
|
32658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32782
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
|
32659
32783
|
"""
|
32660
32784
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32661
32785
|
required_arguments = ['compartmentId']
|
@@ -32812,7 +32936,7 @@ class DatabaseClient(object):
|
|
32812
32936
|
:rtype: :class:`~oci.response.Response`
|
32813
32937
|
|
32814
32938
|
:example:
|
32815
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32939
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
|
32816
32940
|
"""
|
32817
32941
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32818
32942
|
required_arguments = ['compartmentId']
|
@@ -32967,7 +33091,7 @@ class DatabaseClient(object):
|
|
32967
33091
|
:rtype: :class:`~oci.response.Response`
|
32968
33092
|
|
32969
33093
|
:example:
|
32970
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33094
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
|
32971
33095
|
"""
|
32972
33096
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32973
33097
|
required_arguments = ['compartmentId']
|
@@ -33122,7 +33246,7 @@ class DatabaseClient(object):
|
|
33122
33246
|
:rtype: :class:`~oci.response.Response`
|
33123
33247
|
|
33124
33248
|
:example:
|
33125
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
|
33126
33250
|
"""
|
33127
33251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33128
33252
|
required_arguments = ['compartmentId']
|
@@ -33280,7 +33404,7 @@ class DatabaseClient(object):
|
|
33280
33404
|
:rtype: :class:`~oci.response.Response`
|
33281
33405
|
|
33282
33406
|
:example:
|
33283
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33407
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
|
33284
33408
|
"""
|
33285
33409
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33286
33410
|
required_arguments = ['compartmentId', 'externalDatabaseId']
|
@@ -33434,7 +33558,7 @@ class DatabaseClient(object):
|
|
33434
33558
|
:rtype: :class:`~oci.response.Response`
|
33435
33559
|
|
33436
33560
|
:example:
|
33437
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
|
33438
33562
|
"""
|
33439
33563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33440
33564
|
required_arguments = ['compartmentId']
|
@@ -33593,7 +33717,7 @@ class DatabaseClient(object):
|
|
33593
33717
|
:rtype: :class:`~oci.response.Response`
|
33594
33718
|
|
33595
33719
|
:example:
|
33596
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33720
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
|
33597
33721
|
"""
|
33598
33722
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33599
33723
|
required_arguments = ['compartmentId']
|
@@ -33740,7 +33864,7 @@ class DatabaseClient(object):
|
|
33740
33864
|
:rtype: :class:`~oci.response.Response`
|
33741
33865
|
|
33742
33866
|
:example:
|
33743
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33867
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
|
33744
33868
|
"""
|
33745
33869
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33746
33870
|
required_arguments = ['compartmentId']
|
@@ -33889,7 +34013,7 @@ class DatabaseClient(object):
|
|
33889
34013
|
:rtype: :class:`~oci.response.Response`
|
33890
34014
|
|
33891
34015
|
:example:
|
33892
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34016
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
|
33893
34017
|
"""
|
33894
34018
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33895
34019
|
required_arguments = ['version']
|
@@ -34049,7 +34173,7 @@ class DatabaseClient(object):
|
|
34049
34173
|
:rtype: :class:`~oci.response.Response`
|
34050
34174
|
|
34051
34175
|
:example:
|
34052
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
|
34053
34177
|
"""
|
34054
34178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34055
34179
|
required_arguments = ['compartmentId']
|
@@ -34164,7 +34288,7 @@ class DatabaseClient(object):
|
|
34164
34288
|
:rtype: :class:`~oci.response.Response`
|
34165
34289
|
|
34166
34290
|
:example:
|
34167
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34291
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
|
34168
34292
|
"""
|
34169
34293
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34170
34294
|
required_arguments = ['compartmentId']
|
@@ -34302,7 +34426,7 @@ class DatabaseClient(object):
|
|
34302
34426
|
:rtype: :class:`~oci.response.Response`
|
34303
34427
|
|
34304
34428
|
:example:
|
34305
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34429
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
|
34306
34430
|
"""
|
34307
34431
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34308
34432
|
required_arguments = ['compartmentId']
|
@@ -34498,7 +34622,7 @@ class DatabaseClient(object):
|
|
34498
34622
|
:rtype: :class:`~oci.response.Response`
|
34499
34623
|
|
34500
34624
|
:example:
|
34501
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34625
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
|
34502
34626
|
"""
|
34503
34627
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34504
34628
|
required_arguments = ['compartmentId']
|
@@ -34676,7 +34800,7 @@ class DatabaseClient(object):
|
|
34676
34800
|
:rtype: :class:`~oci.response.Response`
|
34677
34801
|
|
34678
34802
|
:example:
|
34679
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34803
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
|
34680
34804
|
"""
|
34681
34805
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34682
34806
|
required_arguments = ['compartmentId']
|
@@ -34808,7 +34932,7 @@ class DatabaseClient(object):
|
|
34808
34932
|
:rtype: :class:`~oci.response.Response`
|
34809
34933
|
|
34810
34934
|
:example:
|
34811
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34935
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
|
34812
34936
|
"""
|
34813
34937
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34814
34938
|
required_arguments = ['type']
|
@@ -34937,7 +35061,7 @@ class DatabaseClient(object):
|
|
34937
35061
|
:rtype: :class:`~oci.response.Response`
|
34938
35062
|
|
34939
35063
|
:example:
|
34940
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35064
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
|
34941
35065
|
"""
|
34942
35066
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34943
35067
|
required_arguments = ['databaseId']
|
@@ -35107,7 +35231,7 @@ class DatabaseClient(object):
|
|
35107
35231
|
:rtype: :class:`~oci.response.Response`
|
35108
35232
|
|
35109
35233
|
:example:
|
35110
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35234
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
|
35111
35235
|
"""
|
35112
35236
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35113
35237
|
required_arguments = []
|
@@ -35249,7 +35373,7 @@ class DatabaseClient(object):
|
|
35249
35373
|
:rtype: :class:`~oci.response.Response`
|
35250
35374
|
|
35251
35375
|
:example:
|
35252
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35376
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
|
35253
35377
|
"""
|
35254
35378
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35255
35379
|
required_arguments = ['schedulingPolicyId', 'schedulingPolicyTargetResourceId', 'planIntent']
|
@@ -35336,6 +35460,120 @@ class DatabaseClient(object):
|
|
35336
35460
|
api_reference_link=api_reference_link,
|
35337
35461
|
required_arguments=required_arguments)
|
35338
35462
|
|
35463
|
+
def list_resource_pool_members(self, autonomous_database_id, **kwargs):
|
35464
|
+
"""
|
35465
|
+
Lists the OCIDs of the Autonomous Database resource pool members for the specified Autonomous Database leader.
|
35466
|
+
|
35467
|
+
|
35468
|
+
:param str autonomous_database_id: (required)
|
35469
|
+
The database `OCID`__.
|
35470
|
+
|
35471
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
35472
|
+
|
35473
|
+
:param str opc_request_id: (optional)
|
35474
|
+
Unique identifier for the request.
|
35475
|
+
|
35476
|
+
:param int limit: (optional)
|
35477
|
+
The maximum number of items to return per page.
|
35478
|
+
|
35479
|
+
:param str page: (optional)
|
35480
|
+
The pagination token to continue listing from.
|
35481
|
+
|
35482
|
+
:param obj retry_strategy: (optional)
|
35483
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
35484
|
+
|
35485
|
+
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.
|
35486
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
35487
|
+
|
35488
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
35489
|
+
|
35490
|
+
:param bool allow_control_chars: (optional)
|
35491
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
35492
|
+
By default, the response will not allow control characters in strings
|
35493
|
+
|
35494
|
+
:return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ResourcePoolMemberCollection`
|
35495
|
+
:rtype: :class:`~oci.response.Response`
|
35496
|
+
|
35497
|
+
:example:
|
35498
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_resource_pool_members.py.html>`__ to see an example of how to use list_resource_pool_members API.
|
35499
|
+
"""
|
35500
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35501
|
+
required_arguments = ['autonomousDatabaseId']
|
35502
|
+
resource_path = "/autonomousDatabases/{autonomousDatabaseId}/resourcePoolMembers"
|
35503
|
+
method = "GET"
|
35504
|
+
operation_name = "list_resource_pool_members"
|
35505
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/AutonomousDatabase/ListResourcePoolMembers"
|
35506
|
+
|
35507
|
+
# Don't accept unknown kwargs
|
35508
|
+
expected_kwargs = [
|
35509
|
+
"allow_control_chars",
|
35510
|
+
"retry_strategy",
|
35511
|
+
"opc_request_id",
|
35512
|
+
"limit",
|
35513
|
+
"page"
|
35514
|
+
]
|
35515
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
35516
|
+
if extra_kwargs:
|
35517
|
+
raise ValueError(
|
35518
|
+
f"list_resource_pool_members got unknown kwargs: {extra_kwargs!r}")
|
35519
|
+
|
35520
|
+
path_params = {
|
35521
|
+
"autonomousDatabaseId": autonomous_database_id
|
35522
|
+
}
|
35523
|
+
|
35524
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
35525
|
+
|
35526
|
+
for (k, v) in six.iteritems(path_params):
|
35527
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
35528
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
35529
|
+
|
35530
|
+
query_params = {
|
35531
|
+
"limit": kwargs.get("limit", missing),
|
35532
|
+
"page": kwargs.get("page", missing)
|
35533
|
+
}
|
35534
|
+
query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
|
35535
|
+
|
35536
|
+
header_params = {
|
35537
|
+
"accept": "application/json",
|
35538
|
+
"content-type": "application/json",
|
35539
|
+
"opc-request-id": kwargs.get("opc_request_id", missing)
|
35540
|
+
}
|
35541
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
35542
|
+
|
35543
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
35544
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
35545
|
+
client_retry_strategy=self.retry_strategy
|
35546
|
+
)
|
35547
|
+
|
35548
|
+
if retry_strategy:
|
35549
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
35550
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
35551
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
35552
|
+
return retry_strategy.make_retrying_call(
|
35553
|
+
self.base_client.call_api,
|
35554
|
+
resource_path=resource_path,
|
35555
|
+
method=method,
|
35556
|
+
path_params=path_params,
|
35557
|
+
query_params=query_params,
|
35558
|
+
header_params=header_params,
|
35559
|
+
response_type="ResourcePoolMemberCollection",
|
35560
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
35561
|
+
operation_name=operation_name,
|
35562
|
+
api_reference_link=api_reference_link,
|
35563
|
+
required_arguments=required_arguments)
|
35564
|
+
else:
|
35565
|
+
return self.base_client.call_api(
|
35566
|
+
resource_path=resource_path,
|
35567
|
+
method=method,
|
35568
|
+
path_params=path_params,
|
35569
|
+
query_params=query_params,
|
35570
|
+
header_params=header_params,
|
35571
|
+
response_type="ResourcePoolMemberCollection",
|
35572
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
35573
|
+
operation_name=operation_name,
|
35574
|
+
api_reference_link=api_reference_link,
|
35575
|
+
required_arguments=required_arguments)
|
35576
|
+
|
35339
35577
|
def list_scheduled_actions(self, compartment_id, **kwargs):
|
35340
35578
|
"""
|
35341
35579
|
Lists the Scheduled Action resources in the specified compartment.
|
@@ -35398,7 +35636,7 @@ class DatabaseClient(object):
|
|
35398
35636
|
:rtype: :class:`~oci.response.Response`
|
35399
35637
|
|
35400
35638
|
:example:
|
35401
|
-
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.155.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
|
35402
35640
|
"""
|
35403
35641
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35404
35642
|
required_arguments = ['compartmentId']
|
@@ -35563,7 +35801,7 @@ class DatabaseClient(object):
|
|
35563
35801
|
:rtype: :class:`~oci.response.Response`
|
35564
35802
|
|
35565
35803
|
:example:
|
35566
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35804
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
|
35567
35805
|
"""
|
35568
35806
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35569
35807
|
required_arguments = ['compartmentId']
|
@@ -35719,7 +35957,7 @@ class DatabaseClient(object):
|
|
35719
35957
|
:rtype: :class:`~oci.response.Response`
|
35720
35958
|
|
35721
35959
|
:example:
|
35722
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35960
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
|
35723
35961
|
"""
|
35724
35962
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35725
35963
|
required_arguments = ['compartmentId']
|
@@ -35874,7 +36112,7 @@ class DatabaseClient(object):
|
|
35874
36112
|
:rtype: :class:`~oci.response.Response`
|
35875
36113
|
|
35876
36114
|
:example:
|
35877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36115
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
|
35878
36116
|
"""
|
35879
36117
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35880
36118
|
required_arguments = ['schedulingPolicyId']
|
@@ -36039,7 +36277,7 @@ class DatabaseClient(object):
|
|
36039
36277
|
:rtype: :class:`~oci.response.Response`
|
36040
36278
|
|
36041
36279
|
:example:
|
36042
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_system_version_minor_versions.py.html>`__ to see an example of how to use list_system_version_minor_versions API.
|
36043
36281
|
"""
|
36044
36282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36045
36283
|
required_arguments = ['majorVersion', 'compartmentId', 'giVersion']
|
@@ -36187,7 +36425,7 @@ class DatabaseClient(object):
|
|
36187
36425
|
:rtype: :class:`~oci.response.Response`
|
36188
36426
|
|
36189
36427
|
:example:
|
36190
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36428
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
|
36191
36429
|
"""
|
36192
36430
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36193
36431
|
required_arguments = ['compartmentId', 'giVersion']
|
@@ -36329,7 +36567,7 @@ class DatabaseClient(object):
|
|
36329
36567
|
:rtype: :class:`~oci.response.Response`
|
36330
36568
|
|
36331
36569
|
:example:
|
36332
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36570
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
|
36333
36571
|
"""
|
36334
36572
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36335
36573
|
required_arguments = ['exadataInfrastructureId', 'compartmentId']
|
@@ -36470,7 +36708,7 @@ class DatabaseClient(object):
|
|
36470
36708
|
:rtype: :class:`~oci.response.Response`
|
36471
36709
|
|
36472
36710
|
:example:
|
36473
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
36474
36712
|
"""
|
36475
36713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36476
36714
|
required_arguments = ['vmClusterId']
|
@@ -36578,7 +36816,7 @@ class DatabaseClient(object):
|
|
36578
36816
|
:rtype: :class:`~oci.response.Response`
|
36579
36817
|
|
36580
36818
|
:example:
|
36581
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36819
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
|
36582
36820
|
"""
|
36583
36821
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36584
36822
|
required_arguments = ['vmClusterId']
|
@@ -36699,7 +36937,7 @@ class DatabaseClient(object):
|
|
36699
36937
|
:rtype: :class:`~oci.response.Response`
|
36700
36938
|
|
36701
36939
|
:example:
|
36702
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36940
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
36703
36941
|
"""
|
36704
36942
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36705
36943
|
required_arguments = ['vmClusterId']
|
@@ -36841,7 +37079,7 @@ class DatabaseClient(object):
|
|
36841
37079
|
:rtype: :class:`~oci.response.Response`
|
36842
37080
|
|
36843
37081
|
:example:
|
36844
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37082
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
|
36845
37083
|
"""
|
36846
37084
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36847
37085
|
required_arguments = ['vmClusterId']
|
@@ -37000,7 +37238,7 @@ class DatabaseClient(object):
|
|
37000
37238
|
:rtype: :class:`~oci.response.Response`
|
37001
37239
|
|
37002
37240
|
:example:
|
37003
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37241
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
|
37004
37242
|
"""
|
37005
37243
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37006
37244
|
required_arguments = ['compartmentId']
|
@@ -37153,7 +37391,7 @@ class DatabaseClient(object):
|
|
37153
37391
|
:rtype: :class:`~oci.response.Response`
|
37154
37392
|
|
37155
37393
|
:example:
|
37156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
|
37157
37395
|
"""
|
37158
37396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37159
37397
|
required_arguments = ['pluggableDatabaseId']
|
@@ -37268,7 +37506,7 @@ class DatabaseClient(object):
|
|
37268
37506
|
:rtype: :class:`~oci.response.Response`
|
37269
37507
|
|
37270
37508
|
:example:
|
37271
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37509
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/migrate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use migrate_autonomous_container_database_dataguard_association API.
|
37272
37510
|
"""
|
37273
37511
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37274
37512
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -37388,7 +37626,7 @@ class DatabaseClient(object):
|
|
37388
37626
|
:rtype: :class:`~oci.response.Response`
|
37389
37627
|
|
37390
37628
|
:example:
|
37391
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37629
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/migrate_data_guard_association_to_multi_data_guards.py.html>`__ to see an example of how to use migrate_data_guard_association_to_multi_data_guards API.
|
37392
37630
|
"""
|
37393
37631
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37394
37632
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -37507,7 +37745,7 @@ class DatabaseClient(object):
|
|
37507
37745
|
:rtype: :class:`~oci.response.Response`
|
37508
37746
|
|
37509
37747
|
:example:
|
37510
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37748
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
37511
37749
|
"""
|
37512
37750
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37513
37751
|
required_arguments = ['dbSystemId']
|
@@ -37627,7 +37865,7 @@ class DatabaseClient(object):
|
|
37627
37865
|
:rtype: :class:`~oci.response.Response`
|
37628
37866
|
|
37629
37867
|
:example:
|
37630
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37868
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
|
37631
37869
|
"""
|
37632
37870
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37633
37871
|
required_arguments = ['databaseId']
|
@@ -37747,7 +37985,7 @@ class DatabaseClient(object):
|
|
37747
37985
|
:rtype: :class:`~oci.response.Response`
|
37748
37986
|
|
37749
37987
|
:example:
|
37750
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37988
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
|
37751
37989
|
"""
|
37752
37990
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37753
37991
|
required_arguments = ['databaseId']
|
@@ -37867,7 +38105,7 @@ class DatabaseClient(object):
|
|
37867
38105
|
:rtype: :class:`~oci.response.Response`
|
37868
38106
|
|
37869
38107
|
:example:
|
37870
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38108
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
|
37871
38109
|
"""
|
37872
38110
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37873
38111
|
required_arguments = ['pluggableDatabaseId']
|
@@ -37987,7 +38225,7 @@ class DatabaseClient(object):
|
|
37987
38225
|
:rtype: :class:`~oci.response.Response`
|
37988
38226
|
|
37989
38227
|
:example:
|
37990
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38228
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
|
37991
38229
|
"""
|
37992
38230
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37993
38231
|
required_arguments = ['executionActionId']
|
@@ -38104,7 +38342,7 @@ class DatabaseClient(object):
|
|
38104
38342
|
:rtype: :class:`~oci.response.Response`
|
38105
38343
|
|
38106
38344
|
:example:
|
38107
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38345
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
|
38108
38346
|
"""
|
38109
38347
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38110
38348
|
required_arguments = ['pluggableDatabaseId']
|
@@ -38214,7 +38452,7 @@ class DatabaseClient(object):
|
|
38214
38452
|
:rtype: :class:`~oci.response.Response`
|
38215
38453
|
|
38216
38454
|
:example:
|
38217
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38455
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
|
38218
38456
|
"""
|
38219
38457
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38220
38458
|
required_arguments = ['autonomousDatabaseId']
|
@@ -38286,6 +38524,124 @@ class DatabaseClient(object):
|
|
38286
38524
|
api_reference_link=api_reference_link,
|
38287
38525
|
required_arguments=required_arguments)
|
38288
38526
|
|
38527
|
+
def register_cloud_vm_cluster_pkcs(self, cloud_vm_cluster_id, register_cloud_vm_cluster_pkcs_details, **kwargs):
|
38528
|
+
"""
|
38529
|
+
Install the PKCS11 driver for given keystore type
|
38530
|
+
|
38531
|
+
|
38532
|
+
:param str cloud_vm_cluster_id: (required)
|
38533
|
+
The cloud VM cluster `OCID`__.
|
38534
|
+
|
38535
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
38536
|
+
|
38537
|
+
:param oci.database.models.RegisterCloudVmClusterPkcsDetails register_cloud_vm_cluster_pkcs_details: (required)
|
38538
|
+
Details of registering PKCS11 driver.
|
38539
|
+
|
38540
|
+
:param str opc_retry_token: (optional)
|
38541
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
38542
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
38543
|
+
hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
38544
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
38545
|
+
may be rejected).
|
38546
|
+
|
38547
|
+
:param str opc_request_id: (optional)
|
38548
|
+
Unique identifier for the request.
|
38549
|
+
|
38550
|
+
:param str if_match: (optional)
|
38551
|
+
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
38552
|
+
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
38553
|
+
will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
38554
|
+
|
38555
|
+
:param obj retry_strategy: (optional)
|
38556
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
38557
|
+
|
38558
|
+
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.
|
38559
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
38560
|
+
|
38561
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
38562
|
+
|
38563
|
+
:param bool allow_control_chars: (optional)
|
38564
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
38565
|
+
By default, the response will not allow control characters in strings
|
38566
|
+
|
38567
|
+
:return: A :class:`~oci.response.Response` object with data of type None
|
38568
|
+
:rtype: :class:`~oci.response.Response`
|
38569
|
+
|
38570
|
+
:example:
|
38571
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/register_cloud_vm_cluster_pkcs.py.html>`__ to see an example of how to use register_cloud_vm_cluster_pkcs API.
|
38572
|
+
"""
|
38573
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38574
|
+
required_arguments = ['cloudVmClusterId']
|
38575
|
+
resource_path = "/cloudVmClusters/{cloudVmClusterId}/actions/registerPkcs"
|
38576
|
+
method = "POST"
|
38577
|
+
operation_name = "register_cloud_vm_cluster_pkcs"
|
38578
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/CloudVmCluster/RegisterCloudVmClusterPkcs"
|
38579
|
+
|
38580
|
+
# Don't accept unknown kwargs
|
38581
|
+
expected_kwargs = [
|
38582
|
+
"allow_control_chars",
|
38583
|
+
"retry_strategy",
|
38584
|
+
"opc_retry_token",
|
38585
|
+
"opc_request_id",
|
38586
|
+
"if_match"
|
38587
|
+
]
|
38588
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
38589
|
+
if extra_kwargs:
|
38590
|
+
raise ValueError(
|
38591
|
+
f"register_cloud_vm_cluster_pkcs got unknown kwargs: {extra_kwargs!r}")
|
38592
|
+
|
38593
|
+
path_params = {
|
38594
|
+
"cloudVmClusterId": cloud_vm_cluster_id
|
38595
|
+
}
|
38596
|
+
|
38597
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
38598
|
+
|
38599
|
+
for (k, v) in six.iteritems(path_params):
|
38600
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
38601
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
38602
|
+
|
38603
|
+
header_params = {
|
38604
|
+
"accept": "application/json",
|
38605
|
+
"content-type": "application/json",
|
38606
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing),
|
38607
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
38608
|
+
"if-match": kwargs.get("if_match", missing)
|
38609
|
+
}
|
38610
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
38611
|
+
|
38612
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
38613
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
38614
|
+
client_retry_strategy=self.retry_strategy
|
38615
|
+
)
|
38616
|
+
|
38617
|
+
if retry_strategy:
|
38618
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
38619
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
38620
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
38621
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
38622
|
+
return retry_strategy.make_retrying_call(
|
38623
|
+
self.base_client.call_api,
|
38624
|
+
resource_path=resource_path,
|
38625
|
+
method=method,
|
38626
|
+
path_params=path_params,
|
38627
|
+
header_params=header_params,
|
38628
|
+
body=register_cloud_vm_cluster_pkcs_details,
|
38629
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
38630
|
+
operation_name=operation_name,
|
38631
|
+
api_reference_link=api_reference_link,
|
38632
|
+
required_arguments=required_arguments)
|
38633
|
+
else:
|
38634
|
+
return self.base_client.call_api(
|
38635
|
+
resource_path=resource_path,
|
38636
|
+
method=method,
|
38637
|
+
path_params=path_params,
|
38638
|
+
header_params=header_params,
|
38639
|
+
body=register_cloud_vm_cluster_pkcs_details,
|
38640
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
38641
|
+
operation_name=operation_name,
|
38642
|
+
api_reference_link=api_reference_link,
|
38643
|
+
required_arguments=required_arguments)
|
38644
|
+
|
38289
38645
|
def reinstate_autonomous_container_database_dataguard(self, autonomous_container_database_id, **kwargs):
|
38290
38646
|
"""
|
38291
38647
|
Reinstates a disabled standby Autonomous Container Database (ACD), identified by the autonomousContainerDatabaseId parameter to an active standby ACD. For more information, see
|
@@ -38323,7 +38679,7 @@ class DatabaseClient(object):
|
|
38323
38679
|
:rtype: :class:`~oci.response.Response`
|
38324
38680
|
|
38325
38681
|
:example:
|
38326
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/reinstate_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard API.
|
38327
38683
|
"""
|
38328
38684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38329
38685
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -38430,7 +38786,7 @@ class DatabaseClient(object):
|
|
38430
38786
|
:rtype: :class:`~oci.response.Response`
|
38431
38787
|
|
38432
38788
|
:example:
|
38433
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38789
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
38434
38790
|
"""
|
38435
38791
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38436
38792
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -38546,7 +38902,7 @@ class DatabaseClient(object):
|
|
38546
38902
|
:rtype: :class:`~oci.response.Response`
|
38547
38903
|
|
38548
38904
|
:example:
|
38549
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38905
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/reinstate_data_guard.py.html>`__ to see an example of how to use reinstate_data_guard API.
|
38550
38906
|
"""
|
38551
38907
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38552
38908
|
required_arguments = ['databaseId']
|
@@ -38661,7 +39017,7 @@ class DatabaseClient(object):
|
|
38661
39017
|
:rtype: :class:`~oci.response.Response`
|
38662
39018
|
|
38663
39019
|
:example:
|
38664
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39020
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
|
38665
39021
|
"""
|
38666
39022
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38667
39023
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -38779,7 +39135,7 @@ class DatabaseClient(object):
|
|
38779
39135
|
:rtype: :class:`~oci.response.Response`
|
38780
39136
|
|
38781
39137
|
:example:
|
38782
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39138
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
|
38783
39139
|
"""
|
38784
39140
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38785
39141
|
required_arguments = ['pluggableDatabaseId']
|
@@ -38899,7 +39255,7 @@ class DatabaseClient(object):
|
|
38899
39255
|
:rtype: :class:`~oci.response.Response`
|
38900
39256
|
|
38901
39257
|
:example:
|
38902
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39258
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
38903
39259
|
"""
|
38904
39260
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38905
39261
|
required_arguments = ['cloudVmClusterId']
|
@@ -39019,7 +39375,7 @@ class DatabaseClient(object):
|
|
39019
39375
|
:rtype: :class:`~oci.response.Response`
|
39020
39376
|
|
39021
39377
|
:example:
|
39022
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
39023
39379
|
"""
|
39024
39380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39025
39381
|
required_arguments = ['exadbVmClusterId']
|
@@ -39139,7 +39495,7 @@ class DatabaseClient(object):
|
|
39139
39495
|
:rtype: :class:`~oci.response.Response`
|
39140
39496
|
|
39141
39497
|
:example:
|
39142
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39498
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
39143
39499
|
"""
|
39144
39500
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39145
39501
|
required_arguments = ['vmClusterId']
|
@@ -39259,7 +39615,7 @@ class DatabaseClient(object):
|
|
39259
39615
|
:rtype: :class:`~oci.response.Response`
|
39260
39616
|
|
39261
39617
|
:example:
|
39262
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
|
39263
39619
|
"""
|
39264
39620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39265
39621
|
required_arguments = ['executionWindowId']
|
@@ -39379,7 +39735,7 @@ class DatabaseClient(object):
|
|
39379
39735
|
:rtype: :class:`~oci.response.Response`
|
39380
39736
|
|
39381
39737
|
:example:
|
39382
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39738
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
|
39383
39739
|
"""
|
39384
39740
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39385
39741
|
required_arguments = ['schedulingPlanId']
|
@@ -39505,7 +39861,7 @@ class DatabaseClient(object):
|
|
39505
39861
|
:rtype: :class:`~oci.response.Response`
|
39506
39862
|
|
39507
39863
|
:example:
|
39508
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39864
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
|
39509
39865
|
"""
|
39510
39866
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39511
39867
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -39624,7 +39980,7 @@ class DatabaseClient(object):
|
|
39624
39980
|
:rtype: :class:`~oci.response.Response`
|
39625
39981
|
|
39626
39982
|
:example:
|
39627
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39983
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
|
39628
39984
|
"""
|
39629
39985
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39630
39986
|
required_arguments = []
|
@@ -39730,7 +40086,7 @@ class DatabaseClient(object):
|
|
39730
40086
|
:rtype: :class:`~oci.response.Response`
|
39731
40087
|
|
39732
40088
|
:example:
|
39733
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40089
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
|
39734
40090
|
"""
|
39735
40091
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39736
40092
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -39836,7 +40192,7 @@ class DatabaseClient(object):
|
|
39836
40192
|
:rtype: :class:`~oci.response.Response`
|
39837
40193
|
|
39838
40194
|
:example:
|
39839
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40195
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
|
39840
40196
|
"""
|
39841
40197
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39842
40198
|
required_arguments = ['autonomousDatabaseId']
|
@@ -39945,7 +40301,7 @@ class DatabaseClient(object):
|
|
39945
40301
|
:rtype: :class:`~oci.response.Response`
|
39946
40302
|
|
39947
40303
|
:example:
|
39948
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40304
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
|
39949
40305
|
"""
|
39950
40306
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39951
40307
|
required_arguments = ['autonomousDatabaseId']
|
@@ -40052,7 +40408,7 @@ class DatabaseClient(object):
|
|
40052
40408
|
:rtype: :class:`~oci.response.Response`
|
40053
40409
|
|
40054
40410
|
:example:
|
40055
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
|
40056
40412
|
"""
|
40057
40413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40058
40414
|
required_arguments = ['databaseId']
|
@@ -40169,7 +40525,7 @@ class DatabaseClient(object):
|
|
40169
40525
|
:rtype: :class:`~oci.response.Response`
|
40170
40526
|
|
40171
40527
|
:example:
|
40172
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40528
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
40173
40529
|
"""
|
40174
40530
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40175
40531
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -40292,7 +40648,7 @@ class DatabaseClient(object):
|
|
40292
40648
|
:rtype: :class:`~oci.response.Response`
|
40293
40649
|
|
40294
40650
|
:example:
|
40295
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40651
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
|
40296
40652
|
"""
|
40297
40653
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40298
40654
|
required_arguments = ['autonomousDatabaseId']
|
@@ -40413,7 +40769,7 @@ class DatabaseClient(object):
|
|
40413
40769
|
:rtype: :class:`~oci.response.Response`
|
40414
40770
|
|
40415
40771
|
:example:
|
40416
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40772
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
40417
40773
|
"""
|
40418
40774
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40419
40775
|
required_arguments = ['autonomousVmClusterId']
|
@@ -40531,7 +40887,7 @@ class DatabaseClient(object):
|
|
40531
40887
|
:rtype: :class:`~oci.response.Response`
|
40532
40888
|
|
40533
40889
|
:example:
|
40534
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40890
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
40535
40891
|
"""
|
40536
40892
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40537
40893
|
required_arguments = ['autonomousVmClusterId']
|
@@ -40649,7 +41005,7 @@ class DatabaseClient(object):
|
|
40649
41005
|
:rtype: :class:`~oci.response.Response`
|
40650
41006
|
|
40651
41007
|
:example:
|
40652
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41008
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
40653
41009
|
"""
|
40654
41010
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40655
41011
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -40768,7 +41124,7 @@ class DatabaseClient(object):
|
|
40768
41124
|
:rtype: :class:`~oci.response.Response`
|
40769
41125
|
|
40770
41126
|
:example:
|
40771
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41127
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
40772
41128
|
"""
|
40773
41129
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40774
41130
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -40884,7 +41240,7 @@ class DatabaseClient(object):
|
|
40884
41240
|
:rtype: :class:`~oci.response.Response`
|
40885
41241
|
|
40886
41242
|
:example:
|
40887
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41243
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
|
40888
41244
|
"""
|
40889
41245
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40890
41246
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -40997,7 +41353,7 @@ class DatabaseClient(object):
|
|
40997
41353
|
:rtype: :class:`~oci.response.Response`
|
40998
41354
|
|
40999
41355
|
:example:
|
41000
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41356
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
|
41001
41357
|
"""
|
41002
41358
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41003
41359
|
required_arguments = ['pluggableDatabaseId']
|
@@ -41110,7 +41466,7 @@ class DatabaseClient(object):
|
|
41110
41466
|
:rtype: :class:`~oci.response.Response`
|
41111
41467
|
|
41112
41468
|
:example:
|
41113
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41469
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
|
41114
41470
|
"""
|
41115
41471
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41116
41472
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -41225,7 +41581,7 @@ class DatabaseClient(object):
|
|
41225
41581
|
:rtype: :class:`~oci.response.Response`
|
41226
41582
|
|
41227
41583
|
:example:
|
41228
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41584
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
|
41229
41585
|
"""
|
41230
41586
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41231
41587
|
required_arguments = ['databaseId']
|
@@ -41328,7 +41684,7 @@ class DatabaseClient(object):
|
|
41328
41684
|
:rtype: :class:`~oci.response.Response`
|
41329
41685
|
|
41330
41686
|
:example:
|
41331
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41687
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
|
41332
41688
|
"""
|
41333
41689
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41334
41690
|
required_arguments = ['autonomousDatabaseId']
|
@@ -41440,7 +41796,7 @@ class DatabaseClient(object):
|
|
41440
41796
|
:rtype: :class:`~oci.response.Response`
|
41441
41797
|
|
41442
41798
|
:example:
|
41443
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41799
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
41444
41800
|
"""
|
41445
41801
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41446
41802
|
required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
|
@@ -41563,7 +41919,7 @@ class DatabaseClient(object):
|
|
41563
41919
|
:rtype: :class:`~oci.response.Response`
|
41564
41920
|
|
41565
41921
|
:example:
|
41566
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41922
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
|
41567
41923
|
"""
|
41568
41924
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41569
41925
|
required_arguments = ['databaseId']
|
@@ -41685,7 +42041,7 @@ class DatabaseClient(object):
|
|
41685
42041
|
:rtype: :class:`~oci.response.Response`
|
41686
42042
|
|
41687
42043
|
:example:
|
41688
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42044
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
|
41689
42045
|
"""
|
41690
42046
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41691
42047
|
required_arguments = ['pluggableDatabaseId']
|
@@ -41796,7 +42152,7 @@ class DatabaseClient(object):
|
|
41796
42152
|
:rtype: :class:`~oci.response.Response`
|
41797
42153
|
|
41798
42154
|
:example:
|
41799
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42155
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
|
41800
42156
|
"""
|
41801
42157
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41802
42158
|
required_arguments = ['autonomousDatabaseId']
|
@@ -41902,7 +42258,7 @@ class DatabaseClient(object):
|
|
41902
42258
|
:rtype: :class:`~oci.response.Response`
|
41903
42259
|
|
41904
42260
|
:example:
|
41905
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42261
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
|
41906
42262
|
"""
|
41907
42263
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41908
42264
|
required_arguments = ['autonomousDatabaseId']
|
@@ -42014,7 +42370,7 @@ class DatabaseClient(object):
|
|
42014
42370
|
:rtype: :class:`~oci.response.Response`
|
42015
42371
|
|
42016
42372
|
:example:
|
42017
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42373
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
|
42018
42374
|
"""
|
42019
42375
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42020
42376
|
required_arguments = ['pluggableDatabaseId']
|
@@ -42126,7 +42482,7 @@ class DatabaseClient(object):
|
|
42126
42482
|
:rtype: :class:`~oci.response.Response`
|
42127
42483
|
|
42128
42484
|
:example:
|
42129
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
|
42130
42486
|
"""
|
42131
42487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42132
42488
|
required_arguments = ['autonomousDatabaseId']
|
@@ -42240,7 +42596,7 @@ class DatabaseClient(object):
|
|
42240
42596
|
:rtype: :class:`~oci.response.Response`
|
42241
42597
|
|
42242
42598
|
:example:
|
42243
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42599
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
|
42244
42600
|
"""
|
42245
42601
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42246
42602
|
required_arguments = ['pluggableDatabaseId']
|
@@ -42363,7 +42719,7 @@ class DatabaseClient(object):
|
|
42363
42719
|
:rtype: :class:`~oci.response.Response`
|
42364
42720
|
|
42365
42721
|
:example:
|
42366
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42722
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/switch_over_data_guard.py.html>`__ to see an example of how to use switch_over_data_guard API.
|
42367
42723
|
"""
|
42368
42724
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42369
42725
|
required_arguments = ['databaseId']
|
@@ -42476,7 +42832,7 @@ class DatabaseClient(object):
|
|
42476
42832
|
:rtype: :class:`~oci.response.Response`
|
42477
42833
|
|
42478
42834
|
:example:
|
42479
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42835
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/switchover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard API.
|
42480
42836
|
"""
|
42481
42837
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42482
42838
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -42585,7 +42941,7 @@ class DatabaseClient(object):
|
|
42585
42941
|
:rtype: :class:`~oci.response.Response`
|
42586
42942
|
|
42587
42943
|
:example:
|
42588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
42589
42945
|
"""
|
42590
42946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42591
42947
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -42708,7 +43064,7 @@ class DatabaseClient(object):
|
|
42708
43064
|
:rtype: :class:`~oci.response.Response`
|
42709
43065
|
|
42710
43066
|
:example:
|
42711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43067
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
|
42712
43068
|
"""
|
42713
43069
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42714
43070
|
required_arguments = ['autonomousDatabaseId']
|
@@ -42834,7 +43190,7 @@ class DatabaseClient(object):
|
|
42834
43190
|
:rtype: :class:`~oci.response.Response`
|
42835
43191
|
|
42836
43192
|
:example:
|
42837
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43193
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
|
42838
43194
|
"""
|
42839
43195
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42840
43196
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -42937,7 +43293,7 @@ class DatabaseClient(object):
|
|
42937
43293
|
:rtype: :class:`~oci.response.Response`
|
42938
43294
|
|
42939
43295
|
:example:
|
42940
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43296
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
|
42941
43297
|
"""
|
42942
43298
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42943
43299
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -43035,7 +43391,7 @@ class DatabaseClient(object):
|
|
43035
43391
|
:rtype: :class:`~oci.response.Response`
|
43036
43392
|
|
43037
43393
|
:example:
|
43038
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
|
43039
43395
|
"""
|
43040
43396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43041
43397
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -43140,7 +43496,7 @@ class DatabaseClient(object):
|
|
43140
43496
|
:rtype: :class:`~oci.response.Response`
|
43141
43497
|
|
43142
43498
|
:example:
|
43143
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43499
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
|
43144
43500
|
"""
|
43145
43501
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43146
43502
|
required_arguments = ['dbSystemId']
|
@@ -43207,6 +43563,124 @@ class DatabaseClient(object):
|
|
43207
43563
|
api_reference_link=api_reference_link,
|
43208
43564
|
required_arguments=required_arguments)
|
43209
43565
|
|
43566
|
+
def unregister_cloud_vm_cluster_pkcs(self, cloud_vm_cluster_id, unregister_cloud_vm_cluster_pkcs_details, **kwargs):
|
43567
|
+
"""
|
43568
|
+
Uninstall the PKCS11 driver for given keystore type
|
43569
|
+
|
43570
|
+
|
43571
|
+
:param str cloud_vm_cluster_id: (required)
|
43572
|
+
The cloud VM cluster `OCID`__.
|
43573
|
+
|
43574
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
43575
|
+
|
43576
|
+
:param oci.database.models.UnregisterCloudVmClusterPkcsDetails unregister_cloud_vm_cluster_pkcs_details: (required)
|
43577
|
+
Details of registering PKCS11 driver.
|
43578
|
+
|
43579
|
+
:param str opc_retry_token: (optional)
|
43580
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
43581
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
43582
|
+
hours, but can be invalidated before then due to conflicting operations (for example, if a resource
|
43583
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
43584
|
+
may be rejected).
|
43585
|
+
|
43586
|
+
:param str opc_request_id: (optional)
|
43587
|
+
Unique identifier for the request.
|
43588
|
+
|
43589
|
+
:param str if_match: (optional)
|
43590
|
+
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
43591
|
+
parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
43592
|
+
will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
43593
|
+
|
43594
|
+
:param obj retry_strategy: (optional)
|
43595
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
43596
|
+
|
43597
|
+
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.
|
43598
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
43599
|
+
|
43600
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
43601
|
+
|
43602
|
+
:param bool allow_control_chars: (optional)
|
43603
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
43604
|
+
By default, the response will not allow control characters in strings
|
43605
|
+
|
43606
|
+
:return: A :class:`~oci.response.Response` object with data of type None
|
43607
|
+
:rtype: :class:`~oci.response.Response`
|
43608
|
+
|
43609
|
+
:example:
|
43610
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/unregister_cloud_vm_cluster_pkcs.py.html>`__ to see an example of how to use unregister_cloud_vm_cluster_pkcs API.
|
43611
|
+
"""
|
43612
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43613
|
+
required_arguments = ['cloudVmClusterId']
|
43614
|
+
resource_path = "/cloudVmClusters/{cloudVmClusterId}/actions/unregisterPkcs"
|
43615
|
+
method = "POST"
|
43616
|
+
operation_name = "unregister_cloud_vm_cluster_pkcs"
|
43617
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/CloudVmCluster/UnregisterCloudVmClusterPkcs"
|
43618
|
+
|
43619
|
+
# Don't accept unknown kwargs
|
43620
|
+
expected_kwargs = [
|
43621
|
+
"allow_control_chars",
|
43622
|
+
"retry_strategy",
|
43623
|
+
"opc_retry_token",
|
43624
|
+
"opc_request_id",
|
43625
|
+
"if_match"
|
43626
|
+
]
|
43627
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
43628
|
+
if extra_kwargs:
|
43629
|
+
raise ValueError(
|
43630
|
+
f"unregister_cloud_vm_cluster_pkcs got unknown kwargs: {extra_kwargs!r}")
|
43631
|
+
|
43632
|
+
path_params = {
|
43633
|
+
"cloudVmClusterId": cloud_vm_cluster_id
|
43634
|
+
}
|
43635
|
+
|
43636
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
43637
|
+
|
43638
|
+
for (k, v) in six.iteritems(path_params):
|
43639
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
43640
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
43641
|
+
|
43642
|
+
header_params = {
|
43643
|
+
"accept": "application/json",
|
43644
|
+
"content-type": "application/json",
|
43645
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing),
|
43646
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
43647
|
+
"if-match": kwargs.get("if_match", missing)
|
43648
|
+
}
|
43649
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
43650
|
+
|
43651
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
43652
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
43653
|
+
client_retry_strategy=self.retry_strategy
|
43654
|
+
)
|
43655
|
+
|
43656
|
+
if retry_strategy:
|
43657
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
43658
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
43659
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
43660
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
43661
|
+
return retry_strategy.make_retrying_call(
|
43662
|
+
self.base_client.call_api,
|
43663
|
+
resource_path=resource_path,
|
43664
|
+
method=method,
|
43665
|
+
path_params=path_params,
|
43666
|
+
header_params=header_params,
|
43667
|
+
body=unregister_cloud_vm_cluster_pkcs_details,
|
43668
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
43669
|
+
operation_name=operation_name,
|
43670
|
+
api_reference_link=api_reference_link,
|
43671
|
+
required_arguments=required_arguments)
|
43672
|
+
else:
|
43673
|
+
return self.base_client.call_api(
|
43674
|
+
resource_path=resource_path,
|
43675
|
+
method=method,
|
43676
|
+
path_params=path_params,
|
43677
|
+
header_params=header_params,
|
43678
|
+
body=unregister_cloud_vm_cluster_pkcs_details,
|
43679
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
43680
|
+
operation_name=operation_name,
|
43681
|
+
api_reference_link=api_reference_link,
|
43682
|
+
required_arguments=required_arguments)
|
43683
|
+
|
43210
43684
|
def update_autonomous_container_database(self, autonomous_container_database_id, update_autonomous_container_database_details, **kwargs):
|
43211
43685
|
"""
|
43212
43686
|
Updates the properties of an Autonomous Container Database, such as display name, maintenance preference, backup retention, and tags.
|
@@ -43241,7 +43715,7 @@ class DatabaseClient(object):
|
|
43241
43715
|
:rtype: :class:`~oci.response.Response`
|
43242
43716
|
|
43243
43717
|
:example:
|
43244
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43718
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
|
43245
43719
|
"""
|
43246
43720
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43247
43721
|
required_arguments = ['autonomousContainerDatabaseId']
|
@@ -43354,7 +43828,7 @@ class DatabaseClient(object):
|
|
43354
43828
|
:rtype: :class:`~oci.response.Response`
|
43355
43829
|
|
43356
43830
|
:example:
|
43357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43831
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
43358
43832
|
"""
|
43359
43833
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43360
43834
|
required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
|
@@ -43469,7 +43943,7 @@ class DatabaseClient(object):
|
|
43469
43943
|
:rtype: :class:`~oci.response.Response`
|
43470
43944
|
|
43471
43945
|
:example:
|
43472
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
43946
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
|
43473
43947
|
"""
|
43474
43948
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43475
43949
|
required_arguments = ['autonomousDatabaseId']
|
@@ -43585,7 +44059,7 @@ class DatabaseClient(object):
|
|
43585
44059
|
:rtype: :class:`~oci.response.Response`
|
43586
44060
|
|
43587
44061
|
:example:
|
43588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44062
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
|
43589
44063
|
"""
|
43590
44064
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43591
44065
|
required_arguments = ['autonomousDatabaseBackupId']
|
@@ -43691,7 +44165,7 @@ class DatabaseClient(object):
|
|
43691
44165
|
:rtype: :class:`~oci.response.Response`
|
43692
44166
|
|
43693
44167
|
:example:
|
43694
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44168
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
|
43695
44169
|
"""
|
43696
44170
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43697
44171
|
required_arguments = []
|
@@ -43787,7 +44261,7 @@ class DatabaseClient(object):
|
|
43787
44261
|
:rtype: :class:`~oci.response.Response`
|
43788
44262
|
|
43789
44263
|
:example:
|
43790
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44264
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
|
43791
44265
|
"""
|
43792
44266
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43793
44267
|
required_arguments = ['autonomousDatabaseSoftwareImageId']
|
@@ -43896,7 +44370,7 @@ class DatabaseClient(object):
|
|
43896
44370
|
:rtype: :class:`~oci.response.Response`
|
43897
44371
|
|
43898
44372
|
:example:
|
43899
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44373
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
|
43900
44374
|
"""
|
43901
44375
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
43902
44376
|
required_arguments = ['autonomousDatabaseId']
|
@@ -44001,7 +44475,7 @@ class DatabaseClient(object):
|
|
44001
44475
|
:rtype: :class:`~oci.response.Response`
|
44002
44476
|
|
44003
44477
|
:example:
|
44004
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
|
44005
44479
|
"""
|
44006
44480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44007
44481
|
required_arguments = ['autonomousExadataInfrastructureId']
|
@@ -44109,7 +44583,7 @@ class DatabaseClient(object):
|
|
44109
44583
|
:rtype: :class:`~oci.response.Response`
|
44110
44584
|
|
44111
44585
|
:example:
|
44112
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44586
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
|
44113
44587
|
"""
|
44114
44588
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44115
44589
|
required_arguments = ['autonomousVmClusterId']
|
@@ -44219,7 +44693,7 @@ class DatabaseClient(object):
|
|
44219
44693
|
:rtype: :class:`~oci.response.Response`
|
44220
44694
|
|
44221
44695
|
:example:
|
44222
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44696
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_backup.py.html>`__ to see an example of how to use update_backup API.
|
44223
44697
|
"""
|
44224
44698
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44225
44699
|
required_arguments = ['backupId']
|
@@ -44332,7 +44806,7 @@ class DatabaseClient(object):
|
|
44332
44806
|
:rtype: :class:`~oci.response.Response`
|
44333
44807
|
|
44334
44808
|
:example:
|
44335
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44809
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
|
44336
44810
|
"""
|
44337
44811
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44338
44812
|
required_arguments = ['backupDestinationId']
|
@@ -44426,6 +44900,10 @@ class DatabaseClient(object):
|
|
44426
44900
|
:param str opc_request_id: (optional)
|
44427
44901
|
Unique identifier for the request.
|
44428
44902
|
|
44903
|
+
:param bool opc_dry_run: (optional)
|
44904
|
+
Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually
|
44905
|
+
creating or updating a resource and is used only to perform validation on the submitted data.
|
44906
|
+
|
44429
44907
|
:param obj retry_strategy: (optional)
|
44430
44908
|
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
44431
44909
|
|
@@ -44442,7 +44920,7 @@ class DatabaseClient(object):
|
|
44442
44920
|
:rtype: :class:`~oci.response.Response`
|
44443
44921
|
|
44444
44922
|
:example:
|
44445
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
44923
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
|
44446
44924
|
"""
|
44447
44925
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44448
44926
|
required_arguments = ['cloudAutonomousVmClusterId']
|
@@ -44456,7 +44934,8 @@ class DatabaseClient(object):
|
|
44456
44934
|
"allow_control_chars",
|
44457
44935
|
"retry_strategy",
|
44458
44936
|
"if_match",
|
44459
|
-
"opc_request_id"
|
44937
|
+
"opc_request_id",
|
44938
|
+
"opc_dry_run"
|
44460
44939
|
]
|
44461
44940
|
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
44462
44941
|
if extra_kwargs:
|
@@ -44477,7 +44956,8 @@ class DatabaseClient(object):
|
|
44477
44956
|
"accept": "application/json",
|
44478
44957
|
"content-type": "application/json",
|
44479
44958
|
"if-match": kwargs.get("if_match", missing),
|
44480
|
-
"opc-request-id": kwargs.get("opc_request_id", missing)
|
44959
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
44960
|
+
"opc-dry-run": kwargs.get("opc_dry_run", missing)
|
44481
44961
|
}
|
44482
44962
|
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
44483
44963
|
|
@@ -44552,7 +45032,7 @@ class DatabaseClient(object):
|
|
44552
45032
|
:rtype: :class:`~oci.response.Response`
|
44553
45033
|
|
44554
45034
|
:example:
|
44555
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45035
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
|
44556
45036
|
"""
|
44557
45037
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44558
45038
|
required_arguments = ['cloudExadataInfrastructureId']
|
@@ -44662,7 +45142,7 @@ class DatabaseClient(object):
|
|
44662
45142
|
:rtype: :class:`~oci.response.Response`
|
44663
45143
|
|
44664
45144
|
:example:
|
44665
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45145
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
|
44666
45146
|
"""
|
44667
45147
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44668
45148
|
required_arguments = ['cloudVmClusterId']
|
@@ -44772,7 +45252,7 @@ class DatabaseClient(object):
|
|
44772
45252
|
:rtype: :class:`~oci.response.Response`
|
44773
45253
|
|
44774
45254
|
:example:
|
44775
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45255
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
44776
45256
|
"""
|
44777
45257
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44778
45258
|
required_arguments = ['cloudVmClusterId']
|
@@ -44885,7 +45365,7 @@ class DatabaseClient(object):
|
|
44885
45365
|
:rtype: :class:`~oci.response.Response`
|
44886
45366
|
|
44887
45367
|
:example:
|
44888
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45368
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
|
44889
45369
|
"""
|
44890
45370
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
44891
45371
|
required_arguments = ['dbNodeId', 'consoleConnectionId']
|
@@ -44999,7 +45479,7 @@ class DatabaseClient(object):
|
|
44999
45479
|
:rtype: :class:`~oci.response.Response`
|
45000
45480
|
|
45001
45481
|
:example:
|
45002
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45482
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
|
45003
45483
|
"""
|
45004
45484
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45005
45485
|
required_arguments = ['dbNodeId', 'consoleHistoryId']
|
@@ -45120,7 +45600,7 @@ class DatabaseClient(object):
|
|
45120
45600
|
:rtype: :class:`~oci.response.Response`
|
45121
45601
|
|
45122
45602
|
:example:
|
45123
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45603
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_data_guard.py.html>`__ to see an example of how to use update_data_guard API.
|
45124
45604
|
"""
|
45125
45605
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45126
45606
|
required_arguments = ['databaseId']
|
@@ -45238,7 +45718,7 @@ class DatabaseClient(object):
|
|
45238
45718
|
:rtype: :class:`~oci.response.Response`
|
45239
45719
|
|
45240
45720
|
:example:
|
45241
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
|
45242
45722
|
"""
|
45243
45723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45244
45724
|
required_arguments = ['databaseId', 'dataGuardAssociationId']
|
@@ -45346,7 +45826,7 @@ class DatabaseClient(object):
|
|
45346
45826
|
:rtype: :class:`~oci.response.Response`
|
45347
45827
|
|
45348
45828
|
:example:
|
45349
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45829
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
|
45350
45830
|
"""
|
45351
45831
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45352
45832
|
required_arguments = ['databaseId']
|
@@ -45451,7 +45931,7 @@ class DatabaseClient(object):
|
|
45451
45931
|
:rtype: :class:`~oci.response.Response`
|
45452
45932
|
|
45453
45933
|
:example:
|
45454
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
45934
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
|
45455
45935
|
"""
|
45456
45936
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45457
45937
|
required_arguments = ['databaseSoftwareImageId']
|
@@ -45556,7 +46036,7 @@ class DatabaseClient(object):
|
|
45556
46036
|
:rtype: :class:`~oci.response.Response`
|
45557
46037
|
|
45558
46038
|
:example:
|
45559
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46039
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
|
45560
46040
|
"""
|
45561
46041
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45562
46042
|
required_arguments = ['dbHomeId']
|
@@ -45664,7 +46144,7 @@ class DatabaseClient(object):
|
|
45664
46144
|
:rtype: :class:`~oci.response.Response`
|
45665
46145
|
|
45666
46146
|
:example:
|
45667
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46147
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
|
45668
46148
|
"""
|
45669
46149
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45670
46150
|
required_arguments = ['dbNodeId']
|
@@ -45778,7 +46258,7 @@ class DatabaseClient(object):
|
|
45778
46258
|
:rtype: :class:`~oci.response.Response`
|
45779
46259
|
|
45780
46260
|
:example:
|
45781
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46261
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
|
45782
46262
|
"""
|
45783
46263
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45784
46264
|
required_arguments = ['dbSystemId']
|
@@ -45887,7 +46367,7 @@ class DatabaseClient(object):
|
|
45887
46367
|
:rtype: :class:`~oci.response.Response`
|
45888
46368
|
|
45889
46369
|
:example:
|
45890
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46370
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
|
45891
46371
|
"""
|
45892
46372
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
45893
46373
|
required_arguments = ['exadataInfrastructureId']
|
@@ -46007,7 +46487,7 @@ class DatabaseClient(object):
|
|
46007
46487
|
:rtype: :class:`~oci.response.Response`
|
46008
46488
|
|
46009
46489
|
:example:
|
46010
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46490
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
|
46011
46491
|
"""
|
46012
46492
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46013
46493
|
required_arguments = ['dbSystemId']
|
@@ -46117,7 +46597,7 @@ class DatabaseClient(object):
|
|
46117
46597
|
:rtype: :class:`~oci.response.Response`
|
46118
46598
|
|
46119
46599
|
:example:
|
46120
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46600
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
|
46121
46601
|
"""
|
46122
46602
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46123
46603
|
required_arguments = ['exadbVmClusterId']
|
@@ -46227,7 +46707,7 @@ class DatabaseClient(object):
|
|
46227
46707
|
:rtype: :class:`~oci.response.Response`
|
46228
46708
|
|
46229
46709
|
:example:
|
46230
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46710
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
|
46231
46711
|
"""
|
46232
46712
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46233
46713
|
required_arguments = ['exascaleDbStorageVaultId']
|
@@ -46337,7 +46817,7 @@ class DatabaseClient(object):
|
|
46337
46817
|
:rtype: :class:`~oci.response.Response`
|
46338
46818
|
|
46339
46819
|
:example:
|
46340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46820
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
|
46341
46821
|
"""
|
46342
46822
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46343
46823
|
required_arguments = ['executionActionId']
|
@@ -46447,7 +46927,7 @@ class DatabaseClient(object):
|
|
46447
46927
|
:rtype: :class:`~oci.response.Response`
|
46448
46928
|
|
46449
46929
|
:example:
|
46450
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
46930
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
|
46451
46931
|
"""
|
46452
46932
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46453
46933
|
required_arguments = ['executionWindowId']
|
@@ -46560,7 +47040,7 @@ class DatabaseClient(object):
|
|
46560
47040
|
:rtype: :class:`~oci.response.Response`
|
46561
47041
|
|
46562
47042
|
:example:
|
46563
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47043
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
|
46564
47044
|
"""
|
46565
47045
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46566
47046
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -46671,7 +47151,7 @@ class DatabaseClient(object):
|
|
46671
47151
|
:rtype: :class:`~oci.response.Response`
|
46672
47152
|
|
46673
47153
|
:example:
|
46674
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47154
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
|
46675
47155
|
"""
|
46676
47156
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46677
47157
|
required_arguments = ['externalDatabaseConnectorId']
|
@@ -46781,7 +47261,7 @@ class DatabaseClient(object):
|
|
46781
47261
|
:rtype: :class:`~oci.response.Response`
|
46782
47262
|
|
46783
47263
|
:example:
|
46784
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47264
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
|
46785
47265
|
"""
|
46786
47266
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46787
47267
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -46893,7 +47373,7 @@ class DatabaseClient(object):
|
|
46893
47373
|
:rtype: :class:`~oci.response.Response`
|
46894
47374
|
|
46895
47375
|
:example:
|
46896
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47376
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
|
46897
47377
|
"""
|
46898
47378
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
46899
47379
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -47003,7 +47483,7 @@ class DatabaseClient(object):
|
|
47003
47483
|
:rtype: :class:`~oci.response.Response`
|
47004
47484
|
|
47005
47485
|
:example:
|
47006
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47486
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
|
47007
47487
|
"""
|
47008
47488
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47009
47489
|
required_arguments = ['keyStoreId']
|
@@ -47108,7 +47588,7 @@ class DatabaseClient(object):
|
|
47108
47588
|
:rtype: :class:`~oci.response.Response`
|
47109
47589
|
|
47110
47590
|
:example:
|
47111
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
|
47112
47592
|
"""
|
47113
47593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47114
47594
|
required_arguments = ['maintenanceRunId']
|
@@ -47216,7 +47696,7 @@ class DatabaseClient(object):
|
|
47216
47696
|
:rtype: :class:`~oci.response.Response`
|
47217
47697
|
|
47218
47698
|
:example:
|
47219
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47699
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
|
47220
47700
|
"""
|
47221
47701
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47222
47702
|
required_arguments = ['oneoffPatchId']
|
@@ -47323,7 +47803,7 @@ class DatabaseClient(object):
|
|
47323
47803
|
:rtype: :class:`~oci.response.Response`
|
47324
47804
|
|
47325
47805
|
:example:
|
47326
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47806
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
|
47327
47807
|
"""
|
47328
47808
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47329
47809
|
required_arguments = ['pluggableDatabaseId']
|
@@ -47431,7 +47911,7 @@ class DatabaseClient(object):
|
|
47431
47911
|
:rtype: :class:`~oci.response.Response`
|
47432
47912
|
|
47433
47913
|
:example:
|
47434
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
47914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
|
47435
47915
|
"""
|
47436
47916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47437
47917
|
required_arguments = ['scheduledActionId']
|
@@ -47541,7 +48021,7 @@ class DatabaseClient(object):
|
|
47541
48021
|
:rtype: :class:`~oci.response.Response`
|
47542
48022
|
|
47543
48023
|
:example:
|
47544
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
|
47545
48025
|
"""
|
47546
48026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47547
48027
|
required_arguments = ['schedulingPolicyId']
|
@@ -47656,7 +48136,7 @@ class DatabaseClient(object):
|
|
47656
48136
|
:rtype: :class:`~oci.response.Response`
|
47657
48137
|
|
47658
48138
|
:example:
|
47659
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48139
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
|
47660
48140
|
"""
|
47661
48141
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47662
48142
|
required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
|
@@ -47767,7 +48247,7 @@ class DatabaseClient(object):
|
|
47767
48247
|
:rtype: :class:`~oci.response.Response`
|
47768
48248
|
|
47769
48249
|
:example:
|
47770
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48250
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
|
47771
48251
|
"""
|
47772
48252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47773
48253
|
required_arguments = ['vmClusterId']
|
@@ -47883,7 +48363,7 @@ class DatabaseClient(object):
|
|
47883
48363
|
:rtype: :class:`~oci.response.Response`
|
47884
48364
|
|
47885
48365
|
:example:
|
47886
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48366
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
|
47887
48367
|
"""
|
47888
48368
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
47889
48369
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|
@@ -47994,7 +48474,7 @@ class DatabaseClient(object):
|
|
47994
48474
|
:rtype: :class:`~oci.response.Response`
|
47995
48475
|
|
47996
48476
|
:example:
|
47997
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
|
47998
48478
|
"""
|
47999
48479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
48000
48480
|
required_arguments = ['databaseId']
|
@@ -48111,7 +48591,7 @@ class DatabaseClient(object):
|
|
48111
48591
|
:rtype: :class:`~oci.response.Response`
|
48112
48592
|
|
48113
48593
|
:example:
|
48114
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48594
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
|
48115
48595
|
"""
|
48116
48596
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
48117
48597
|
required_arguments = ['dbSystemId']
|
@@ -48228,7 +48708,7 @@ class DatabaseClient(object):
|
|
48228
48708
|
:rtype: :class:`~oci.response.Response`
|
48229
48709
|
|
48230
48710
|
:example:
|
48231
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
48711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
|
48232
48712
|
"""
|
48233
48713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
48234
48714
|
required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
|