oci 2.151.0__py3-none-any.whl → 2.152.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/__init__.py +20 -0
- oci/addons/adk/__init__.py +13 -0
- oci/addons/adk/agent.py +852 -0
- oci/addons/adk/agent_client.py +682 -0
- oci/addons/adk/agent_error.py +36 -0
- oci/addons/adk/auth/__init__.py +5 -0
- oci/addons/adk/auth/auth_provider.py +28 -0
- oci/addons/adk/auth/factory.py +78 -0
- oci/addons/adk/auth/oci/__init__.py +5 -0
- oci/addons/adk/auth/oci/instance_principal.py +53 -0
- oci/addons/adk/auth/oci/resource_principal.py +53 -0
- oci/addons/adk/auth/oci/session.py +91 -0
- oci/addons/adk/auth/oci/user_principal.py +64 -0
- oci/addons/adk/constants.py +17 -0
- oci/addons/adk/logger.py +163 -0
- oci/addons/adk/run/__init__.py +5 -0
- oci/addons/adk/run/response.py +56 -0
- oci/addons/adk/run/types.py +32 -0
- oci/addons/adk/tool/__init__.py +13 -0
- oci/addons/adk/tool/function_tool.py +334 -0
- oci/addons/adk/tool/prebuilt/__init__.py +8 -0
- oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
- oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
- oci/addons/adk/tool/tool.py +37 -0
- oci/addons/adk/tool/toolkit.py +189 -0
- oci/addons/adk/tool/utils.py +120 -0
- oci/addons/adk/util.py +325 -0
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/attributes_client.py +8 -8
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +84 -84
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +117 -117
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +745 -469
- oci/database/models/__init__.py +2 -0
- oci/database/models/autonomous_db_version_summary.py +31 -0
- oci/database/models/backup.py +4 -2
- oci/database/models/backup_summary.py +4 -2
- oci/database/models/create_external_backup_job_details.py +4 -4
- oci/database/models/db_system.py +4 -2
- oci/database/models/db_system_summary.py +4 -2
- oci/database/models/db_system_upgrade_summary.py +152 -0
- oci/database/models/external_container_database.py +4 -2
- oci/database/models/external_container_database_summary.py +4 -2
- oci/database/models/external_database_base.py +4 -2
- oci/database/models/external_non_container_database.py +4 -2
- oci/database/models/external_non_container_database_summary.py +4 -2
- oci/database/models/external_pluggable_database.py +4 -2
- oci/database/models/external_pluggable_database_summary.py +4 -2
- oci/database_management/db_management_client.py +356 -230
- oci/database_management/db_management_client_composite_operations.py +44 -0
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -247
- oci/database_management/models/__init__.py +0 -4
- oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
- oci/database_management/models/disable_database_management_feature_details.py +33 -2
- oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
- oci/database_management/models/discovered_external_database.py +64 -2
- oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
- oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
- oci/database_management/models/managed_database.py +2 -4
- oci/database_management/models/managed_database_summary.py +2 -4
- oci/database_management/models/modify_database_management_feature_details.py +1 -1
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +42 -42
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/__init__.py +20 -0
- oci/distributed_database/distributed_autonomous_db_service_client.py +2315 -0
- oci/distributed_database/distributed_autonomous_db_service_client_composite_operations.py +605 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +944 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client_composite_operations.py +238 -0
- oci/distributed_database/distributed_db_service_client.py +2435 -0
- oci/distributed_database/distributed_db_service_client_composite_operations.py +647 -0
- oci/distributed_database/distributed_db_work_request_service_client.py +654 -0
- oci/distributed_database/distributed_db_work_request_service_client_composite_operations.py +26 -0
- oci/distributed_database/models/__init__.py +158 -0
- oci/distributed_database/models/add_distributed_autonomous_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/add_distributed_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/catalog_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/catalog_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/change_distributed_autonomous_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_private_endpoint_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_db_backup_config_details.py +66 -0
- oci/distributed_database/models/configure_distributed_autonomous_database_gsms_details.py +103 -0
- oci/distributed_database/models/configure_distributed_database_gsms_details.py +103 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_with_dedicated_infra_details.py +342 -0
- oci/distributed_database/models/create_distributed_autonomous_database_details.py +799 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_with_dedicated_infra_details.py +377 -0
- oci/distributed_database/models/create_distributed_database_catalog_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_catalog_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/create_distributed_database_details.py +810 -0
- oci/distributed_database/models/create_distributed_database_private_endpoint_details.py +260 -0
- oci/distributed_database/models/create_distributed_database_shard_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_shard_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/distributed_autonomous_database.py +1143 -0
- oci/distributed_database/models/distributed_autonomous_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog_with_dedicated_infra.py +559 -0
- oci/distributed_database/models/distributed_autonomous_database_collection.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_connection_string.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_shard.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_shard_with_dedicated_infra.py +592 -0
- oci/distributed_database/models/distributed_autonomous_database_summary.py +935 -0
- oci/distributed_database/models/distributed_autonomous_db_metadata.py +70 -0
- oci/distributed_database/models/distributed_database.py +1154 -0
- oci/distributed_database/models/distributed_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_database_catalog.py +192 -0
- oci/distributed_database/models/distributed_database_catalog_with_exadb_xs.py +466 -0
- oci/distributed_database/models/distributed_database_collection.py +70 -0
- oci/distributed_database/models/distributed_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_database_private_endpoint.py +639 -0
- oci/distributed_database/models/distributed_database_private_endpoint_collection.py +70 -0
- oci/distributed_database/models/distributed_database_private_endpoint_summary.py +479 -0
- oci/distributed_database/models/distributed_database_shard.py +192 -0
- oci/distributed_database/models/distributed_database_shard_with_exadb_xs.py +499 -0
- oci/distributed_database/models/distributed_database_summary.py +904 -0
- oci/distributed_database/models/distributed_db_backup_config.py +536 -0
- oci/distributed_database/models/distributed_db_backup_destination.py +362 -0
- oci/distributed_database/models/distributed_db_connection_string.py +70 -0
- oci/distributed_database/models/distributed_db_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_db_metadata.py +70 -0
- oci/distributed_database/models/generate_distributed_autonomous_database_wallet_details.py +70 -0
- oci/distributed_database/models/generate_distributed_database_wallet_details.py +70 -0
- oci/distributed_database/models/patch_distributed_autonomous_database_details.py +73 -0
- oci/distributed_database/models/patch_distributed_database_details.py +73 -0
- oci/distributed_database/models/patch_insert_instruction.py +87 -0
- oci/distributed_database/models/patch_instruction.py +154 -0
- oci/distributed_database/models/patch_merge_instruction.py +95 -0
- oci/distributed_database/models/patch_remove_instruction.py +57 -0
- oci/distributed_database/models/shard_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/shard_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/update_distributed_autonomous_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_private_endpoint_details.py +198 -0
- oci/distributed_database/models/upload_distributed_autonomous_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/upload_distributed_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/work_request.py +516 -0
- oci/distributed_database/models/work_request_error.py +134 -0
- oci/distributed_database/models/work_request_error_collection.py +70 -0
- oci/distributed_database/models/work_request_log_entry.py +101 -0
- oci/distributed_database/models/work_request_log_entry_collection.py +70 -0
- oci/distributed_database/models/work_request_resource.py +232 -0
- oci/distributed_database/models/work_request_summary.py +516 -0
- oci/distributed_database/models/work_request_summary_collection.py +70 -0
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
- oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +58 -58
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/__init__.py +14 -0
- oci/model_deployment/model_deployment_client.py +331 -0
- oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
- oci/model_deployment/models/__init__.py +14 -0
- oci/model_deployment/models/inference_result.py +70 -0
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +7 -7
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/create_db_system_details.py +31 -0
- oci/mysql/models/db_system.py +31 -0
- oci/mysql/models/db_system_snapshot.py +31 -0
- oci/mysql/models/replica.py +31 -0
- oci/mysql/models/replica_overrides.py +33 -2
- oci/mysql/models/replica_summary.py +31 -0
- oci/mysql/models/update_db_system_details.py +31 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +86 -86
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/models/__init__.py +2 -0
- oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
- oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/models/opensearch_cluster.py +291 -0
- oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
- oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
- oci/opensearch/models/shapes_details.py +70 -0
- oci/opensearch/models/update_cluster_specs_details.py +186 -0
- oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +87 -16
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/redis_cluster_client.py +12 -12
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +48 -48
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/METADATA +6 -1
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/RECORD +428 -313
- oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
- oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/LICENSE.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/WHEEL +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/top_level.txt +0 -0
@@ -145,6 +145,14 @@ class DiscoveredExternalDatabase(DiscoveredExternalDbSystemComponent):
|
|
145
145
|
The value to assign to the connector property of this DiscoveredExternalDatabase.
|
146
146
|
:type connector: oci.database_management.models.ExternalDbSystemDiscoveryConnector
|
147
147
|
|
148
|
+
:param can_enable_all_current_pdbs:
|
149
|
+
The value to assign to the can_enable_all_current_pdbs property of this DiscoveredExternalDatabase.
|
150
|
+
:type can_enable_all_current_pdbs: bool
|
151
|
+
|
152
|
+
:param is_auto_enable_pluggable_database:
|
153
|
+
The value to assign to the is_auto_enable_pluggable_database property of this DiscoveredExternalDatabase.
|
154
|
+
:type is_auto_enable_pluggable_database: bool
|
155
|
+
|
148
156
|
"""
|
149
157
|
self.swagger_types = {
|
150
158
|
'component_id': 'str',
|
@@ -165,7 +173,9 @@ class DiscoveredExternalDatabase(DiscoveredExternalDbSystemComponent):
|
|
165
173
|
'db_role': 'str',
|
166
174
|
'db_version': 'str',
|
167
175
|
'pluggable_databases': 'list[DiscoveredExternalPluggableDatabase]',
|
168
|
-
'connector': 'ExternalDbSystemDiscoveryConnector'
|
176
|
+
'connector': 'ExternalDbSystemDiscoveryConnector',
|
177
|
+
'can_enable_all_current_pdbs': 'bool',
|
178
|
+
'is_auto_enable_pluggable_database': 'bool'
|
169
179
|
}
|
170
180
|
self.attribute_map = {
|
171
181
|
'component_id': 'componentId',
|
@@ -186,7 +196,9 @@ class DiscoveredExternalDatabase(DiscoveredExternalDbSystemComponent):
|
|
186
196
|
'db_role': 'dbRole',
|
187
197
|
'db_version': 'dbVersion',
|
188
198
|
'pluggable_databases': 'pluggableDatabases',
|
189
|
-
'connector': 'connector'
|
199
|
+
'connector': 'connector',
|
200
|
+
'can_enable_all_current_pdbs': 'canEnableAllCurrentPdbs',
|
201
|
+
'is_auto_enable_pluggable_database': 'isAutoEnablePluggableDatabase'
|
190
202
|
}
|
191
203
|
self._component_id = None
|
192
204
|
self._display_name = None
|
@@ -207,6 +219,8 @@ class DiscoveredExternalDatabase(DiscoveredExternalDbSystemComponent):
|
|
207
219
|
self._db_version = None
|
208
220
|
self._pluggable_databases = None
|
209
221
|
self._connector = None
|
222
|
+
self._can_enable_all_current_pdbs = None
|
223
|
+
self._is_auto_enable_pluggable_database = None
|
210
224
|
self._component_type = 'DATABASE'
|
211
225
|
|
212
226
|
@property
|
@@ -487,6 +501,54 @@ class DiscoveredExternalDatabase(DiscoveredExternalDbSystemComponent):
|
|
487
501
|
"""
|
488
502
|
self._connector = connector
|
489
503
|
|
504
|
+
@property
|
505
|
+
def can_enable_all_current_pdbs(self):
|
506
|
+
"""
|
507
|
+
Gets the can_enable_all_current_pdbs of this DiscoveredExternalDatabase.
|
508
|
+
Indicates whether Diagnostics & Management should be enabled for all the current pluggable databases in the container database.
|
509
|
+
|
510
|
+
|
511
|
+
:return: The can_enable_all_current_pdbs of this DiscoveredExternalDatabase.
|
512
|
+
:rtype: bool
|
513
|
+
"""
|
514
|
+
return self._can_enable_all_current_pdbs
|
515
|
+
|
516
|
+
@can_enable_all_current_pdbs.setter
|
517
|
+
def can_enable_all_current_pdbs(self, can_enable_all_current_pdbs):
|
518
|
+
"""
|
519
|
+
Sets the can_enable_all_current_pdbs of this DiscoveredExternalDatabase.
|
520
|
+
Indicates whether Diagnostics & Management should be enabled for all the current pluggable databases in the container database.
|
521
|
+
|
522
|
+
|
523
|
+
:param can_enable_all_current_pdbs: The can_enable_all_current_pdbs of this DiscoveredExternalDatabase.
|
524
|
+
:type: bool
|
525
|
+
"""
|
526
|
+
self._can_enable_all_current_pdbs = can_enable_all_current_pdbs
|
527
|
+
|
528
|
+
@property
|
529
|
+
def is_auto_enable_pluggable_database(self):
|
530
|
+
"""
|
531
|
+
Gets the is_auto_enable_pluggable_database of this DiscoveredExternalDatabase.
|
532
|
+
Indicates whether Diagnostics & Management should be enabled automatically for all the pluggable databases in the container database.
|
533
|
+
|
534
|
+
|
535
|
+
:return: The is_auto_enable_pluggable_database of this DiscoveredExternalDatabase.
|
536
|
+
:rtype: bool
|
537
|
+
"""
|
538
|
+
return self._is_auto_enable_pluggable_database
|
539
|
+
|
540
|
+
@is_auto_enable_pluggable_database.setter
|
541
|
+
def is_auto_enable_pluggable_database(self, is_auto_enable_pluggable_database):
|
542
|
+
"""
|
543
|
+
Sets the is_auto_enable_pluggable_database of this DiscoveredExternalDatabase.
|
544
|
+
Indicates whether Diagnostics & Management should be enabled automatically for all the pluggable databases in the container database.
|
545
|
+
|
546
|
+
|
547
|
+
:param is_auto_enable_pluggable_database: The is_auto_enable_pluggable_database of this DiscoveredExternalDatabase.
|
548
|
+
:type: bool
|
549
|
+
"""
|
550
|
+
self._is_auto_enable_pluggable_database = is_auto_enable_pluggable_database
|
551
|
+
|
490
552
|
def __repr__(self):
|
491
553
|
return formatted_flat_dict(self)
|
492
554
|
|
@@ -15,83 +15,87 @@ class ExadataInfrastructureLifecycleStateValues(object):
|
|
15
15
|
the lifecycle state values for the Exadata infrastructure.
|
16
16
|
"""
|
17
17
|
|
18
|
-
#: A constant which can be used with the
|
18
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
19
19
|
#: This constant has a value of "CREATING"
|
20
|
-
|
20
|
+
STATE_CREATING = "CREATING"
|
21
21
|
|
22
|
-
#: A constant which can be used with the
|
22
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
23
23
|
#: This constant has a value of "ACTIVE"
|
24
|
-
|
24
|
+
STATE_ACTIVE = "ACTIVE"
|
25
25
|
|
26
|
-
#: A constant which can be used with the
|
26
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
27
27
|
#: This constant has a value of "INACTIVE"
|
28
|
-
|
28
|
+
STATE_INACTIVE = "INACTIVE"
|
29
29
|
|
30
|
-
#: A constant which can be used with the
|
30
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
31
31
|
#: This constant has a value of "UPDATING"
|
32
|
-
|
32
|
+
STATE_UPDATING = "UPDATING"
|
33
33
|
|
34
|
-
#: A constant which can be used with the
|
34
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
35
35
|
#: This constant has a value of "DELETING"
|
36
|
-
|
36
|
+
STATE_DELETING = "DELETING"
|
37
37
|
|
38
|
-
#: A constant which can be used with the
|
38
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
39
39
|
#: This constant has a value of "DELETED"
|
40
|
-
|
40
|
+
STATE_DELETED = "DELETED"
|
41
41
|
|
42
|
-
#: A constant which can be used with the
|
42
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
43
43
|
#: This constant has a value of "FAILED"
|
44
|
-
|
44
|
+
STATE_FAILED = "FAILED"
|
45
|
+
|
46
|
+
#: A constant which can be used with the state property of a ExadataInfrastructureLifecycleStateValues.
|
47
|
+
#: This constant has a value of "UNKNOWN"
|
48
|
+
STATE_UNKNOWN = "UNKNOWN"
|
45
49
|
|
46
50
|
def __init__(self, **kwargs):
|
47
51
|
"""
|
48
52
|
Initializes a new ExadataInfrastructureLifecycleStateValues object with values from keyword arguments.
|
49
53
|
The following keyword arguments are supported (corresponding to the getters/setters of this class):
|
50
54
|
|
51
|
-
:param
|
52
|
-
The value to assign to the
|
53
|
-
Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
|
54
|
-
:type
|
55
|
+
:param state:
|
56
|
+
The value to assign to the state property of this ExadataInfrastructureLifecycleStateValues.
|
57
|
+
Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "UNKNOWN"
|
58
|
+
:type state: str
|
55
59
|
|
56
60
|
"""
|
57
61
|
self.swagger_types = {
|
58
|
-
'
|
62
|
+
'state': 'str'
|
59
63
|
}
|
60
64
|
self.attribute_map = {
|
61
|
-
'
|
65
|
+
'state': 'state'
|
62
66
|
}
|
63
|
-
self.
|
67
|
+
self._state = None
|
64
68
|
|
65
69
|
@property
|
66
|
-
def
|
70
|
+
def state(self):
|
67
71
|
"""
|
68
|
-
Gets the
|
69
|
-
The current lifecycle state of the
|
72
|
+
Gets the state of this ExadataInfrastructureLifecycleStateValues.
|
73
|
+
The current lifecycle state of the Exadata infrastructure resource.
|
70
74
|
|
71
|
-
Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
|
75
|
+
Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "UNKNOWN"
|
72
76
|
|
73
77
|
|
74
|
-
:return: The
|
78
|
+
:return: The state of this ExadataInfrastructureLifecycleStateValues.
|
75
79
|
:rtype: str
|
76
80
|
"""
|
77
|
-
return self.
|
81
|
+
return self._state
|
78
82
|
|
79
|
-
@
|
80
|
-
def
|
83
|
+
@state.setter
|
84
|
+
def state(self, state):
|
81
85
|
"""
|
82
|
-
Sets the
|
83
|
-
The current lifecycle state of the
|
86
|
+
Sets the state of this ExadataInfrastructureLifecycleStateValues.
|
87
|
+
The current lifecycle state of the Exadata infrastructure resource.
|
84
88
|
|
85
89
|
|
86
|
-
:param
|
90
|
+
:param state: The state of this ExadataInfrastructureLifecycleStateValues.
|
87
91
|
:type: str
|
88
92
|
"""
|
89
|
-
allowed_values = ["CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"]
|
90
|
-
if not value_allowed_none_or_none_sentinel(
|
93
|
+
allowed_values = ["CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "UNKNOWN"]
|
94
|
+
if not value_allowed_none_or_none_sentinel(state, allowed_values):
|
91
95
|
raise ValueError(
|
92
|
-
f"Invalid value for `
|
96
|
+
f"Invalid value for `state`, must be None or one of {allowed_values}"
|
93
97
|
)
|
94
|
-
self.
|
98
|
+
self._state = state
|
95
99
|
|
96
100
|
def __repr__(self):
|
97
101
|
return formatted_flat_dict(self)
|
oci/database_management/models/external_database_diagnostics_and_management_feature_details.py
CHANGED
@@ -43,20 +43,34 @@ class ExternalDatabaseDiagnosticsAndManagementFeatureDetails(ExternalDatabaseFea
|
|
43
43
|
Allowed values for this property are: "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE"
|
44
44
|
:type license_model: str
|
45
45
|
|
46
|
+
:param can_enable_all_current_pdbs:
|
47
|
+
The value to assign to the can_enable_all_current_pdbs property of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
48
|
+
:type can_enable_all_current_pdbs: bool
|
49
|
+
|
50
|
+
:param is_auto_enable_pluggable_database:
|
51
|
+
The value to assign to the is_auto_enable_pluggable_database property of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
52
|
+
:type is_auto_enable_pluggable_database: bool
|
53
|
+
|
46
54
|
"""
|
47
55
|
self.swagger_types = {
|
48
56
|
'feature': 'str',
|
49
57
|
'connector_details': 'ConnectorDetails',
|
50
|
-
'license_model': 'str'
|
58
|
+
'license_model': 'str',
|
59
|
+
'can_enable_all_current_pdbs': 'bool',
|
60
|
+
'is_auto_enable_pluggable_database': 'bool'
|
51
61
|
}
|
52
62
|
self.attribute_map = {
|
53
63
|
'feature': 'feature',
|
54
64
|
'connector_details': 'connectorDetails',
|
55
|
-
'license_model': 'licenseModel'
|
65
|
+
'license_model': 'licenseModel',
|
66
|
+
'can_enable_all_current_pdbs': 'canEnableAllCurrentPdbs',
|
67
|
+
'is_auto_enable_pluggable_database': 'isAutoEnablePluggableDatabase'
|
56
68
|
}
|
57
69
|
self._feature = None
|
58
70
|
self._connector_details = None
|
59
71
|
self._license_model = None
|
72
|
+
self._can_enable_all_current_pdbs = None
|
73
|
+
self._is_auto_enable_pluggable_database = None
|
60
74
|
self._feature = 'DIAGNOSTICS_AND_MANAGEMENT'
|
61
75
|
|
62
76
|
@property
|
@@ -90,6 +104,54 @@ class ExternalDatabaseDiagnosticsAndManagementFeatureDetails(ExternalDatabaseFea
|
|
90
104
|
)
|
91
105
|
self._license_model = license_model
|
92
106
|
|
107
|
+
@property
|
108
|
+
def can_enable_all_current_pdbs(self):
|
109
|
+
"""
|
110
|
+
Gets the can_enable_all_current_pdbs of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
111
|
+
Indicates whether Diagnostics & Management should be enabled for all the current pluggable databases in the container database.
|
112
|
+
|
113
|
+
|
114
|
+
:return: The can_enable_all_current_pdbs of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
115
|
+
:rtype: bool
|
116
|
+
"""
|
117
|
+
return self._can_enable_all_current_pdbs
|
118
|
+
|
119
|
+
@can_enable_all_current_pdbs.setter
|
120
|
+
def can_enable_all_current_pdbs(self, can_enable_all_current_pdbs):
|
121
|
+
"""
|
122
|
+
Sets the can_enable_all_current_pdbs of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
123
|
+
Indicates whether Diagnostics & Management should be enabled for all the current pluggable databases in the container database.
|
124
|
+
|
125
|
+
|
126
|
+
:param can_enable_all_current_pdbs: The can_enable_all_current_pdbs of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
127
|
+
:type: bool
|
128
|
+
"""
|
129
|
+
self._can_enable_all_current_pdbs = can_enable_all_current_pdbs
|
130
|
+
|
131
|
+
@property
|
132
|
+
def is_auto_enable_pluggable_database(self):
|
133
|
+
"""
|
134
|
+
Gets the is_auto_enable_pluggable_database of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
135
|
+
Indicates whether Diagnostics & Management should be enabled automatically for all the pluggable databases in the container database.
|
136
|
+
|
137
|
+
|
138
|
+
:return: The is_auto_enable_pluggable_database of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
139
|
+
:rtype: bool
|
140
|
+
"""
|
141
|
+
return self._is_auto_enable_pluggable_database
|
142
|
+
|
143
|
+
@is_auto_enable_pluggable_database.setter
|
144
|
+
def is_auto_enable_pluggable_database(self, is_auto_enable_pluggable_database):
|
145
|
+
"""
|
146
|
+
Sets the is_auto_enable_pluggable_database of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
147
|
+
Indicates whether Diagnostics & Management should be enabled automatically for all the pluggable databases in the container database.
|
148
|
+
|
149
|
+
|
150
|
+
:param is_auto_enable_pluggable_database: The is_auto_enable_pluggable_database of this ExternalDatabaseDiagnosticsAndManagementFeatureDetails.
|
151
|
+
:type: bool
|
152
|
+
"""
|
153
|
+
self._is_auto_enable_pluggable_database = is_auto_enable_pluggable_database
|
154
|
+
|
93
155
|
def __repr__(self):
|
94
156
|
return formatted_flat_dict(self)
|
95
157
|
|
@@ -656,8 +656,7 @@ class ManagedDatabase(object):
|
|
656
656
|
def db_system_id(self):
|
657
657
|
"""
|
658
658
|
Gets the db_system_id of this ManagedDatabase.
|
659
|
-
The `OCID`__ of the
|
660
|
-
DB system that this Managed Database is part of.
|
659
|
+
The `OCID`__ of the DB system that this Managed Database is part of.
|
661
660
|
|
662
661
|
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
663
662
|
|
@@ -671,8 +670,7 @@ class ManagedDatabase(object):
|
|
671
670
|
def db_system_id(self, db_system_id):
|
672
671
|
"""
|
673
672
|
Sets the db_system_id of this ManagedDatabase.
|
674
|
-
The `OCID`__ of the
|
675
|
-
DB system that this Managed Database is part of.
|
673
|
+
The `OCID`__ of the DB system that this Managed Database is part of.
|
676
674
|
|
677
675
|
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
678
676
|
|
@@ -555,8 +555,7 @@ class ManagedDatabaseSummary(object):
|
|
555
555
|
def db_system_id(self):
|
556
556
|
"""
|
557
557
|
Gets the db_system_id of this ManagedDatabaseSummary.
|
558
|
-
The `OCID`__ of the
|
559
|
-
DB system that this Managed Database is part of.
|
558
|
+
The `OCID`__ of the DB system that this Managed Database is part of.
|
560
559
|
|
561
560
|
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
562
561
|
|
@@ -570,8 +569,7 @@ class ManagedDatabaseSummary(object):
|
|
570
569
|
def db_system_id(self, db_system_id):
|
571
570
|
"""
|
572
571
|
Sets the db_system_id of this ManagedDatabaseSummary.
|
573
|
-
The `OCID`__ of the
|
574
|
-
DB system that this Managed Database is part of.
|
572
|
+
The `OCID`__ of the DB system that this Managed Database is part of.
|
575
573
|
|
576
574
|
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
577
575
|
|
@@ -12,7 +12,7 @@ from oci.decorators import init_model_state_from_kwargs
|
|
12
12
|
@init_model_state_from_kwargs
|
13
13
|
class ModifyDatabaseManagementFeatureDetails(object):
|
14
14
|
"""
|
15
|
-
The details required to modify a Database Management
|
15
|
+
The details required to modify a Database Management feature for an Oracle cloud database.
|
16
16
|
"""
|
17
17
|
|
18
18
|
def __init__(self, **kwargs):
|
@@ -153,7 +153,7 @@ class PerfhubClient(object):
|
|
153
153
|
:rtype: :class:`~oci.response.Response`
|
154
154
|
|
155
155
|
:example:
|
156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
156
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/modify_snapshot_settings.py.html>`__ to see an example of how to use modify_snapshot_settings API.
|
157
157
|
"""
|
158
158
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
159
159
|
required_arguments = ['managedDatabaseId']
|
@@ -157,7 +157,7 @@ class SqlTuningClient(object):
|
|
157
157
|
:rtype: :class:`~oci.response.Response`
|
158
158
|
|
159
159
|
:example:
|
160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/clone_sql_tuning_task.py.html>`__ to see an example of how to use clone_sql_tuning_task API.
|
161
161
|
"""
|
162
162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
163
163
|
required_arguments = ['managedDatabaseId']
|
@@ -270,7 +270,7 @@ class SqlTuningClient(object):
|
|
270
270
|
:rtype: :class:`~oci.response.Response`
|
271
271
|
|
272
272
|
:example:
|
273
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
273
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/create_sql_tuning_set.py.html>`__ to see an example of how to use create_sql_tuning_set API.
|
274
274
|
"""
|
275
275
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
276
276
|
required_arguments = ['managedDatabaseId']
|
@@ -388,7 +388,7 @@ class SqlTuningClient(object):
|
|
388
388
|
:rtype: :class:`~oci.response.Response`
|
389
389
|
|
390
390
|
:example:
|
391
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
391
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/drop_sql_tuning_set.py.html>`__ to see an example of how to use drop_sql_tuning_set API.
|
392
392
|
"""
|
393
393
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
394
394
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|
@@ -504,7 +504,7 @@ class SqlTuningClient(object):
|
|
504
504
|
:rtype: :class:`~oci.response.Response`
|
505
505
|
|
506
506
|
:example:
|
507
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
507
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/drop_sql_tuning_task.py.html>`__ to see an example of how to use drop_sql_tuning_task API.
|
508
508
|
"""
|
509
509
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
510
510
|
required_arguments = ['managedDatabaseId']
|
@@ -619,7 +619,7 @@ class SqlTuningClient(object):
|
|
619
619
|
:rtype: :class:`~oci.response.Response`
|
620
620
|
|
621
621
|
:example:
|
622
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
622
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/drop_sqls_in_sql_tuning_set.py.html>`__ to see an example of how to use drop_sqls_in_sql_tuning_set API.
|
623
623
|
"""
|
624
624
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
625
625
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|
@@ -738,7 +738,7 @@ class SqlTuningClient(object):
|
|
738
738
|
:rtype: :class:`~oci.response.Response`
|
739
739
|
|
740
740
|
:example:
|
741
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
741
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/fetch_sql_tuning_set.py.html>`__ to see an example of how to use fetch_sql_tuning_set API.
|
742
742
|
"""
|
743
743
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
744
744
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|
@@ -864,7 +864,7 @@ class SqlTuningClient(object):
|
|
864
864
|
:rtype: :class:`~oci.response.Response`
|
865
865
|
|
866
866
|
:example:
|
867
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
867
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_execution_plan_stats_comparision.py.html>`__ to see an example of how to use get_execution_plan_stats_comparision API.
|
868
868
|
"""
|
869
869
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
870
870
|
required_arguments = ['managedDatabaseId', 'sqlTuningAdvisorTaskId', 'sqlObjectId', 'executionId']
|
@@ -991,7 +991,7 @@ class SqlTuningClient(object):
|
|
991
991
|
:rtype: :class:`~oci.response.Response`
|
992
992
|
|
993
993
|
:example:
|
994
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
994
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_sql_execution_plan.py.html>`__ to see an example of how to use get_sql_execution_plan API.
|
995
995
|
"""
|
996
996
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
997
997
|
required_arguments = ['managedDatabaseId', 'sqlTuningAdvisorTaskId', 'sqlObjectId', 'attribute']
|
@@ -1131,7 +1131,7 @@ class SqlTuningClient(object):
|
|
1131
1131
|
:rtype: :class:`~oci.response.Response`
|
1132
1132
|
|
1133
1133
|
:example:
|
1134
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1134
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/get_sql_tuning_advisor_task_summary_report.py.html>`__ to see an example of how to use get_sql_tuning_advisor_task_summary_report API.
|
1135
1135
|
"""
|
1136
1136
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1137
1137
|
required_arguments = ['managedDatabaseId', 'sqlTuningAdvisorTaskId']
|
@@ -1303,7 +1303,7 @@ class SqlTuningClient(object):
|
|
1303
1303
|
:rtype: :class:`~oci.response.Response`
|
1304
1304
|
|
1305
1305
|
:example:
|
1306
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1306
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_tuning_advisor_task_findings.py.html>`__ to see an example of how to use list_sql_tuning_advisor_task_findings API.
|
1307
1307
|
"""
|
1308
1308
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1309
1309
|
required_arguments = ['managedDatabaseId', 'sqlTuningAdvisorTaskId']
|
@@ -1494,7 +1494,7 @@ class SqlTuningClient(object):
|
|
1494
1494
|
:rtype: :class:`~oci.response.Response`
|
1495
1495
|
|
1496
1496
|
:example:
|
1497
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1497
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_tuning_advisor_task_recommendations.py.html>`__ to see an example of how to use list_sql_tuning_advisor_task_recommendations API.
|
1498
1498
|
"""
|
1499
1499
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1500
1500
|
required_arguments = ['managedDatabaseId', 'sqlTuningAdvisorTaskId', 'sqlObjectId', 'executionId']
|
@@ -1659,7 +1659,7 @@ class SqlTuningClient(object):
|
|
1659
1659
|
:rtype: :class:`~oci.response.Response`
|
1660
1660
|
|
1661
1661
|
:example:
|
1662
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_tuning_advisor_tasks.py.html>`__ to see an example of how to use list_sql_tuning_advisor_tasks API.
|
1663
1663
|
"""
|
1664
1664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1665
1665
|
required_arguments = ['managedDatabaseId']
|
@@ -1828,7 +1828,7 @@ class SqlTuningClient(object):
|
|
1828
1828
|
:rtype: :class:`~oci.response.Response`
|
1829
1829
|
|
1830
1830
|
:example:
|
1831
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1831
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/list_sql_tuning_sets.py.html>`__ to see an example of how to use list_sql_tuning_sets API.
|
1832
1832
|
"""
|
1833
1833
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1834
1834
|
required_arguments = ['managedDatabaseId']
|
@@ -1973,7 +1973,7 @@ class SqlTuningClient(object):
|
|
1973
1973
|
:rtype: :class:`~oci.response.Response`
|
1974
1974
|
|
1975
1975
|
:example:
|
1976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1976
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/load_sql_tuning_set.py.html>`__ to see an example of how to use load_sql_tuning_set API.
|
1977
1977
|
"""
|
1978
1978
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1979
1979
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|
@@ -2092,7 +2092,7 @@ class SqlTuningClient(object):
|
|
2092
2092
|
:rtype: :class:`~oci.response.Response`
|
2093
2093
|
|
2094
2094
|
:example:
|
2095
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2095
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/save_sql_tuning_set_as.py.html>`__ to see an example of how to use save_sql_tuning_set_as API.
|
2096
2096
|
"""
|
2097
2097
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2098
2098
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|
@@ -2208,7 +2208,7 @@ class SqlTuningClient(object):
|
|
2208
2208
|
:rtype: :class:`~oci.response.Response`
|
2209
2209
|
|
2210
2210
|
:example:
|
2211
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2211
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/start_sql_tuning_task.py.html>`__ to see an example of how to use start_sql_tuning_task API.
|
2212
2212
|
"""
|
2213
2213
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2214
2214
|
required_arguments = ['managedDatabaseId']
|
@@ -2324,7 +2324,7 @@ class SqlTuningClient(object):
|
|
2324
2324
|
:rtype: :class:`~oci.response.Response`
|
2325
2325
|
|
2326
2326
|
:example:
|
2327
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2327
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/databasemanagement/validate_basic_filter.py.html>`__ to see an example of how to use validate_basic_filter API.
|
2328
2328
|
"""
|
2329
2329
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2330
2330
|
required_arguments = ['managedDatabaseId', 'sqlTuningSetId']
|