oci 2.136.0__py3-none-any.whl → 2.137.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/_vendor/jwt/__init__.py +65 -26
- oci/_vendor/jwt/algorithms.py +404 -130
- oci/_vendor/jwt/api_jwk.py +108 -0
- oci/_vendor/jwt/api_jws.py +153 -106
- oci/_vendor/jwt/api_jwt.py +146 -137
- oci/_vendor/jwt/exceptions.py +13 -6
- oci/_vendor/jwt/help.py +16 -15
- oci/_vendor/jwt/jwks_client.py +64 -0
- oci/_vendor/jwt/utils.py +101 -54
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +25 -25
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +9 -9
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/attributes_client.py +8 -8
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/auth/security_token_container.py +1 -1
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +72 -72
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +8 -8
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +160 -14
- oci/cloud_bridge/inventory_client.py +20 -20
- oci/cloud_bridge/models/__init__.py +48 -2
- oci/cloud_bridge/models/asset.py +19 -3
- oci/cloud_bridge/models/asset_source.py +11 -3
- oci/cloud_bridge/models/asset_source_credentials.py +17 -7
- oci/cloud_bridge/models/asset_source_summary.py +11 -3
- oci/cloud_bridge/models/asset_summary.py +11 -3
- oci/cloud_bridge/models/aws_asset_source.py +359 -0
- oci/cloud_bridge/models/aws_asset_source_summary.py +205 -0
- oci/cloud_bridge/models/aws_ebs_asset.py +170 -0
- oci/cloud_bridge/models/aws_ebs_properties.py +382 -0
- oci/cloud_bridge/models/aws_ec2_asset.py +278 -0
- oci/cloud_bridge/models/aws_ec2_properties.py +1056 -0
- oci/cloud_bridge/models/create_asset_details.py +19 -3
- oci/cloud_bridge/models/create_asset_source_details.py +11 -3
- oci/cloud_bridge/models/create_aws_asset_source_details.py +323 -0
- oci/cloud_bridge/models/create_aws_ebs_asset_details.py +134 -0
- oci/cloud_bridge/models/create_aws_ec2_asset_details.py +242 -0
- oci/cloud_bridge/models/create_vm_ware_asset_source_details.py +2 -2
- oci/cloud_bridge/models/create_vmware_vm_asset_details.py +5 -5
- oci/cloud_bridge/models/group_identifier.py +103 -0
- oci/cloud_bridge/models/import_inventory_via_assets_details.py +13 -5
- oci/cloud_bridge/models/instance_network_interface.py +498 -0
- oci/cloud_bridge/models/instance_network_interface_association.py +196 -0
- oci/cloud_bridge/models/instance_network_interface_attachment.py +227 -0
- oci/cloud_bridge/models/instance_private_ip_address.py +161 -0
- oci/cloud_bridge/models/instance_state.py +103 -0
- oci/cloud_bridge/models/monthly_cost_summary.py +103 -0
- oci/cloud_bridge/models/placement.py +289 -0
- oci/cloud_bridge/models/supported_cloud_region_collection.py +72 -0
- oci/cloud_bridge/models/supported_cloud_region_summary.py +244 -0
- oci/cloud_bridge/models/tag.py +103 -0
- oci/cloud_bridge/models/update_asset_details.py +19 -3
- oci/cloud_bridge/models/update_asset_source_details.py +47 -4
- oci/cloud_bridge/models/update_aws_asset_source_details.py +240 -0
- oci/cloud_bridge/models/update_aws_ebs_asset_details.py +106 -0
- oci/cloud_bridge/models/update_aws_ec2_asset_details.py +214 -0
- oci/cloud_bridge/models/update_vm_asset_details.py +1 -1
- oci/cloud_bridge/models/update_vm_ware_asset_source_details.py +11 -39
- oci/cloud_bridge/models/update_vmware_vm_asset_details.py +1 -1
- oci/cloud_bridge/models/vm_asset.py +3 -3
- oci/cloud_bridge/models/vm_ware_asset_source.py +2 -2
- oci/cloud_bridge/models/vm_ware_asset_source_summary.py +2 -2
- oci/cloud_bridge/models/vmware_vm_asset.py +5 -5
- oci/cloud_bridge/models/volume_attachment.py +196 -0
- oci/cloud_bridge/models/work_request.py +15 -3
- oci/cloud_bridge/models/work_request_summary.py +15 -3
- oci/cloud_bridge/ocb_agent_svc_client.py +22 -138
- oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py +0 -48
- 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 +88 -88
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +102 -102
- oci/core/compute_management_client.py +32 -32
- oci/core/models/__init__.py +2 -0
- oci/core/models/virtual_circuit.py +29 -2
- oci/core/models/virtual_circuit_redundancy_metadata.py +202 -0
- oci/core/virtual_network_client.py +247 -247
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +42 -42
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +292 -292
- oci/data_science/data_science_client.py +217 -93
- oci/data_science/data_science_client_composite_operations.py +41 -0
- oci/data_science/models/__init__.py +8 -0
- oci/data_science/models/backup_operation_details.py +154 -0
- oci/data_science/models/backup_setting.py +158 -0
- oci/data_science/models/create_model_details.py +56 -2
- oci/data_science/models/model.py +141 -2
- oci/data_science/models/model_summary.py +31 -0
- oci/data_science/models/retention_operation_details.py +267 -0
- oci/data_science/models/retention_setting.py +158 -0
- oci/data_science/models/update_model_details.py +56 -2
- oci/data_science/models/work_request.py +7 -3
- oci/data_science/models/work_request_summary.py +7 -3
- oci/database/database_client.py +396 -396
- oci/database/models/__init__.py +14 -0
- oci/database/models/autonomous_database.py +58 -0
- oci/database/models/autonomous_database_encryption_key_details.py +133 -0
- oci/database/models/autonomous_database_encryption_key_history_entry.py +99 -0
- oci/database/models/autonomous_database_summary.py +58 -0
- oci/database/models/aws_key_details.py +175 -0
- oci/database/models/azure_key_details.py +113 -0
- oci/database/models/create_autonomous_database_base.py +27 -0
- oci/database/models/create_autonomous_database_clone_details.py +7 -0
- oci/database/models/create_autonomous_database_details.py +7 -0
- oci/database/models/create_autonomous_database_from_backup_details.py +7 -0
- oci/database/models/create_autonomous_database_from_backup_timestamp_details.py +7 -0
- oci/database/models/create_cross_region_autonomous_database_data_guard_details.py +7 -0
- oci/database/models/create_cross_region_disaster_recovery_details.py +7 -0
- oci/database/models/create_cross_tenancy_disaster_recovery_details.py +7 -0
- oci/database/models/create_refreshable_autonomous_database_clone_details.py +7 -0
- oci/database/models/oci_key_details.py +119 -0
- oci/database/models/okv_key_details.py +206 -0
- oci/database/models/oracle_managed_key_details.py +51 -0
- oci/database/models/undelete_autonomous_database_details.py +7 -0
- oci/database/models/update_autonomous_database_details.py +29 -2
- oci/database_management/db_management_client.py +211 -211
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -7
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +42 -42
- oci/database_tools/database_tools_client.py +23 -23
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +29 -29
- 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 +3599 -1776
- oci/file_storage/file_storage_client_composite_operations.py +881 -223
- oci/file_storage/models/__init__.py +2 -0
- oci/file_storage/models/create_export_details.py +31 -0
- oci/file_storage/models/create_file_system_details.py +31 -0
- oci/file_storage/models/create_filesystem_snapshot_policy_details.py +33 -2
- oci/file_storage/models/create_ldap_bind_account_details.py +7 -0
- oci/file_storage/models/create_mount_target_details.py +31 -0
- oci/file_storage/models/create_outbound_connector_details.py +33 -2
- oci/file_storage/models/create_replication_details.py +33 -2
- oci/file_storage/models/create_snapshot_details.py +33 -2
- oci/file_storage/models/export.py +33 -2
- oci/file_storage/models/export_summary.py +33 -2
- oci/file_storage/models/file_system.py +31 -0
- oci/file_storage/models/file_system_summary.py +31 -0
- oci/file_storage/models/filesystem_snapshot_policy.py +31 -0
- oci/file_storage/models/filesystem_snapshot_policy_summary.py +31 -0
- oci/file_storage/models/ldap_bind_account.py +7 -0
- oci/file_storage/models/ldap_bind_account_summary.py +7 -0
- oci/file_storage/models/mount_target.py +31 -0
- oci/file_storage/models/mount_target_summary.py +31 -0
- oci/file_storage/models/outbound_connector.py +31 -0
- oci/file_storage/models/outbound_connector_summary.py +31 -0
- oci/file_storage/models/replication.py +31 -0
- oci/file_storage/models/replication_summary.py +31 -0
- oci/file_storage/models/resource_lock.py +185 -0
- oci/file_storage/models/snapshot.py +31 -0
- oci/file_storage/models/snapshot_summary.py +31 -0
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +2261 -294
- oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py +349 -1
- oci/fleet_apps_management/fleet_apps_management_client.py +141 -127
- oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +19 -15
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py +1 -1
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +2058 -363
- oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py +173 -0
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +1097 -260
- oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py +298 -0
- oci/fleet_apps_management/models/__init__.py +168 -0
- oci/fleet_apps_management/models/action_group.py +2 -2
- oci/fleet_apps_management/models/action_group_based_user_action_details.py +90 -0
- oci/fleet_apps_management/models/action_group_details.py +20 -16
- oci/fleet_apps_management/models/activity_resource_target.py +44 -7
- oci/fleet_apps_management/models/announcement_collection.py +1 -1
- oci/fleet_apps_management/models/announcement_summary.py +13 -13
- oci/fleet_apps_management/models/api_based_execution_details.py +1 -1
- oci/fleet_apps_management/models/artifact_details.py +109 -0
- oci/fleet_apps_management/models/associated_fleet_credential_details.py +1 -1
- oci/fleet_apps_management/models/associated_fleet_property_details.py +5 -5
- oci/fleet_apps_management/models/associated_fleet_resource_details.py +6 -6
- oci/fleet_apps_management/models/associated_local_task_details.py +64 -1
- oci/fleet_apps_management/models/associated_scheduler_definition.py +3 -3
- oci/fleet_apps_management/models/associated_shared_task_details.py +2 -1
- oci/fleet_apps_management/models/associations.py +32 -5
- oci/fleet_apps_management/models/check_resource_tagging_details.py +5 -5
- oci/fleet_apps_management/models/compliance_detail_policy.py +223 -0
- oci/fleet_apps_management/models/compliance_detail_product.py +134 -0
- oci/fleet_apps_management/models/compliance_detail_resource.py +196 -0
- oci/fleet_apps_management/models/compliance_detail_target.py +134 -0
- oci/fleet_apps_management/models/compliance_patch_detail.py +278 -0
- oci/fleet_apps_management/models/compliance_policy.py +439 -0
- oci/fleet_apps_management/models/compliance_policy_collection.py +72 -0
- oci/fleet_apps_management/models/compliance_policy_rule.py +618 -0
- oci/fleet_apps_management/models/compliance_policy_rule_collection.py +72 -0
- oci/fleet_apps_management/models/compliance_policy_rule_summary.py +585 -0
- oci/fleet_apps_management/models/compliance_policy_summary.py +406 -0
- oci/fleet_apps_management/models/compliance_record.py +457 -0
- oci/fleet_apps_management/models/compliance_record_aggregation.py +99 -0
- oci/fleet_apps_management/models/compliance_record_aggregation_collection.py +72 -0
- oci/fleet_apps_management/models/compliance_record_collection.py +72 -0
- oci/fleet_apps_management/models/compliance_record_dimension.py +143 -0
- oci/fleet_apps_management/models/compliance_record_summary.py +437 -0
- oci/fleet_apps_management/models/compliance_report.py +5 -5
- oci/fleet_apps_management/models/compliance_report_patch_detail.py +9 -9
- oci/fleet_apps_management/models/compliance_report_product.py +3 -3
- oci/fleet_apps_management/models/compliance_report_resource.py +8 -6
- oci/fleet_apps_management/models/compliance_report_target.py +7 -7
- oci/fleet_apps_management/models/component_properties.py +69 -9
- oci/fleet_apps_management/models/condition.py +12 -6
- oci/fleet_apps_management/models/config_association_details.py +109 -0
- oci/fleet_apps_management/models/config_category_details.py +133 -0
- oci/fleet_apps_management/models/confirm_targets_details.py +1 -1
- oci/fleet_apps_management/models/content_details.py +3 -3
- oci/fleet_apps_management/models/create_compliance_policy_rule_details.py +382 -0
- oci/fleet_apps_management/models/create_fleet_details.py +63 -16
- oci/fleet_apps_management/models/create_fleet_property_details.py +5 -5
- oci/fleet_apps_management/models/create_fleet_resource_details.py +1 -1
- oci/fleet_apps_management/models/create_maintenance_window_details.py +19 -11
- oci/fleet_apps_management/models/create_onboarding_details.py +8 -4
- oci/fleet_apps_management/models/create_patch_details.py +402 -0
- oci/fleet_apps_management/models/create_platform_configuration_details.py +169 -0
- oci/fleet_apps_management/models/create_property_details.py +6 -6
- oci/fleet_apps_management/models/create_runbook_details.py +441 -0
- oci/fleet_apps_management/models/create_task_record_details.py +235 -0
- oci/fleet_apps_management/models/credential_config_category_details.py +52 -0
- oci/fleet_apps_management/models/credential_details.py +3 -3
- oci/fleet_apps_management/models/credential_entity_specific_details.py +22 -6
- oci/{cloud_bridge/models/update_plugin_details.py → fleet_apps_management/models/dependent_patch_details.py} +21 -21
- oci/fleet_apps_management/models/details.py +67 -3
- oci/fleet_apps_management/models/discovered_target.py +6 -6
- oci/fleet_apps_management/models/enable_latest_policy_details.py +72 -0
- oci/fleet_apps_management/models/entity_execution_details.py +22 -16
- oci/fleet_apps_management/models/environment_config_category_details.py +53 -0
- oci/fleet_apps_management/models/execution.py +122 -21
- oci/fleet_apps_management/models/execution_collection.py +1 -1
- oci/fleet_apps_management/models/execution_details.py +1 -1
- oci/fleet_apps_management/models/execution_summary.py +123 -22
- oci/fleet_apps_management/models/execution_workflow_details.py +1 -1
- oci/fleet_apps_management/models/export_compliance_report_details.py +251 -0
- oci/fleet_apps_management/models/fleet.py +37 -19
- oci/fleet_apps_management/models/fleet_credential.py +1 -1
- oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py +82 -0
- oci/fleet_apps_management/models/fleet_product_summary.py +3 -3
- oci/fleet_apps_management/models/fleet_property.py +11 -11
- oci/fleet_apps_management/models/fleet_property_collection.py +3 -3
- oci/fleet_apps_management/models/fleet_property_summary.py +6 -6
- oci/fleet_apps_management/models/fleet_resource.py +21 -15
- oci/fleet_apps_management/models/fleet_resource_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_resource_summary.py +20 -14
- oci/fleet_apps_management/models/fleet_summary.py +15 -5
- oci/fleet_apps_management/models/fleet_target.py +98 -5
- oci/fleet_apps_management/models/fleet_target_summary.py +98 -5
- oci/fleet_apps_management/models/generate_compliance_report_details.py +5 -3
- oci/fleet_apps_management/models/generic_artifact.py +68 -0
- oci/fleet_apps_management/models/generic_artifact_details.py +78 -0
- oci/fleet_apps_management/models/group.py +11 -5
- oci/fleet_apps_management/models/input_argument.py +2 -2
- oci/fleet_apps_management/models/inventory_resource_summary.py +6 -6
- oci/fleet_apps_management/models/job_activity.py +57 -18
- oci/fleet_apps_management/models/key_encryption_credential_details.py +5 -5
- oci/fleet_apps_management/models/maintenance_window.py +19 -11
- oci/fleet_apps_management/models/maintenance_window_collection.py +1 -1
- oci/fleet_apps_management/models/maintenance_window_summary.py +18 -10
- oci/fleet_apps_management/models/manage_job_execution_details.py +68 -0
- oci/fleet_apps_management/models/manage_settings_details.py +72 -0
- oci/fleet_apps_management/models/managed_entity_aggregation.py +99 -0
- oci/fleet_apps_management/models/managed_entity_aggregation_collection.py +72 -0
- oci/fleet_apps_management/models/managed_entity_dimension.py +88 -0
- oci/fleet_apps_management/models/model_property.py +9 -9
- oci/fleet_apps_management/models/notification_preferences.py +7 -5
- oci/fleet_apps_management/models/object_storage_bucket_content_details.py +3 -3
- oci/fleet_apps_management/models/onboarding.py +70 -7
- oci/fleet_apps_management/models/onboarding_collection.py +3 -3
- oci/fleet_apps_management/models/onboarding_policy_collection.py +3 -3
- oci/fleet_apps_management/models/onboarding_policy_summary.py +1 -1
- oci/fleet_apps_management/models/onboarding_summary.py +69 -7
- oci/fleet_apps_management/models/outcome.py +7 -7
- oci/fleet_apps_management/models/output_variable_details.py +2 -2
- oci/fleet_apps_management/models/output_variable_input_argument.py +1 -1
- oci/fleet_apps_management/models/output_variable_mapping.py +4 -3
- oci/fleet_apps_management/models/patch.py +704 -0
- oci/fleet_apps_management/models/patch_collection.py +72 -0
- oci/fleet_apps_management/models/patch_level_selection_details.py +106 -0
- oci/fleet_apps_management/models/patch_name_selection_details.py +83 -0
- oci/fleet_apps_management/models/patch_product.py +103 -0
- oci/fleet_apps_management/models/patch_release_date_selection_details.py +83 -0
- oci/fleet_apps_management/models/patch_selection_details.py +117 -0
- oci/fleet_apps_management/models/patch_summary.py +625 -0
- oci/fleet_apps_management/models/patch_type.py +72 -0
- oci/fleet_apps_management/models/patch_type_config_category_details.py +52 -0
- oci/fleet_apps_management/models/pause_details.py +109 -0
- oci/fleet_apps_management/models/plain_text_credential_details.py +2 -2
- oci/fleet_apps_management/models/platform_configuration.py +529 -0
- oci/fleet_apps_management/models/platform_configuration_collection.py +72 -0
- oci/fleet_apps_management/models/platform_configuration_summary.py +485 -0
- oci/fleet_apps_management/models/platform_specific_artifact.py +162 -0
- oci/fleet_apps_management/models/platform_specific_artifact_details.py +82 -0
- oci/fleet_apps_management/models/preferences.py +3 -3
- oci/fleet_apps_management/models/product_config_category_details.py +215 -0
- oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py +182 -0
- oci/fleet_apps_management/models/product_stack_config_category_details.py +112 -0
- oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py +51 -0
- oci/fleet_apps_management/models/product_stack_sub_category_details.py +109 -0
- oci/fleet_apps_management/models/product_version_details.py +105 -0
- oci/fleet_apps_management/models/property_collection.py +3 -3
- oci/fleet_apps_management/models/property_summary.py +8 -8
- oci/fleet_apps_management/models/publish_runbook_details.py +72 -0
- oci/fleet_apps_management/models/request_resource_validation_details.py +5 -5
- oci/fleet_apps_management/models/request_target_discovery_details.py +5 -5
- oci/fleet_apps_management/models/resource_collection.py +72 -0
- oci/fleet_apps_management/models/resource_credential_entity_specific_details.py +82 -0
- oci/fleet_apps_management/models/resource_summary.py +347 -0
- oci/fleet_apps_management/models/resource_tag_check_details.py +3 -3
- oci/fleet_apps_management/models/resource_tag_enablement_info.py +3 -3
- oci/fleet_apps_management/models/rollback_workflow_details.py +119 -0
- oci/fleet_apps_management/models/rule.py +15 -7
- oci/fleet_apps_management/models/runbook.py +28 -9
- oci/fleet_apps_management/models/runbook_collection.py +1 -1
- oci/fleet_apps_management/models/runbook_summary.py +6 -4
- oci/fleet_apps_management/models/scheduler_definition.py +16 -16
- oci/fleet_apps_management/models/scheduler_job.py +24 -20
- oci/fleet_apps_management/models/scheduler_job_aggregation.py +99 -0
- oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py +72 -0
- oci/fleet_apps_management/models/scheduler_job_collection.py +1 -1
- oci/fleet_apps_management/models/scheduler_job_dimension.py +72 -0
- oci/fleet_apps_management/models/scheduler_job_summary.py +20 -16
- oci/fleet_apps_management/models/script_based_execution_details.py +38 -5
- oci/fleet_apps_management/models/selection_criteria.py +6 -3
- oci/fleet_apps_management/models/set_default_runbook_details.py +72 -0
- oci/fleet_apps_management/models/step_based_user_action_details.py +183 -0
- oci/fleet_apps_management/models/step_collection.py +72 -0
- oci/fleet_apps_management/models/step_summary.py +378 -0
- oci/fleet_apps_management/models/target_credential_entity_specific_details.py +6 -6
- oci/fleet_apps_management/models/target_resource.py +1 -1
- oci/fleet_apps_management/models/task_notification_preferences.py +134 -0
- oci/fleet_apps_management/models/task_record.py +1 -1
- oci/fleet_apps_management/models/task_variable.py +2 -1
- oci/fleet_apps_management/models/time_based_pause_details.py +82 -0
- oci/fleet_apps_management/models/update_compliance_policy_rule_details.py +283 -0
- oci/fleet_apps_management/models/update_fleet_details.py +4 -2
- oci/fleet_apps_management/models/update_fleet_property_details.py +3 -3
- oci/fleet_apps_management/models/update_fleet_resource_details.py +1 -1
- oci/fleet_apps_management/models/update_maintenance_window_details.py +18 -10
- oci/fleet_apps_management/models/update_onboarding_details.py +103 -0
- oci/fleet_apps_management/models/update_patch_details.py +369 -0
- oci/fleet_apps_management/models/update_platform_configuration_details.py +138 -0
- oci/fleet_apps_management/models/update_property_details.py +6 -6
- oci/fleet_apps_management/models/update_runbook_details.py +410 -0
- oci/fleet_apps_management/models/update_scheduler_job_details.py +3 -3
- oci/fleet_apps_management/models/update_task_record_details.py +204 -0
- oci/fleet_apps_management/models/user_action_based_pause_details.py +51 -0
- oci/fleet_apps_management/models/user_action_details.py +157 -0
- oci/fleet_apps_management/models/variable.py +103 -0
- oci/fleet_apps_management/models/work_request.py +67 -3
- oci/fleet_apps_management/models/work_request_summary.py +67 -3
- oci/fleet_apps_management/models/workflow_group.py +2 -2
- oci/fleet_apps_management/models/workflow_group_component.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai_agent/generative_ai_agent_client.py +33 -33
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +5 -5
- oci/generative_ai_inference/generative_ai_inference_client.py +4 -4
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +69 -69
- 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 +307 -307
- oci/identity_domains/models/auth_token.py +51 -0
- oci/identity_domains/models/customer_secret_key.py +45 -0
- oci/identity_domains/models/o_auth2_client_credential.py +49 -0
- oci/identity_domains/models/smtp_credential.py +47 -0
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +75 -75
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +193 -193
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +7 -7
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +86 -86
- oci/network_load_balancer/network_load_balancer_client.py +34 -34
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +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 +14 -14
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/models/__init__.py +8 -0
- oci/opsi/models/host_configuration_metric_group.py +11 -3
- oci/opsi/models/host_containers.py +65 -3
- oci/opsi/models/host_cpu_hardware_configuration.py +1 -1
- oci/opsi/models/host_cpu_statistics.py +1 -1
- oci/opsi/models/host_cpu_usage.py +1 -1
- oci/opsi/models/host_entities.py +1 -1
- oci/opsi/models/host_filesystem_configuration.py +1 -1
- oci/opsi/models/host_filesystem_usage.py +1 -1
- oci/opsi/models/host_gpu_configuration.py +1 -1
- oci/opsi/models/host_gpu_processes.py +1 -1
- oci/opsi/models/host_gpu_usage.py +1 -1
- oci/opsi/models/host_hardware_configuration.py +1 -1
- oci/opsi/models/host_io_statistics.py +160 -0
- oci/opsi/models/host_io_usage.py +1 -1
- oci/opsi/models/host_memory_configuration.py +1 -1
- oci/opsi/models/host_memory_statistics.py +1 -1
- oci/opsi/models/host_memory_usage.py +1 -1
- oci/opsi/models/host_network_activity_summary.py +1 -1
- oci/opsi/models/host_network_configuration.py +1 -1
- oci/opsi/models/host_network_statistics.py +1 -1
- oci/opsi/models/host_performance_metric_group.py +3 -11
- oci/opsi/models/host_product.py +1 -1
- oci/opsi/models/host_resource_allocation.py +1 -1
- oci/opsi/models/host_resource_statistics.py +11 -3
- oci/opsi/models/host_storage_statistics.py +1 -1
- oci/opsi/models/host_top_processes.py +1 -1
- oci/opsi/models/io_usage_trend.py +227 -0
- oci/opsi/models/io_usage_trend_aggregation.py +103 -0
- oci/opsi/models/summarize_host_insight_host_recommendation_aggregation.py +7 -3
- oci/opsi/models/summarize_host_insight_io_usage_trend_aggregation_collection.py +165 -0
- oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py +7 -3
- oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py +7 -3
- oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py +7 -3
- oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py +7 -3
- oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py +7 -3
- oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py +7 -3
- oci/opsi/operations_insights_client.py +362 -179
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +12 -12
- oci/os_management_hub/managed_instance_client.py +31 -31
- oci/os_management_hub/managed_instance_group_client.py +25 -25
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +6 -6
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +27 -27
- oci/os_management_hub/work_request_client.py +4 -4
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +33 -33
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/redis_cluster_client.py +12 -12
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +13 -13
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +48 -48
- oci/stack_monitoring/stack_monitoring_client.py +71 -71
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +13 -13
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/METADATA +1 -1
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/RECORD +613 -493
- oci/_vendor/jwt/__main__.py +0 -173
- oci/_vendor/jwt/compat.py +0 -73
- oci/_vendor/jwt/contrib/__init__.py +0 -0
- oci/_vendor/jwt/contrib/algorithms/__init__.py +0 -0
- oci/_vendor/jwt/contrib/algorithms/py_ecdsa.py +0 -60
- oci/_vendor/jwt/contrib/algorithms/pycrypto.py +0 -46
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/WHEEL +0 -0
- {oci-2.136.0.dist-info → oci-2.137.0.dist-info}/top_level.txt +0 -0
@@ -160,7 +160,7 @@ class DbManagementClient(object):
|
|
160
160
|
:rtype: :class:`~oci.response.Response`
|
161
161
|
|
162
162
|
:example:
|
163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
|
164
164
|
"""
|
165
165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
166
166
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -276,7 +276,7 @@ class DbManagementClient(object):
|
|
276
276
|
:rtype: :class:`~oci.response.Response`
|
277
277
|
|
278
278
|
:example:
|
279
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
279
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
|
280
280
|
"""
|
281
281
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
282
282
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -404,7 +404,7 @@ class DbManagementClient(object):
|
|
404
404
|
:rtype: :class:`~oci.response.Response`
|
405
405
|
|
406
406
|
:example:
|
407
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
407
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
|
408
408
|
"""
|
409
409
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
410
410
|
required_arguments = ['managedDatabaseId', 'timeStart', 'timeEnd']
|
@@ -556,7 +556,7 @@ class DbManagementClient(object):
|
|
556
556
|
:rtype: :class:`~oci.response.Response`
|
557
557
|
|
558
558
|
:example:
|
559
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
559
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
|
560
560
|
"""
|
561
561
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
562
562
|
required_arguments = ['managedDatabaseId']
|
@@ -676,7 +676,7 @@ class DbManagementClient(object):
|
|
676
676
|
:rtype: :class:`~oci.response.Response`
|
677
677
|
|
678
678
|
:example:
|
679
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
679
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
|
680
680
|
"""
|
681
681
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
682
682
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -798,7 +798,7 @@ class DbManagementClient(object):
|
|
798
798
|
:rtype: :class:`~oci.response.Response`
|
799
799
|
|
800
800
|
:example:
|
801
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
801
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
|
802
802
|
"""
|
803
803
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
804
804
|
required_arguments = ['externalDbSystemId']
|
@@ -920,7 +920,7 @@ class DbManagementClient(object):
|
|
920
920
|
:rtype: :class:`~oci.response.Response`
|
921
921
|
|
922
922
|
:example:
|
923
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
923
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
|
924
924
|
"""
|
925
925
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
926
926
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -1042,7 +1042,7 @@ class DbManagementClient(object):
|
|
1042
1042
|
:rtype: :class:`~oci.response.Response`
|
1043
1043
|
|
1044
1044
|
:example:
|
1045
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1045
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
|
1046
1046
|
"""
|
1047
1047
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1048
1048
|
required_arguments = ['jobId']
|
@@ -1166,7 +1166,7 @@ class DbManagementClient(object):
|
|
1166
1166
|
:rtype: :class:`~oci.response.Response`
|
1167
1167
|
|
1168
1168
|
:example:
|
1169
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1169
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
|
1170
1170
|
"""
|
1171
1171
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1172
1172
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -1290,7 +1290,7 @@ class DbManagementClient(object):
|
|
1290
1290
|
:rtype: :class:`~oci.response.Response`
|
1291
1291
|
|
1292
1292
|
:example:
|
1293
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1293
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
|
1294
1294
|
"""
|
1295
1295
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1296
1296
|
required_arguments = ['namedCredentialId']
|
@@ -1400,7 +1400,7 @@ class DbManagementClient(object):
|
|
1400
1400
|
:rtype: :class:`~oci.response.Response`
|
1401
1401
|
|
1402
1402
|
:example:
|
1403
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1403
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
|
1404
1404
|
"""
|
1405
1405
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1406
1406
|
required_arguments = ['managedDatabaseId']
|
@@ -1502,7 +1502,7 @@ class DbManagementClient(object):
|
|
1502
1502
|
:rtype: :class:`~oci.response.Response`
|
1503
1503
|
|
1504
1504
|
:example:
|
1505
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1505
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
|
1506
1506
|
"""
|
1507
1507
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1508
1508
|
required_arguments = ['managedDatabaseId']
|
@@ -1603,7 +1603,7 @@ class DbManagementClient(object):
|
|
1603
1603
|
:rtype: :class:`~oci.response.Response`
|
1604
1604
|
|
1605
1605
|
:example:
|
1606
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1606
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
|
1607
1607
|
"""
|
1608
1608
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1609
1609
|
required_arguments = ['managedDatabaseId']
|
@@ -1716,7 +1716,7 @@ class DbManagementClient(object):
|
|
1716
1716
|
:rtype: :class:`~oci.response.Response`
|
1717
1717
|
|
1718
1718
|
:example:
|
1719
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1719
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
|
1720
1720
|
"""
|
1721
1721
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1722
1722
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -1835,7 +1835,7 @@ class DbManagementClient(object):
|
|
1835
1835
|
:rtype: :class:`~oci.response.Response`
|
1836
1836
|
|
1837
1837
|
:example:
|
1838
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1838
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
|
1839
1839
|
"""
|
1840
1840
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1841
1841
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -1944,7 +1944,7 @@ class DbManagementClient(object):
|
|
1944
1944
|
:rtype: :class:`~oci.response.Response`
|
1945
1945
|
|
1946
1946
|
:example:
|
1947
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1947
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
|
1948
1948
|
"""
|
1949
1949
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1950
1950
|
required_arguments = ['managedDatabaseId']
|
@@ -2047,7 +2047,7 @@ class DbManagementClient(object):
|
|
2047
2047
|
:rtype: :class:`~oci.response.Response`
|
2048
2048
|
|
2049
2049
|
:example:
|
2050
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2050
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
|
2051
2051
|
"""
|
2052
2052
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2053
2053
|
required_arguments = ['managedDatabaseId']
|
@@ -2150,7 +2150,7 @@ class DbManagementClient(object):
|
|
2150
2150
|
:rtype: :class:`~oci.response.Response`
|
2151
2151
|
|
2152
2152
|
:example:
|
2153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2153
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
|
2154
2154
|
"""
|
2155
2155
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2156
2156
|
required_arguments = []
|
@@ -2246,7 +2246,7 @@ class DbManagementClient(object):
|
|
2246
2246
|
:rtype: :class:`~oci.response.Response`
|
2247
2247
|
|
2248
2248
|
:example:
|
2249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
|
2250
2250
|
"""
|
2251
2251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2252
2252
|
required_arguments = []
|
@@ -2344,7 +2344,7 @@ class DbManagementClient(object):
|
|
2344
2344
|
:rtype: :class:`~oci.response.Response`
|
2345
2345
|
|
2346
2346
|
:example:
|
2347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2347
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
|
2348
2348
|
"""
|
2349
2349
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2350
2350
|
required_arguments = []
|
@@ -2442,7 +2442,7 @@ class DbManagementClient(object):
|
|
2442
2442
|
:rtype: :class:`~oci.response.Response`
|
2443
2443
|
|
2444
2444
|
:example:
|
2445
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2445
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
|
2446
2446
|
"""
|
2447
2447
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2448
2448
|
required_arguments = []
|
@@ -2545,7 +2545,7 @@ class DbManagementClient(object):
|
|
2545
2545
|
:rtype: :class:`~oci.response.Response`
|
2546
2546
|
|
2547
2547
|
:example:
|
2548
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2548
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
|
2549
2549
|
"""
|
2550
2550
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2551
2551
|
required_arguments = []
|
@@ -2643,7 +2643,7 @@ class DbManagementClient(object):
|
|
2643
2643
|
:rtype: :class:`~oci.response.Response`
|
2644
2644
|
|
2645
2645
|
:example:
|
2646
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2646
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
|
2647
2647
|
"""
|
2648
2648
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2649
2649
|
required_arguments = []
|
@@ -2743,7 +2743,7 @@ class DbManagementClient(object):
|
|
2743
2743
|
:rtype: :class:`~oci.response.Response`
|
2744
2744
|
|
2745
2745
|
:example:
|
2746
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2746
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
|
2747
2747
|
"""
|
2748
2748
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2749
2749
|
required_arguments = []
|
@@ -2840,7 +2840,7 @@ class DbManagementClient(object):
|
|
2840
2840
|
:rtype: :class:`~oci.response.Response`
|
2841
2841
|
|
2842
2842
|
:example:
|
2843
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2843
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
|
2844
2844
|
"""
|
2845
2845
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2846
2846
|
required_arguments = []
|
@@ -2936,7 +2936,7 @@ class DbManagementClient(object):
|
|
2936
2936
|
:rtype: :class:`~oci.response.Response`
|
2937
2937
|
|
2938
2938
|
:example:
|
2939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2939
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
|
2940
2940
|
"""
|
2941
2941
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2942
2942
|
required_arguments = []
|
@@ -3037,7 +3037,7 @@ class DbManagementClient(object):
|
|
3037
3037
|
:rtype: :class:`~oci.response.Response`
|
3038
3038
|
|
3039
3039
|
:example:
|
3040
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3040
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
|
3041
3041
|
"""
|
3042
3042
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3043
3043
|
required_arguments = ['managedDatabaseId']
|
@@ -3147,7 +3147,7 @@ class DbManagementClient(object):
|
|
3147
3147
|
:rtype: :class:`~oci.response.Response`
|
3148
3148
|
|
3149
3149
|
:example:
|
3150
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3150
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
|
3151
3151
|
"""
|
3152
3152
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3153
3153
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -3252,7 +3252,7 @@ class DbManagementClient(object):
|
|
3252
3252
|
:rtype: :class:`~oci.response.Response`
|
3253
3253
|
|
3254
3254
|
:example:
|
3255
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3255
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
|
3256
3256
|
"""
|
3257
3257
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3258
3258
|
required_arguments = ['externalDbSystemId']
|
@@ -3357,7 +3357,7 @@ class DbManagementClient(object):
|
|
3357
3357
|
:rtype: :class:`~oci.response.Response`
|
3358
3358
|
|
3359
3359
|
:example:
|
3360
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3360
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
|
3361
3361
|
"""
|
3362
3362
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3363
3363
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -3462,7 +3462,7 @@ class DbManagementClient(object):
|
|
3462
3462
|
:rtype: :class:`~oci.response.Response`
|
3463
3463
|
|
3464
3464
|
:example:
|
3465
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3465
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
|
3466
3466
|
"""
|
3467
3467
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3468
3468
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -3567,7 +3567,7 @@ class DbManagementClient(object):
|
|
3567
3567
|
:rtype: :class:`~oci.response.Response`
|
3568
3568
|
|
3569
3569
|
:example:
|
3570
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3570
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
|
3571
3571
|
"""
|
3572
3572
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3573
3573
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -3672,7 +3672,7 @@ class DbManagementClient(object):
|
|
3672
3672
|
:rtype: :class:`~oci.response.Response`
|
3673
3673
|
|
3674
3674
|
:example:
|
3675
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3675
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
|
3676
3676
|
"""
|
3677
3677
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3678
3678
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -3775,7 +3775,7 @@ class DbManagementClient(object):
|
|
3775
3775
|
:rtype: :class:`~oci.response.Response`
|
3776
3776
|
|
3777
3777
|
:example:
|
3778
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3778
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
|
3779
3779
|
"""
|
3780
3780
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3781
3781
|
required_arguments = ['jobId']
|
@@ -3881,7 +3881,7 @@ class DbManagementClient(object):
|
|
3881
3881
|
:rtype: :class:`~oci.response.Response`
|
3882
3882
|
|
3883
3883
|
:example:
|
3884
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3884
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
|
3885
3885
|
"""
|
3886
3886
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3887
3887
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -3986,7 +3986,7 @@ class DbManagementClient(object):
|
|
3986
3986
|
:rtype: :class:`~oci.response.Response`
|
3987
3987
|
|
3988
3988
|
:example:
|
3989
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3989
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
|
3990
3990
|
"""
|
3991
3991
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3992
3992
|
required_arguments = ['namedCredentialId']
|
@@ -4087,7 +4087,7 @@ class DbManagementClient(object):
|
|
4087
4087
|
:rtype: :class:`~oci.response.Response`
|
4088
4088
|
|
4089
4089
|
:example:
|
4090
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4090
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
|
4091
4091
|
"""
|
4092
4092
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4093
4093
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -4187,7 +4187,7 @@ class DbManagementClient(object):
|
|
4187
4187
|
:rtype: :class:`~oci.response.Response`
|
4188
4188
|
|
4189
4189
|
:example:
|
4190
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4190
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
|
4191
4191
|
"""
|
4192
4192
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4193
4193
|
required_arguments = ['managedDatabaseId']
|
@@ -4291,7 +4291,7 @@ class DbManagementClient(object):
|
|
4291
4291
|
:rtype: :class:`~oci.response.Response`
|
4292
4292
|
|
4293
4293
|
:example:
|
4294
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4294
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
|
4295
4295
|
"""
|
4296
4296
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4297
4297
|
required_arguments = ['managedDatabaseId']
|
@@ -4406,7 +4406,7 @@ class DbManagementClient(object):
|
|
4406
4406
|
:rtype: :class:`~oci.response.Response`
|
4407
4407
|
|
4408
4408
|
:example:
|
4409
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4409
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
|
4410
4410
|
"""
|
4411
4411
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4412
4412
|
required_arguments = ['autonomousDatabaseId']
|
@@ -4528,7 +4528,7 @@ class DbManagementClient(object):
|
|
4528
4528
|
:rtype: :class:`~oci.response.Response`
|
4529
4529
|
|
4530
4530
|
:example:
|
4531
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4531
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
|
4532
4532
|
"""
|
4533
4533
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4534
4534
|
required_arguments = ['databaseId']
|
@@ -4650,7 +4650,7 @@ class DbManagementClient(object):
|
|
4650
4650
|
:rtype: :class:`~oci.response.Response`
|
4651
4651
|
|
4652
4652
|
:example:
|
4653
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4653
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
|
4654
4654
|
"""
|
4655
4655
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4656
4656
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -4770,7 +4770,7 @@ class DbManagementClient(object):
|
|
4770
4770
|
:rtype: :class:`~oci.response.Response`
|
4771
4771
|
|
4772
4772
|
:example:
|
4773
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4773
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
|
4774
4774
|
"""
|
4775
4775
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4776
4776
|
required_arguments = ['externalDbSystemId']
|
@@ -4888,7 +4888,7 @@ class DbManagementClient(object):
|
|
4888
4888
|
:rtype: :class:`~oci.response.Response`
|
4889
4889
|
|
4890
4890
|
:example:
|
4891
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4891
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
|
4892
4892
|
"""
|
4893
4893
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4894
4894
|
required_arguments = ['externalDbSystemId']
|
@@ -5012,7 +5012,7 @@ class DbManagementClient(object):
|
|
5012
5012
|
:rtype: :class:`~oci.response.Response`
|
5013
5013
|
|
5014
5014
|
:example:
|
5015
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5015
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
|
5016
5016
|
"""
|
5017
5017
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5018
5018
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -5132,7 +5132,7 @@ class DbManagementClient(object):
|
|
5132
5132
|
:rtype: :class:`~oci.response.Response`
|
5133
5133
|
|
5134
5134
|
:example:
|
5135
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5135
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
|
5136
5136
|
"""
|
5137
5137
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5138
5138
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -5254,7 +5254,7 @@ class DbManagementClient(object):
|
|
5254
5254
|
:rtype: :class:`~oci.response.Response`
|
5255
5255
|
|
5256
5256
|
:example:
|
5257
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5257
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
|
5258
5258
|
"""
|
5259
5259
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5260
5260
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -5365,7 +5365,7 @@ class DbManagementClient(object):
|
|
5365
5365
|
:rtype: :class:`~oci.response.Response`
|
5366
5366
|
|
5367
5367
|
:example:
|
5368
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5368
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
|
5369
5369
|
"""
|
5370
5370
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5371
5371
|
required_arguments = ['managedDatabaseId']
|
@@ -5480,7 +5480,7 @@ class DbManagementClient(object):
|
|
5480
5480
|
:rtype: :class:`~oci.response.Response`
|
5481
5481
|
|
5482
5482
|
:example:
|
5483
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5483
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
|
5484
5484
|
"""
|
5485
5485
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5486
5486
|
required_arguments = ['pluggableDatabaseId']
|
@@ -5590,7 +5590,7 @@ class DbManagementClient(object):
|
|
5590
5590
|
:rtype: :class:`~oci.response.Response`
|
5591
5591
|
|
5592
5592
|
:example:
|
5593
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5593
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
|
5594
5594
|
"""
|
5595
5595
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5596
5596
|
required_arguments = ['managedDatabaseId']
|
@@ -5718,7 +5718,7 @@ class DbManagementClient(object):
|
|
5718
5718
|
:rtype: :class:`~oci.response.Response`
|
5719
5719
|
|
5720
5720
|
:example:
|
5721
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
|
5722
5722
|
"""
|
5723
5723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5724
5724
|
required_arguments = []
|
@@ -5816,7 +5816,7 @@ class DbManagementClient(object):
|
|
5816
5816
|
:rtype: :class:`~oci.response.Response`
|
5817
5817
|
|
5818
5818
|
:example:
|
5819
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5819
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
|
5820
5820
|
"""
|
5821
5821
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5822
5822
|
required_arguments = ['managedDatabaseId']
|
@@ -5927,7 +5927,7 @@ class DbManagementClient(object):
|
|
5927
5927
|
:rtype: :class:`~oci.response.Response`
|
5928
5928
|
|
5929
5929
|
:example:
|
5930
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5930
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
|
5931
5931
|
"""
|
5932
5932
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5933
5933
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -6041,7 +6041,7 @@ class DbManagementClient(object):
|
|
6041
6041
|
:rtype: :class:`~oci.response.Response`
|
6042
6042
|
|
6043
6043
|
:example:
|
6044
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6044
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
|
6045
6045
|
"""
|
6046
6046
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6047
6047
|
required_arguments = ['managedDatabaseId']
|
@@ -6154,7 +6154,7 @@ class DbManagementClient(object):
|
|
6154
6154
|
:rtype: :class:`~oci.response.Response`
|
6155
6155
|
|
6156
6156
|
:example:
|
6157
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6157
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
|
6158
6158
|
"""
|
6159
6159
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6160
6160
|
required_arguments = ['managedDatabaseId']
|
@@ -6269,7 +6269,7 @@ class DbManagementClient(object):
|
|
6269
6269
|
:rtype: :class:`~oci.response.Response`
|
6270
6270
|
|
6271
6271
|
:example:
|
6272
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6272
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
|
6273
6273
|
"""
|
6274
6274
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6275
6275
|
required_arguments = ['autonomousDatabaseId']
|
@@ -6391,7 +6391,7 @@ class DbManagementClient(object):
|
|
6391
6391
|
:rtype: :class:`~oci.response.Response`
|
6392
6392
|
|
6393
6393
|
:example:
|
6394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
|
6395
6395
|
"""
|
6396
6396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6397
6397
|
required_arguments = ['databaseId']
|
@@ -6513,7 +6513,7 @@ class DbManagementClient(object):
|
|
6513
6513
|
:rtype: :class:`~oci.response.Response`
|
6514
6514
|
|
6515
6515
|
:example:
|
6516
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6516
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
|
6517
6517
|
"""
|
6518
6518
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6519
6519
|
required_arguments = ['externalContainerDatabaseId']
|
@@ -6636,7 +6636,7 @@ class DbManagementClient(object):
|
|
6636
6636
|
:rtype: :class:`~oci.response.Response`
|
6637
6637
|
|
6638
6638
|
:example:
|
6639
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6639
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
|
6640
6640
|
"""
|
6641
6641
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6642
6642
|
required_arguments = ['externalDbSystemId']
|
@@ -6759,7 +6759,7 @@ class DbManagementClient(object):
|
|
6759
6759
|
:rtype: :class:`~oci.response.Response`
|
6760
6760
|
|
6761
6761
|
:example:
|
6762
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6762
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
|
6763
6763
|
"""
|
6764
6764
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6765
6765
|
required_arguments = ['externalDbSystemId']
|
@@ -6886,7 +6886,7 @@ class DbManagementClient(object):
|
|
6886
6886
|
:rtype: :class:`~oci.response.Response`
|
6887
6887
|
|
6888
6888
|
:example:
|
6889
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6889
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
|
6890
6890
|
"""
|
6891
6891
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6892
6892
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -7008,7 +7008,7 @@ class DbManagementClient(object):
|
|
7008
7008
|
:rtype: :class:`~oci.response.Response`
|
7009
7009
|
|
7010
7010
|
:example:
|
7011
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7011
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
|
7012
7012
|
"""
|
7013
7013
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7014
7014
|
required_arguments = ['externalNonContainerDatabaseId']
|
@@ -7130,7 +7130,7 @@ class DbManagementClient(object):
|
|
7130
7130
|
:rtype: :class:`~oci.response.Response`
|
7131
7131
|
|
7132
7132
|
:example:
|
7133
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7133
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
|
7134
7134
|
"""
|
7135
7135
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7136
7136
|
required_arguments = ['externalPluggableDatabaseId']
|
@@ -7246,7 +7246,7 @@ class DbManagementClient(object):
|
|
7246
7246
|
:rtype: :class:`~oci.response.Response`
|
7247
7247
|
|
7248
7248
|
:example:
|
7249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
|
7250
7250
|
"""
|
7251
7251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7252
7252
|
required_arguments = ['managedDatabaseId']
|
@@ -7361,7 +7361,7 @@ class DbManagementClient(object):
|
|
7361
7361
|
:rtype: :class:`~oci.response.Response`
|
7362
7362
|
|
7363
7363
|
:example:
|
7364
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7364
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
|
7365
7365
|
"""
|
7366
7366
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7367
7367
|
required_arguments = ['pluggableDatabaseId']
|
@@ -7472,7 +7472,7 @@ class DbManagementClient(object):
|
|
7472
7472
|
:rtype: :class:`~oci.response.Response`
|
7473
7473
|
|
7474
7474
|
:example:
|
7475
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7475
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
|
7476
7476
|
"""
|
7477
7477
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7478
7478
|
required_arguments = ['managedDatabaseId']
|
@@ -7580,7 +7580,7 @@ class DbManagementClient(object):
|
|
7580
7580
|
:rtype: :class:`~oci.response.Response`
|
7581
7581
|
|
7582
7582
|
:example:
|
7583
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7583
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
|
7584
7584
|
"""
|
7585
7585
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7586
7586
|
required_arguments = ['managedDatabaseId']
|
@@ -7728,7 +7728,7 @@ class DbManagementClient(object):
|
|
7728
7728
|
:rtype: :class:`~oci.response.Response`
|
7729
7729
|
|
7730
7730
|
:example:
|
7731
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7731
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
|
7732
7732
|
"""
|
7733
7733
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7734
7734
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -7911,7 +7911,7 @@ class DbManagementClient(object):
|
|
7911
7911
|
:rtype: :class:`~oci.response.Response`
|
7912
7912
|
|
7913
7913
|
:example:
|
7914
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
|
7915
7915
|
"""
|
7916
7916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7917
7917
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'sqlId']
|
@@ -8053,7 +8053,7 @@ class DbManagementClient(object):
|
|
8053
8053
|
:rtype: :class:`~oci.response.Response`
|
8054
8054
|
|
8055
8055
|
:example:
|
8056
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8056
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
|
8057
8057
|
"""
|
8058
8058
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8059
8059
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -8235,7 +8235,7 @@ class DbManagementClient(object):
|
|
8235
8235
|
:rtype: :class:`~oci.response.Response`
|
8236
8236
|
|
8237
8237
|
:example:
|
8238
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8238
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
|
8239
8239
|
"""
|
8240
8240
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8241
8241
|
required_arguments = ['compareBaselineTime', 'compareTargetTime']
|
@@ -8390,7 +8390,7 @@ class DbManagementClient(object):
|
|
8390
8390
|
:rtype: :class:`~oci.response.Response`
|
8391
8391
|
|
8392
8392
|
:example:
|
8393
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8393
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
|
8394
8394
|
"""
|
8395
8395
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8396
8396
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -8504,7 +8504,7 @@ class DbManagementClient(object):
|
|
8504
8504
|
:rtype: :class:`~oci.response.Response`
|
8505
8505
|
|
8506
8506
|
:example:
|
8507
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8507
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
|
8508
8508
|
"""
|
8509
8509
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8510
8510
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -8614,7 +8614,7 @@ class DbManagementClient(object):
|
|
8614
8614
|
:rtype: :class:`~oci.response.Response`
|
8615
8615
|
|
8616
8616
|
:example:
|
8617
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8617
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
|
8618
8618
|
"""
|
8619
8619
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8620
8620
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -8712,7 +8712,7 @@ class DbManagementClient(object):
|
|
8712
8712
|
:rtype: :class:`~oci.response.Response`
|
8713
8713
|
|
8714
8714
|
:example:
|
8715
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8715
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
|
8716
8716
|
"""
|
8717
8717
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8718
8718
|
required_arguments = ['externalAsmId']
|
@@ -8815,7 +8815,7 @@ class DbManagementClient(object):
|
|
8815
8815
|
:rtype: :class:`~oci.response.Response`
|
8816
8816
|
|
8817
8817
|
:example:
|
8818
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8818
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
|
8819
8819
|
"""
|
8820
8820
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8821
8821
|
required_arguments = ['externalAsmId']
|
@@ -8917,7 +8917,7 @@ class DbManagementClient(object):
|
|
8917
8917
|
:rtype: :class:`~oci.response.Response`
|
8918
8918
|
|
8919
8919
|
:example:
|
8920
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8920
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
|
8921
8921
|
"""
|
8922
8922
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8923
8923
|
required_arguments = ['externalAsmInstanceId']
|
@@ -9017,7 +9017,7 @@ class DbManagementClient(object):
|
|
9017
9017
|
:rtype: :class:`~oci.response.Response`
|
9018
9018
|
|
9019
9019
|
:example:
|
9020
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9020
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
|
9021
9021
|
"""
|
9022
9022
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9023
9023
|
required_arguments = ['externalClusterId']
|
@@ -9117,7 +9117,7 @@ class DbManagementClient(object):
|
|
9117
9117
|
:rtype: :class:`~oci.response.Response`
|
9118
9118
|
|
9119
9119
|
:example:
|
9120
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9120
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
|
9121
9121
|
"""
|
9122
9122
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9123
9123
|
required_arguments = ['externalClusterInstanceId']
|
@@ -9217,7 +9217,7 @@ class DbManagementClient(object):
|
|
9217
9217
|
:rtype: :class:`~oci.response.Response`
|
9218
9218
|
|
9219
9219
|
:example:
|
9220
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9220
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
|
9221
9221
|
"""
|
9222
9222
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9223
9223
|
required_arguments = ['externalDbHomeId']
|
@@ -9317,7 +9317,7 @@ class DbManagementClient(object):
|
|
9317
9317
|
:rtype: :class:`~oci.response.Response`
|
9318
9318
|
|
9319
9319
|
:example:
|
9320
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9320
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
|
9321
9321
|
"""
|
9322
9322
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9323
9323
|
required_arguments = ['externalDbNodeId']
|
@@ -9417,7 +9417,7 @@ class DbManagementClient(object):
|
|
9417
9417
|
:rtype: :class:`~oci.response.Response`
|
9418
9418
|
|
9419
9419
|
:example:
|
9420
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9420
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
|
9421
9421
|
"""
|
9422
9422
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9423
9423
|
required_arguments = ['externalDbSystemId']
|
@@ -9517,7 +9517,7 @@ class DbManagementClient(object):
|
|
9517
9517
|
:rtype: :class:`~oci.response.Response`
|
9518
9518
|
|
9519
9519
|
:example:
|
9520
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9520
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
|
9521
9521
|
"""
|
9522
9522
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9523
9523
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -9617,7 +9617,7 @@ class DbManagementClient(object):
|
|
9617
9617
|
:rtype: :class:`~oci.response.Response`
|
9618
9618
|
|
9619
9619
|
:example:
|
9620
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9620
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
|
9621
9621
|
"""
|
9622
9622
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9623
9623
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -9718,7 +9718,7 @@ class DbManagementClient(object):
|
|
9718
9718
|
:rtype: :class:`~oci.response.Response`
|
9719
9719
|
|
9720
9720
|
:example:
|
9721
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
|
9722
9722
|
"""
|
9723
9723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9724
9724
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -9818,7 +9818,7 @@ class DbManagementClient(object):
|
|
9818
9818
|
:rtype: :class:`~oci.response.Response`
|
9819
9819
|
|
9820
9820
|
:example:
|
9821
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9821
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
|
9822
9822
|
"""
|
9823
9823
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9824
9824
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -9918,7 +9918,7 @@ class DbManagementClient(object):
|
|
9918
9918
|
:rtype: :class:`~oci.response.Response`
|
9919
9919
|
|
9920
9920
|
:example:
|
9921
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9921
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
|
9922
9922
|
"""
|
9923
9923
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9924
9924
|
required_arguments = ['externalExadataStorageGridId']
|
@@ -10018,7 +10018,7 @@ class DbManagementClient(object):
|
|
10018
10018
|
:rtype: :class:`~oci.response.Response`
|
10019
10019
|
|
10020
10020
|
:example:
|
10021
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10021
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
|
10022
10022
|
"""
|
10023
10023
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10024
10024
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -10118,7 +10118,7 @@ class DbManagementClient(object):
|
|
10118
10118
|
:rtype: :class:`~oci.response.Response`
|
10119
10119
|
|
10120
10120
|
:example:
|
10121
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10121
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
|
10122
10122
|
"""
|
10123
10123
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10124
10124
|
required_arguments = ['externalListenerId']
|
@@ -10218,7 +10218,7 @@ class DbManagementClient(object):
|
|
10218
10218
|
:rtype: :class:`~oci.response.Response`
|
10219
10219
|
|
10220
10220
|
:example:
|
10221
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10221
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
|
10222
10222
|
"""
|
10223
10223
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10224
10224
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -10316,7 +10316,7 @@ class DbManagementClient(object):
|
|
10316
10316
|
:rtype: :class:`~oci.response.Response`
|
10317
10317
|
|
10318
10318
|
:example:
|
10319
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10319
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
|
10320
10320
|
"""
|
10321
10321
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10322
10322
|
required_arguments = ['jobId']
|
@@ -10412,7 +10412,7 @@ class DbManagementClient(object):
|
|
10412
10412
|
:rtype: :class:`~oci.response.Response`
|
10413
10413
|
|
10414
10414
|
:example:
|
10415
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10415
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
|
10416
10416
|
"""
|
10417
10417
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10418
10418
|
required_arguments = ['jobExecutionId']
|
@@ -10508,7 +10508,7 @@ class DbManagementClient(object):
|
|
10508
10508
|
:rtype: :class:`~oci.response.Response`
|
10509
10509
|
|
10510
10510
|
:example:
|
10511
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10511
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
|
10512
10512
|
"""
|
10513
10513
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10514
10514
|
required_arguments = ['jobRunId']
|
@@ -10606,7 +10606,7 @@ class DbManagementClient(object):
|
|
10606
10606
|
:rtype: :class:`~oci.response.Response`
|
10607
10607
|
|
10608
10608
|
:example:
|
10609
|
-
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.137.0/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
|
10610
10610
|
"""
|
10611
10611
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10612
10612
|
required_arguments = ['managedDatabaseId']
|
@@ -10704,7 +10704,7 @@ class DbManagementClient(object):
|
|
10704
10704
|
:rtype: :class:`~oci.response.Response`
|
10705
10705
|
|
10706
10706
|
:example:
|
10707
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10707
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
|
10708
10708
|
"""
|
10709
10709
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10710
10710
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -10802,7 +10802,7 @@ class DbManagementClient(object):
|
|
10802
10802
|
:rtype: :class:`~oci.response.Response`
|
10803
10803
|
|
10804
10804
|
:example:
|
10805
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10805
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
|
10806
10806
|
"""
|
10807
10807
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10808
10808
|
required_arguments = ['namedCredentialId']
|
@@ -10900,7 +10900,7 @@ class DbManagementClient(object):
|
|
10900
10900
|
:rtype: :class:`~oci.response.Response`
|
10901
10901
|
|
10902
10902
|
:example:
|
10903
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10903
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
|
10904
10904
|
"""
|
10905
10905
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10906
10906
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -11010,7 +11010,7 @@ class DbManagementClient(object):
|
|
11010
11010
|
:rtype: :class:`~oci.response.Response`
|
11011
11011
|
|
11012
11012
|
:example:
|
11013
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11013
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
|
11014
11014
|
"""
|
11015
11015
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11016
11016
|
required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
|
@@ -11127,7 +11127,7 @@ class DbManagementClient(object):
|
|
11127
11127
|
:rtype: :class:`~oci.response.Response`
|
11128
11128
|
|
11129
11129
|
:example:
|
11130
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11130
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
|
11131
11131
|
"""
|
11132
11132
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11133
11133
|
required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
|
@@ -11241,7 +11241,7 @@ class DbManagementClient(object):
|
|
11241
11241
|
:rtype: :class:`~oci.response.Response`
|
11242
11242
|
|
11243
11243
|
:example:
|
11244
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11244
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
|
11245
11245
|
"""
|
11246
11246
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11247
11247
|
required_arguments = ['managedDatabaseId', 'optimizerStatisticsCollectionOperationId']
|
@@ -11366,7 +11366,7 @@ class DbManagementClient(object):
|
|
11366
11366
|
:rtype: :class:`~oci.response.Response`
|
11367
11367
|
|
11368
11368
|
:example:
|
11369
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11369
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
|
11370
11370
|
"""
|
11371
11371
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11372
11372
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -11509,7 +11509,7 @@ class DbManagementClient(object):
|
|
11509
11509
|
:rtype: :class:`~oci.response.Response`
|
11510
11510
|
|
11511
11511
|
:example:
|
11512
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11512
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
|
11513
11513
|
"""
|
11514
11514
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11515
11515
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -11631,7 +11631,7 @@ class DbManagementClient(object):
|
|
11631
11631
|
:rtype: :class:`~oci.response.Response`
|
11632
11632
|
|
11633
11633
|
:example:
|
11634
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
|
11635
11635
|
"""
|
11636
11636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11637
11637
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -11736,7 +11736,7 @@ class DbManagementClient(object):
|
|
11736
11736
|
:rtype: :class:`~oci.response.Response`
|
11737
11737
|
|
11738
11738
|
:example:
|
11739
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11739
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
|
11740
11740
|
"""
|
11741
11741
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11742
11742
|
required_arguments = ['managedDatabaseId', 'planName']
|
@@ -11844,7 +11844,7 @@ class DbManagementClient(object):
|
|
11844
11844
|
:rtype: :class:`~oci.response.Response`
|
11845
11845
|
|
11846
11846
|
:example:
|
11847
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11847
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
|
11848
11848
|
"""
|
11849
11849
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11850
11850
|
required_arguments = ['managedDatabaseId']
|
@@ -11952,7 +11952,7 @@ class DbManagementClient(object):
|
|
11952
11952
|
:rtype: :class:`~oci.response.Response`
|
11953
11953
|
|
11954
11954
|
:example:
|
11955
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11955
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
|
11956
11956
|
"""
|
11957
11957
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11958
11958
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -12053,7 +12053,7 @@ class DbManagementClient(object):
|
|
12053
12053
|
:rtype: :class:`~oci.response.Response`
|
12054
12054
|
|
12055
12055
|
:example:
|
12056
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12056
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
|
12057
12057
|
"""
|
12058
12058
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12059
12059
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -12159,7 +12159,7 @@ class DbManagementClient(object):
|
|
12159
12159
|
:rtype: :class:`~oci.response.Response`
|
12160
12160
|
|
12161
12161
|
:example:
|
12162
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12162
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
|
12163
12163
|
"""
|
12164
12164
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12165
12165
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -12260,7 +12260,7 @@ class DbManagementClient(object):
|
|
12260
12260
|
:rtype: :class:`~oci.response.Response`
|
12261
12261
|
|
12262
12262
|
:example:
|
12263
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12263
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
12264
12264
|
"""
|
12265
12265
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12266
12266
|
required_arguments = ['workRequestId']
|
@@ -12364,7 +12364,7 @@ class DbManagementClient(object):
|
|
12364
12364
|
:rtype: :class:`~oci.response.Response`
|
12365
12365
|
|
12366
12366
|
:example:
|
12367
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12367
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
|
12368
12368
|
"""
|
12369
12369
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12370
12370
|
required_arguments = ['managedDatabaseId', 'executionName']
|
@@ -12487,7 +12487,7 @@ class DbManagementClient(object):
|
|
12487
12487
|
:rtype: :class:`~oci.response.Response`
|
12488
12488
|
|
12489
12489
|
:example:
|
12490
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12490
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
|
12491
12491
|
"""
|
12492
12492
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12493
12493
|
required_arguments = ['managedDatabaseId']
|
@@ -12637,7 +12637,7 @@ class DbManagementClient(object):
|
|
12637
12637
|
:rtype: :class:`~oci.response.Response`
|
12638
12638
|
|
12639
12639
|
:example:
|
12640
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12640
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
|
12641
12641
|
"""
|
12642
12642
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12643
12643
|
required_arguments = ['dbManagementPrivateEndpointId', 'compartmentId']
|
@@ -12816,7 +12816,7 @@ class DbManagementClient(object):
|
|
12816
12816
|
:rtype: :class:`~oci.response.Response`
|
12817
12817
|
|
12818
12818
|
:example:
|
12819
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12819
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
|
12820
12820
|
"""
|
12821
12821
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12822
12822
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -12996,7 +12996,7 @@ class DbManagementClient(object):
|
|
12996
12996
|
:rtype: :class:`~oci.response.Response`
|
12997
12997
|
|
12998
12998
|
:example:
|
12999
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12999
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
|
13000
13000
|
"""
|
13001
13001
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13002
13002
|
required_arguments = ['managedDatabaseId']
|
@@ -13160,7 +13160,7 @@ class DbManagementClient(object):
|
|
13160
13160
|
:rtype: :class:`~oci.response.Response`
|
13161
13161
|
|
13162
13162
|
:example:
|
13163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
|
13164
13164
|
"""
|
13165
13165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13166
13166
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -13316,7 +13316,7 @@ class DbManagementClient(object):
|
|
13316
13316
|
:rtype: :class:`~oci.response.Response`
|
13317
13317
|
|
13318
13318
|
:example:
|
13319
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13319
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
|
13320
13320
|
"""
|
13321
13321
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13322
13322
|
required_arguments = ['managedDatabaseId']
|
@@ -13475,7 +13475,7 @@ class DbManagementClient(object):
|
|
13475
13475
|
:rtype: :class:`~oci.response.Response`
|
13476
13476
|
|
13477
13477
|
:example:
|
13478
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
|
13479
13479
|
"""
|
13480
13480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13481
13481
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -13634,7 +13634,7 @@ class DbManagementClient(object):
|
|
13634
13634
|
:rtype: :class:`~oci.response.Response`
|
13635
13635
|
|
13636
13636
|
:example:
|
13637
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13637
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
|
13638
13638
|
"""
|
13639
13639
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13640
13640
|
required_arguments = ['managedDatabaseId']
|
@@ -13810,7 +13810,7 @@ class DbManagementClient(object):
|
|
13810
13810
|
:rtype: :class:`~oci.response.Response`
|
13811
13811
|
|
13812
13812
|
:example:
|
13813
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13813
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
|
13814
13814
|
"""
|
13815
13815
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13816
13816
|
required_arguments = ['compartmentId']
|
@@ -13963,7 +13963,7 @@ class DbManagementClient(object):
|
|
13963
13963
|
:rtype: :class:`~oci.response.Response`
|
13964
13964
|
|
13965
13965
|
:example:
|
13966
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13966
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
|
13967
13967
|
"""
|
13968
13968
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13969
13969
|
required_arguments = ['externalAsmId']
|
@@ -14120,7 +14120,7 @@ class DbManagementClient(object):
|
|
14120
14120
|
:rtype: :class:`~oci.response.Response`
|
14121
14121
|
|
14122
14122
|
:example:
|
14123
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14123
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
|
14124
14124
|
"""
|
14125
14125
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14126
14126
|
required_arguments = []
|
@@ -14263,7 +14263,7 @@ class DbManagementClient(object):
|
|
14263
14263
|
:rtype: :class:`~oci.response.Response`
|
14264
14264
|
|
14265
14265
|
:example:
|
14266
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14266
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
|
14267
14267
|
"""
|
14268
14268
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14269
14269
|
required_arguments = ['externalAsmId']
|
@@ -14420,7 +14420,7 @@ class DbManagementClient(object):
|
|
14420
14420
|
:rtype: :class:`~oci.response.Response`
|
14421
14421
|
|
14422
14422
|
:example:
|
14423
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14423
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
|
14424
14424
|
"""
|
14425
14425
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14426
14426
|
required_arguments = []
|
@@ -14569,7 +14569,7 @@ class DbManagementClient(object):
|
|
14569
14569
|
:rtype: :class:`~oci.response.Response`
|
14570
14570
|
|
14571
14571
|
:example:
|
14572
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14572
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
|
14573
14573
|
"""
|
14574
14574
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14575
14575
|
required_arguments = []
|
@@ -14718,7 +14718,7 @@ class DbManagementClient(object):
|
|
14718
14718
|
:rtype: :class:`~oci.response.Response`
|
14719
14719
|
|
14720
14720
|
:example:
|
14721
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
|
14722
14722
|
"""
|
14723
14723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14724
14724
|
required_arguments = []
|
@@ -14872,7 +14872,7 @@ class DbManagementClient(object):
|
|
14872
14872
|
:rtype: :class:`~oci.response.Response`
|
14873
14873
|
|
14874
14874
|
:example:
|
14875
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14875
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
|
14876
14876
|
"""
|
14877
14877
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14878
14878
|
required_arguments = []
|
@@ -15023,7 +15023,7 @@ class DbManagementClient(object):
|
|
15023
15023
|
:rtype: :class:`~oci.response.Response`
|
15024
15024
|
|
15025
15025
|
:example:
|
15026
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15026
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
|
15027
15027
|
"""
|
15028
15028
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15029
15029
|
required_arguments = []
|
@@ -15172,7 +15172,7 @@ class DbManagementClient(object):
|
|
15172
15172
|
:rtype: :class:`~oci.response.Response`
|
15173
15173
|
|
15174
15174
|
:example:
|
15175
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15175
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
|
15176
15176
|
"""
|
15177
15177
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15178
15178
|
required_arguments = []
|
@@ -15321,7 +15321,7 @@ class DbManagementClient(object):
|
|
15321
15321
|
:rtype: :class:`~oci.response.Response`
|
15322
15322
|
|
15323
15323
|
:example:
|
15324
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15324
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
|
15325
15325
|
"""
|
15326
15326
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15327
15327
|
required_arguments = []
|
@@ -15465,7 +15465,7 @@ class DbManagementClient(object):
|
|
15465
15465
|
:rtype: :class:`~oci.response.Response`
|
15466
15466
|
|
15467
15467
|
:example:
|
15468
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15468
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
|
15469
15469
|
"""
|
15470
15470
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15471
15471
|
required_arguments = ['compartmentId']
|
@@ -15606,7 +15606,7 @@ class DbManagementClient(object):
|
|
15606
15606
|
:rtype: :class:`~oci.response.Response`
|
15607
15607
|
|
15608
15608
|
:example:
|
15609
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15609
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
|
15610
15610
|
"""
|
15611
15611
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15612
15612
|
required_arguments = ['compartmentId']
|
@@ -15747,7 +15747,7 @@ class DbManagementClient(object):
|
|
15747
15747
|
:rtype: :class:`~oci.response.Response`
|
15748
15748
|
|
15749
15749
|
:example:
|
15750
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15750
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
|
15751
15751
|
"""
|
15752
15752
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15753
15753
|
required_arguments = ['compartmentId']
|
@@ -15893,7 +15893,7 @@ class DbManagementClient(object):
|
|
15893
15893
|
:rtype: :class:`~oci.response.Response`
|
15894
15894
|
|
15895
15895
|
:example:
|
15896
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15896
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
|
15897
15897
|
"""
|
15898
15898
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15899
15899
|
required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
|
@@ -16040,7 +16040,7 @@ class DbManagementClient(object):
|
|
16040
16040
|
:rtype: :class:`~oci.response.Response`
|
16041
16041
|
|
16042
16042
|
:example:
|
16043
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16043
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
|
16044
16044
|
"""
|
16045
16045
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16046
16046
|
required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
|
@@ -16187,7 +16187,7 @@ class DbManagementClient(object):
|
|
16187
16187
|
:rtype: :class:`~oci.response.Response`
|
16188
16188
|
|
16189
16189
|
:example:
|
16190
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16190
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
|
16191
16191
|
"""
|
16192
16192
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16193
16193
|
required_arguments = ['externalListenerId', 'managedDatabaseId']
|
@@ -16345,7 +16345,7 @@ class DbManagementClient(object):
|
|
16345
16345
|
:rtype: :class:`~oci.response.Response`
|
16346
16346
|
|
16347
16347
|
:example:
|
16348
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16348
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
|
16349
16349
|
"""
|
16350
16350
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16351
16351
|
required_arguments = []
|
@@ -16514,7 +16514,7 @@ class DbManagementClient(object):
|
|
16514
16514
|
:rtype: :class:`~oci.response.Response`
|
16515
16515
|
|
16516
16516
|
:example:
|
16517
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16517
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
|
16518
16518
|
"""
|
16519
16519
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16520
16520
|
required_arguments = ['compartmentId']
|
@@ -16687,7 +16687,7 @@ class DbManagementClient(object):
|
|
16687
16687
|
:rtype: :class:`~oci.response.Response`
|
16688
16688
|
|
16689
16689
|
:example:
|
16690
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16690
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
|
16691
16691
|
"""
|
16692
16692
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16693
16693
|
required_arguments = ['compartmentId']
|
@@ -16857,7 +16857,7 @@ class DbManagementClient(object):
|
|
16857
16857
|
:rtype: :class:`~oci.response.Response`
|
16858
16858
|
|
16859
16859
|
:example:
|
16860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16860
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
|
16861
16861
|
"""
|
16862
16862
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16863
16863
|
required_arguments = ['compartmentId']
|
@@ -17022,7 +17022,7 @@ class DbManagementClient(object):
|
|
17022
17022
|
:rtype: :class:`~oci.response.Response`
|
17023
17023
|
|
17024
17024
|
:example:
|
17025
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17025
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
|
17026
17026
|
"""
|
17027
17027
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17028
17028
|
required_arguments = ['compartmentId']
|
@@ -17195,7 +17195,7 @@ class DbManagementClient(object):
|
|
17195
17195
|
:rtype: :class:`~oci.response.Response`
|
17196
17196
|
|
17197
17197
|
:example:
|
17198
|
-
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.137.0/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
|
17199
17199
|
"""
|
17200
17200
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17201
17201
|
required_arguments = ['compartmentId']
|
@@ -17369,7 +17369,7 @@ class DbManagementClient(object):
|
|
17369
17369
|
:rtype: :class:`~oci.response.Response`
|
17370
17370
|
|
17371
17371
|
:example:
|
17372
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
|
17373
17373
|
"""
|
17374
17374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17375
17375
|
required_arguments = ['compartmentId']
|
@@ -17533,7 +17533,7 @@ class DbManagementClient(object):
|
|
17533
17533
|
:rtype: :class:`~oci.response.Response`
|
17534
17534
|
|
17535
17535
|
:example:
|
17536
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17536
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
|
17537
17537
|
"""
|
17538
17538
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17539
17539
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -17677,7 +17677,7 @@ class DbManagementClient(object):
|
|
17677
17677
|
:rtype: :class:`~oci.response.Response`
|
17678
17678
|
|
17679
17679
|
:example:
|
17680
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17680
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
|
17681
17681
|
"""
|
17682
17682
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17683
17683
|
required_arguments = ['managedDatabaseId']
|
@@ -17820,7 +17820,7 @@ class DbManagementClient(object):
|
|
17820
17820
|
:rtype: :class:`~oci.response.Response`
|
17821
17821
|
|
17822
17822
|
:example:
|
17823
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17823
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
|
17824
17824
|
"""
|
17825
17825
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17826
17826
|
required_arguments = ['managedDatabaseId', 'groupType']
|
@@ -17995,7 +17995,7 @@ class DbManagementClient(object):
|
|
17995
17995
|
:rtype: :class:`~oci.response.Response`
|
17996
17996
|
|
17997
17997
|
:example:
|
17998
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17998
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
|
17999
17999
|
"""
|
18000
18000
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18001
18001
|
required_arguments = ['managedDatabaseId']
|
@@ -18138,7 +18138,7 @@ class DbManagementClient(object):
|
|
18138
18138
|
:rtype: :class:`~oci.response.Response`
|
18139
18139
|
|
18140
18140
|
:example:
|
18141
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18141
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
|
18142
18142
|
"""
|
18143
18143
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18144
18144
|
required_arguments = ['managedDatabaseId']
|
@@ -18263,7 +18263,7 @@ class DbManagementClient(object):
|
|
18263
18263
|
:rtype: :class:`~oci.response.Response`
|
18264
18264
|
|
18265
18265
|
:example:
|
18266
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18266
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
|
18267
18267
|
"""
|
18268
18268
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18269
18269
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -18421,7 +18421,7 @@ class DbManagementClient(object):
|
|
18421
18421
|
:rtype: :class:`~oci.response.Response`
|
18422
18422
|
|
18423
18423
|
:example:
|
18424
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18424
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
|
18425
18425
|
"""
|
18426
18426
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18427
18427
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -18579,7 +18579,7 @@ class DbManagementClient(object):
|
|
18579
18579
|
:rtype: :class:`~oci.response.Response`
|
18580
18580
|
|
18581
18581
|
:example:
|
18582
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18582
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
|
18583
18583
|
"""
|
18584
18584
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18585
18585
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -18735,7 +18735,7 @@ class DbManagementClient(object):
|
|
18735
18735
|
:rtype: :class:`~oci.response.Response`
|
18736
18736
|
|
18737
18737
|
:example:
|
18738
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18738
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
|
18739
18739
|
"""
|
18740
18740
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18741
18741
|
required_arguments = ['managedDatabaseId']
|
@@ -18939,7 +18939,7 @@ class DbManagementClient(object):
|
|
18939
18939
|
:rtype: :class:`~oci.response.Response`
|
18940
18940
|
|
18941
18941
|
:example:
|
18942
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18942
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
|
18943
18943
|
"""
|
18944
18944
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18945
18945
|
required_arguments = ['managedDatabaseId']
|
@@ -19129,7 +19129,7 @@ class DbManagementClient(object):
|
|
19129
19129
|
:rtype: :class:`~oci.response.Response`
|
19130
19130
|
|
19131
19131
|
:example:
|
19132
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19132
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
|
19133
19133
|
"""
|
19134
19134
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19135
19135
|
required_arguments = ['managedDatabaseId', 'userName']
|
@@ -19264,7 +19264,7 @@ class DbManagementClient(object):
|
|
19264
19264
|
:rtype: :class:`~oci.response.Response`
|
19265
19265
|
|
19266
19266
|
:example:
|
19267
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19267
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
|
19268
19268
|
"""
|
19269
19269
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19270
19270
|
required_arguments = ['managedDatabaseId']
|
@@ -19389,7 +19389,7 @@ class DbManagementClient(object):
|
|
19389
19389
|
:rtype: :class:`~oci.response.Response`
|
19390
19390
|
|
19391
19391
|
:example:
|
19392
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19392
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
|
19393
19393
|
"""
|
19394
19394
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19395
19395
|
required_arguments = ['managedDatabaseId']
|
@@ -19544,7 +19544,7 @@ class DbManagementClient(object):
|
|
19544
19544
|
:rtype: :class:`~oci.response.Response`
|
19545
19545
|
|
19546
19546
|
:example:
|
19547
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19547
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
|
19548
19548
|
"""
|
19549
19549
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19550
19550
|
required_arguments = ['managedDatabaseId']
|
@@ -19691,7 +19691,7 @@ class DbManagementClient(object):
|
|
19691
19691
|
:rtype: :class:`~oci.response.Response`
|
19692
19692
|
|
19693
19693
|
:example:
|
19694
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19694
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
19695
19695
|
"""
|
19696
19696
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19697
19697
|
required_arguments = ['workRequestId']
|
@@ -19834,7 +19834,7 @@ class DbManagementClient(object):
|
|
19834
19834
|
:rtype: :class:`~oci.response.Response`
|
19835
19835
|
|
19836
19836
|
:example:
|
19837
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19837
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
19838
19838
|
"""
|
19839
19839
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19840
19840
|
required_arguments = ['workRequestId']
|
@@ -19992,7 +19992,7 @@ class DbManagementClient(object):
|
|
19992
19992
|
:rtype: :class:`~oci.response.Response`
|
19993
19993
|
|
19994
19994
|
:example:
|
19995
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19995
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
19996
19996
|
"""
|
19997
19997
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19998
19998
|
required_arguments = ['compartmentId']
|
@@ -20127,7 +20127,7 @@ class DbManagementClient(object):
|
|
20127
20127
|
:rtype: :class:`~oci.response.Response`
|
20128
20128
|
|
20129
20129
|
:example:
|
20130
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20130
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
|
20131
20131
|
"""
|
20132
20132
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20133
20133
|
required_arguments = ['managedDatabaseId']
|
@@ -20232,7 +20232,7 @@ class DbManagementClient(object):
|
|
20232
20232
|
:rtype: :class:`~oci.response.Response`
|
20233
20233
|
|
20234
20234
|
:example:
|
20235
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20235
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
|
20236
20236
|
"""
|
20237
20237
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20238
20238
|
required_arguments = ['managedDatabaseId']
|
@@ -20349,7 +20349,7 @@ class DbManagementClient(object):
|
|
20349
20349
|
:rtype: :class:`~oci.response.Response`
|
20350
20350
|
|
20351
20351
|
:example:
|
20352
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20352
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
|
20353
20353
|
"""
|
20354
20354
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20355
20355
|
required_arguments = ['autonomousDatabaseId']
|
@@ -20471,7 +20471,7 @@ class DbManagementClient(object):
|
|
20471
20471
|
:rtype: :class:`~oci.response.Response`
|
20472
20472
|
|
20473
20473
|
:example:
|
20474
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20474
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
|
20475
20475
|
"""
|
20476
20476
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20477
20477
|
required_arguments = ['databaseId']
|
@@ -20593,7 +20593,7 @@ class DbManagementClient(object):
|
|
20593
20593
|
:rtype: :class:`~oci.response.Response`
|
20594
20594
|
|
20595
20595
|
:example:
|
20596
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20596
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
|
20597
20597
|
"""
|
20598
20598
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20599
20599
|
required_arguments = ['pluggableDatabaseId']
|
@@ -20708,7 +20708,7 @@ class DbManagementClient(object):
|
|
20708
20708
|
:rtype: :class:`~oci.response.Response`
|
20709
20709
|
|
20710
20710
|
:example:
|
20711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
|
20712
20712
|
"""
|
20713
20713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20714
20714
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -20823,7 +20823,7 @@ class DbManagementClient(object):
|
|
20823
20823
|
:rtype: :class:`~oci.response.Response`
|
20824
20824
|
|
20825
20825
|
:example:
|
20826
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20826
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
|
20827
20827
|
"""
|
20828
20828
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20829
20829
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -20940,7 +20940,7 @@ class DbManagementClient(object):
|
|
20940
20940
|
:rtype: :class:`~oci.response.Response`
|
20941
20941
|
|
20942
20942
|
:example:
|
20943
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20943
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
|
20944
20944
|
"""
|
20945
20945
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20946
20946
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -21051,7 +21051,7 @@ class DbManagementClient(object):
|
|
21051
21051
|
:rtype: :class:`~oci.response.Response`
|
21052
21052
|
|
21053
21053
|
:example:
|
21054
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21054
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
|
21055
21055
|
"""
|
21056
21056
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21057
21057
|
required_arguments = ['managedDatabaseId']
|
@@ -21167,7 +21167,7 @@ class DbManagementClient(object):
|
|
21167
21167
|
:rtype: :class:`~oci.response.Response`
|
21168
21168
|
|
21169
21169
|
:example:
|
21170
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21170
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
|
21171
21171
|
"""
|
21172
21172
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21173
21173
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|
@@ -21285,7 +21285,7 @@ class DbManagementClient(object):
|
|
21285
21285
|
:rtype: :class:`~oci.response.Response`
|
21286
21286
|
|
21287
21287
|
:example:
|
21288
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21288
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
|
21289
21289
|
"""
|
21290
21290
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21291
21291
|
required_arguments = ['managedDatabaseId']
|
@@ -21447,7 +21447,7 @@ class DbManagementClient(object):
|
|
21447
21447
|
:rtype: :class:`~oci.response.Response`
|
21448
21448
|
|
21449
21449
|
:example:
|
21450
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21450
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
|
21451
21451
|
"""
|
21452
21452
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21453
21453
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -21655,7 +21655,7 @@ class DbManagementClient(object):
|
|
21655
21655
|
:rtype: :class:`~oci.response.Response`
|
21656
21656
|
|
21657
21657
|
:example:
|
21658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
|
21659
21659
|
"""
|
21660
21660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21661
21661
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -21859,7 +21859,7 @@ class DbManagementClient(object):
|
|
21859
21859
|
:rtype: :class:`~oci.response.Response`
|
21860
21860
|
|
21861
21861
|
:example:
|
21862
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
|
21863
21863
|
"""
|
21864
21864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21865
21865
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -22087,7 +22087,7 @@ class DbManagementClient(object):
|
|
22087
22087
|
:rtype: :class:`~oci.response.Response`
|
22088
22088
|
|
22089
22089
|
:example:
|
22090
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22090
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
|
22091
22091
|
"""
|
22092
22092
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22093
22093
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -22298,7 +22298,7 @@ class DbManagementClient(object):
|
|
22298
22298
|
:rtype: :class:`~oci.response.Response`
|
22299
22299
|
|
22300
22300
|
:example:
|
22301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
|
22302
22302
|
"""
|
22303
22303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22304
22304
|
required_arguments = ['managedDatabaseId']
|
@@ -22490,7 +22490,7 @@ class DbManagementClient(object):
|
|
22490
22490
|
:rtype: :class:`~oci.response.Response`
|
22491
22491
|
|
22492
22492
|
:example:
|
22493
|
-
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.137.0/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
|
22494
22494
|
"""
|
22495
22495
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22496
22496
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -22688,7 +22688,7 @@ class DbManagementClient(object):
|
|
22688
22688
|
:rtype: :class:`~oci.response.Response`
|
22689
22689
|
|
22690
22690
|
:example:
|
22691
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22691
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
|
22692
22692
|
"""
|
22693
22693
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22694
22694
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -22903,7 +22903,7 @@ class DbManagementClient(object):
|
|
22903
22903
|
:rtype: :class:`~oci.response.Response`
|
22904
22904
|
|
22905
22905
|
:example:
|
22906
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22906
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
|
22907
22907
|
"""
|
22908
22908
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22909
22909
|
required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
|
@@ -23114,7 +23114,7 @@ class DbManagementClient(object):
|
|
23114
23114
|
:rtype: :class:`~oci.response.Response`
|
23115
23115
|
|
23116
23116
|
:example:
|
23117
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23117
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
|
23118
23118
|
"""
|
23119
23119
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23120
23120
|
required_arguments = ['managedDatabaseId', 'awrDbId']
|
@@ -23287,7 +23287,7 @@ class DbManagementClient(object):
|
|
23287
23287
|
:rtype: :class:`~oci.response.Response`
|
23288
23288
|
|
23289
23289
|
:example:
|
23290
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23290
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
|
23291
23291
|
"""
|
23292
23292
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23293
23293
|
required_arguments = ['externalAsmId', 'startTime', 'endTime']
|
@@ -23419,7 +23419,7 @@ class DbManagementClient(object):
|
|
23419
23419
|
:rtype: :class:`~oci.response.Response`
|
23420
23420
|
|
23421
23421
|
:example:
|
23422
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23422
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
|
23423
23423
|
"""
|
23424
23424
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23425
23425
|
required_arguments = ['externalClusterId', 'startTime', 'endTime']
|
@@ -23551,7 +23551,7 @@ class DbManagementClient(object):
|
|
23551
23551
|
:rtype: :class:`~oci.response.Response`
|
23552
23552
|
|
23553
23553
|
:example:
|
23554
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23554
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
|
23555
23555
|
"""
|
23556
23556
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23557
23557
|
required_arguments = ['externalDbNodeId', 'startTime', 'endTime']
|
@@ -23683,7 +23683,7 @@ class DbManagementClient(object):
|
|
23683
23683
|
:rtype: :class:`~oci.response.Response`
|
23684
23684
|
|
23685
23685
|
:example:
|
23686
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23686
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
|
23687
23687
|
"""
|
23688
23688
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23689
23689
|
required_arguments = ['externalDbSystemId', 'startTime', 'endTime']
|
@@ -23815,7 +23815,7 @@ class DbManagementClient(object):
|
|
23815
23815
|
:rtype: :class:`~oci.response.Response`
|
23816
23816
|
|
23817
23817
|
:example:
|
23818
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23818
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
|
23819
23819
|
"""
|
23820
23820
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23821
23821
|
required_arguments = ['externalListenerId', 'startTime', 'endTime']
|
@@ -23965,7 +23965,7 @@ class DbManagementClient(object):
|
|
23965
23965
|
:rtype: :class:`~oci.response.Response`
|
23966
23966
|
|
23967
23967
|
:example:
|
23968
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23968
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
|
23969
23969
|
"""
|
23970
23970
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23971
23971
|
required_arguments = ['compartmentId', 'startTime', 'endTime']
|
@@ -24102,7 +24102,7 @@ class DbManagementClient(object):
|
|
24102
24102
|
:rtype: :class:`~oci.response.Response`
|
24103
24103
|
|
24104
24104
|
:example:
|
24105
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24105
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
|
24106
24106
|
"""
|
24107
24107
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24108
24108
|
required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
|
@@ -24221,7 +24221,7 @@ class DbManagementClient(object):
|
|
24221
24221
|
:rtype: :class:`~oci.response.Response`
|
24222
24222
|
|
24223
24223
|
:example:
|
24224
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24224
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
|
24225
24225
|
"""
|
24226
24226
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24227
24227
|
required_arguments = ['managedDatabaseId']
|
@@ -24338,7 +24338,7 @@ class DbManagementClient(object):
|
|
24338
24338
|
:rtype: :class:`~oci.response.Response`
|
24339
24339
|
|
24340
24340
|
:example:
|
24341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24341
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
|
24342
24342
|
"""
|
24343
24343
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24344
24344
|
required_arguments = ['managedDatabaseId']
|
@@ -24453,7 +24453,7 @@ class DbManagementClient(object):
|
|
24453
24453
|
:rtype: :class:`~oci.response.Response`
|
24454
24454
|
|
24455
24455
|
:example:
|
24456
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24456
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
|
24457
24457
|
"""
|
24458
24458
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24459
24459
|
required_arguments = ['namedCredentialId']
|
@@ -24559,7 +24559,7 @@ class DbManagementClient(object):
|
|
24559
24559
|
:rtype: :class:`~oci.response.Response`
|
24560
24560
|
|
24561
24561
|
:example:
|
24562
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24562
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
|
24563
24563
|
"""
|
24564
24564
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24565
24565
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -24671,7 +24671,7 @@ class DbManagementClient(object):
|
|
24671
24671
|
:rtype: :class:`~oci.response.Response`
|
24672
24672
|
|
24673
24673
|
:example:
|
24674
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24674
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
|
24675
24675
|
"""
|
24676
24676
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24677
24677
|
required_arguments = ['dbManagementPrivateEndpointId']
|
@@ -24783,7 +24783,7 @@ class DbManagementClient(object):
|
|
24783
24783
|
:rtype: :class:`~oci.response.Response`
|
24784
24784
|
|
24785
24785
|
:example:
|
24786
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24786
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
|
24787
24787
|
"""
|
24788
24788
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24789
24789
|
required_arguments = ['externalAsmId']
|
@@ -24893,7 +24893,7 @@ class DbManagementClient(object):
|
|
24893
24893
|
:rtype: :class:`~oci.response.Response`
|
24894
24894
|
|
24895
24895
|
:example:
|
24896
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24896
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
|
24897
24897
|
"""
|
24898
24898
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24899
24899
|
required_arguments = ['externalAsmInstanceId']
|
@@ -25005,7 +25005,7 @@ class DbManagementClient(object):
|
|
25005
25005
|
:rtype: :class:`~oci.response.Response`
|
25006
25006
|
|
25007
25007
|
:example:
|
25008
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25008
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
|
25009
25009
|
"""
|
25010
25010
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25011
25011
|
required_arguments = ['externalClusterId']
|
@@ -25115,7 +25115,7 @@ class DbManagementClient(object):
|
|
25115
25115
|
:rtype: :class:`~oci.response.Response`
|
25116
25116
|
|
25117
25117
|
:example:
|
25118
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25118
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
|
25119
25119
|
"""
|
25120
25120
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25121
25121
|
required_arguments = ['externalClusterInstanceId']
|
@@ -25225,7 +25225,7 @@ class DbManagementClient(object):
|
|
25225
25225
|
:rtype: :class:`~oci.response.Response`
|
25226
25226
|
|
25227
25227
|
:example:
|
25228
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25228
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
|
25229
25229
|
"""
|
25230
25230
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25231
25231
|
required_arguments = ['externalDbHomeId']
|
@@ -25337,7 +25337,7 @@ class DbManagementClient(object):
|
|
25337
25337
|
:rtype: :class:`~oci.response.Response`
|
25338
25338
|
|
25339
25339
|
:example:
|
25340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25340
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
|
25341
25341
|
"""
|
25342
25342
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25343
25343
|
required_arguments = ['externalDbNodeId']
|
@@ -25447,7 +25447,7 @@ class DbManagementClient(object):
|
|
25447
25447
|
:rtype: :class:`~oci.response.Response`
|
25448
25448
|
|
25449
25449
|
:example:
|
25450
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25450
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
|
25451
25451
|
"""
|
25452
25452
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25453
25453
|
required_arguments = ['externalDbSystemId']
|
@@ -25559,7 +25559,7 @@ class DbManagementClient(object):
|
|
25559
25559
|
:rtype: :class:`~oci.response.Response`
|
25560
25560
|
|
25561
25561
|
:example:
|
25562
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25562
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
|
25563
25563
|
"""
|
25564
25564
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25565
25565
|
required_arguments = ['externalDbSystemConnectorId']
|
@@ -25669,7 +25669,7 @@ class DbManagementClient(object):
|
|
25669
25669
|
:rtype: :class:`~oci.response.Response`
|
25670
25670
|
|
25671
25671
|
:example:
|
25672
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25672
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
|
25673
25673
|
"""
|
25674
25674
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25675
25675
|
required_arguments = ['externalDbSystemDiscoveryId']
|
@@ -25788,7 +25788,7 @@ class DbManagementClient(object):
|
|
25788
25788
|
:rtype: :class:`~oci.response.Response`
|
25789
25789
|
|
25790
25790
|
:example:
|
25791
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25791
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
|
25792
25792
|
"""
|
25793
25793
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25794
25794
|
required_arguments = ['externalExadataInfrastructureId']
|
@@ -25905,7 +25905,7 @@ class DbManagementClient(object):
|
|
25905
25905
|
:rtype: :class:`~oci.response.Response`
|
25906
25906
|
|
25907
25907
|
:example:
|
25908
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25908
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
|
25909
25909
|
"""
|
25910
25910
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25911
25911
|
required_arguments = ['externalExadataStorageConnectorId']
|
@@ -26017,7 +26017,7 @@ class DbManagementClient(object):
|
|
26017
26017
|
:rtype: :class:`~oci.response.Response`
|
26018
26018
|
|
26019
26019
|
:example:
|
26020
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26020
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
|
26021
26021
|
"""
|
26022
26022
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26023
26023
|
required_arguments = ['externalExadataStorageGridId']
|
@@ -26129,7 +26129,7 @@ class DbManagementClient(object):
|
|
26129
26129
|
:rtype: :class:`~oci.response.Response`
|
26130
26130
|
|
26131
26131
|
:example:
|
26132
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26132
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
|
26133
26133
|
"""
|
26134
26134
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26135
26135
|
required_arguments = ['externalExadataStorageServerId']
|
@@ -26241,7 +26241,7 @@ class DbManagementClient(object):
|
|
26241
26241
|
:rtype: :class:`~oci.response.Response`
|
26242
26242
|
|
26243
26243
|
:example:
|
26244
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26244
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
|
26245
26245
|
"""
|
26246
26246
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26247
26247
|
required_arguments = ['externalListenerId']
|
@@ -26349,7 +26349,7 @@ class DbManagementClient(object):
|
|
26349
26349
|
:rtype: :class:`~oci.response.Response`
|
26350
26350
|
|
26351
26351
|
:example:
|
26352
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26352
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
|
26353
26353
|
"""
|
26354
26354
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26355
26355
|
required_arguments = ['jobId']
|
@@ -26461,7 +26461,7 @@ class DbManagementClient(object):
|
|
26461
26461
|
:rtype: :class:`~oci.response.Response`
|
26462
26462
|
|
26463
26463
|
:example:
|
26464
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
|
26465
26465
|
"""
|
26466
26466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26467
26467
|
required_arguments = ['managedDatabaseId']
|
@@ -26573,7 +26573,7 @@ class DbManagementClient(object):
|
|
26573
26573
|
:rtype: :class:`~oci.response.Response`
|
26574
26574
|
|
26575
26575
|
:example:
|
26576
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26576
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
|
26577
26577
|
"""
|
26578
26578
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26579
26579
|
required_arguments = ['managedDatabaseGroupId']
|
@@ -26685,7 +26685,7 @@ class DbManagementClient(object):
|
|
26685
26685
|
:rtype: :class:`~oci.response.Response`
|
26686
26686
|
|
26687
26687
|
:example:
|
26688
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26688
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
|
26689
26689
|
"""
|
26690
26690
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26691
26691
|
required_arguments = ['namedCredentialId']
|
@@ -26800,7 +26800,7 @@ class DbManagementClient(object):
|
|
26800
26800
|
:rtype: :class:`~oci.response.Response`
|
26801
26801
|
|
26802
26802
|
:example:
|
26803
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26803
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
|
26804
26804
|
"""
|
26805
26805
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26806
26806
|
required_arguments = ['managedDatabaseId', 'credentialName']
|
@@ -26909,7 +26909,7 @@ class DbManagementClient(object):
|
|
26909
26909
|
:rtype: :class:`~oci.response.Response`
|
26910
26910
|
|
26911
26911
|
:example:
|
26912
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26912
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.137.0/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
|
26913
26913
|
"""
|
26914
26914
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26915
26915
|
required_arguments = ['managedDatabaseId', 'tablespaceName']
|