oci 2.154.2__py3-none-any.whl → 2.155.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/adk/agent.py +82 -32
- oci/addons/adk/mcp/__init__.py +11 -0
- oci/addons/adk/mcp/mcp_client.py +420 -0
- oci/addons/adk/tool/function_tool.py +7 -3
- oci/addons/adk/tool/tool.py +11 -1
- oci/addons/adk/tool/toolkit.py +11 -2
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apiaccesscontrol/api_metadata_client.py +6 -6
- oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
- oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
- oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/__init__.py +3 -1
- oci/apm_traces/attributes_client.py +12 -12
- oci/apm_traces/models/__init__.py +25 -1
- oci/apm_traces/models/attribute.py +101 -0
- oci/apm_traces/models/attribute_metadata.py +149 -0
- oci/apm_traces/models/attribute_response.py +2 -2
- oci/apm_traces/models/attribute_update_response.py +2 -2
- oci/apm_traces/models/auto_activate_status.py +16 -0
- oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
- oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
- oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
- oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
- oci/apm_traces/models/create_scheduled_query_details.py +471 -0
- oci/apm_traces/models/custom_metric.py +295 -0
- oci/apm_traces/models/log.py +475 -0
- oci/apm_traces/models/object_storage.py +132 -0
- oci/apm_traces/models/scheduled_query.py +666 -0
- oci/apm_traces/models/scheduled_query_collection.py +70 -0
- oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
- oci/apm_traces/models/scheduled_query_summary.py +573 -0
- oci/apm_traces/models/streaming.py +70 -0
- oci/apm_traces/models/tag_metadata.py +2 -2
- oci/apm_traces/models/update_scheduled_query_details.py +471 -0
- oci/apm_traces/query_client.py +8 -6
- oci/apm_traces/scheduled_query_client.py +755 -0
- oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
- oci/apm_traces/trace_client.py +131 -6
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/base_client.py +3 -0
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +88 -88
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/capacity_management/demand_signal_client.py +13 -13
- oci/capacity_management/internal_demand_signal_client.py +12 -12
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +125 -125
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +901 -421
- oci/database/database_client_composite_operations.py +123 -0
- oci/database/models/__init__.py +14 -0
- oci/database/models/autonomous_container_database.py +37 -0
- oci/database/models/autonomous_container_database_summary.py +37 -0
- oci/database/models/autonomous_database_software_image.py +37 -0
- oci/database/models/autonomous_database_software_image_summary.py +37 -0
- oci/database/models/autonomous_vm_cluster.py +37 -0
- oci/database/models/autonomous_vm_cluster_summary.py +37 -0
- oci/database/models/azure_encryption_key_details.py +80 -0
- oci/database/models/backup.py +7 -3
- oci/database/models/backup_destination.py +37 -0
- oci/database/models/backup_destination_configuration_summary.py +7 -3
- oci/database/models/backup_destination_details.py +7 -3
- oci/database/models/backup_destination_details_summary.py +7 -3
- oci/database/models/backup_destination_summary.py +37 -0
- oci/database/models/backup_summary.py +7 -3
- oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
- oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
- oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
- oci/database/models/cloud_vm_cluster.py +80 -2
- oci/database/models/cloud_vm_cluster_summary.py +80 -2
- oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
- oci/database/models/create_cloud_vm_cluster_details.py +17 -17
- oci/database/models/create_database_base.py +1 -1
- oci/database/models/create_vm_cluster_details.py +2 -2
- oci/database/models/database.py +37 -0
- oci/database/models/database_software_image.py +37 -0
- oci/database/models/database_software_image_summary.py +37 -0
- oci/database/models/database_summary.py +37 -0
- oci/database/models/db_home.py +37 -0
- oci/database/models/db_home_from_agent_resource_id.py +37 -0
- oci/database/models/db_home_summary.py +37 -0
- oci/database/models/db_node.py +37 -0
- oci/database/models/db_node_summary.py +37 -0
- oci/database/models/db_server.py +37 -0
- oci/database/models/db_server_summary.py +37 -0
- oci/database/models/db_system.py +37 -0
- oci/database/models/db_system_summary.py +37 -0
- oci/database/models/encryption_key_location_details.py +15 -5
- oci/database/models/exadata_infrastructure.py +37 -0
- oci/database/models/exadata_infrastructure_summary.py +37 -0
- oci/database/models/execution_action.py +39 -2
- oci/database/models/execution_action_summary.py +39 -2
- oci/database/models/execution_window.py +39 -2
- oci/database/models/execution_window_summary.py +39 -2
- oci/database/models/external_container_database.py +37 -0
- oci/database/models/external_container_database_summary.py +37 -0
- oci/database/models/external_database_base.py +37 -0
- oci/database/models/external_database_connector.py +37 -0
- oci/database/models/external_database_connector_summary.py +37 -0
- oci/database/models/external_hsm_encryption_details.py +1 -1
- oci/database/models/external_macs_connector.py +7 -0
- oci/database/models/external_macs_connector_summary.py +7 -0
- oci/database/models/external_non_container_database.py +37 -0
- oci/database/models/external_non_container_database_summary.py +37 -0
- oci/database/models/external_pluggable_database.py +37 -0
- oci/database/models/external_pluggable_database_summary.py +37 -0
- oci/database/models/identity_connector_details.py +113 -0
- oci/database/models/key_store.py +39 -2
- oci/database/models/key_store_summary.py +39 -2
- oci/database/models/maintenance_run.py +37 -0
- oci/database/models/maintenance_run_history.py +39 -2
- oci/database/models/maintenance_run_history_summary.py +39 -2
- oci/database/models/maintenance_run_summary.py +37 -0
- oci/database/models/oneoff_patch.py +39 -2
- oci/database/models/oneoff_patch_summary.py +39 -2
- oci/database/models/pluggable_database.py +37 -0
- oci/database/models/pluggable_database_summary.py +37 -0
- oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/resource_pool_member_collection.py +70 -0
- oci/database/models/resource_pool_member_summary.py +74 -0
- oci/database/models/scheduling_policy.py +39 -2
- oci/database/models/scheduling_policy_summary.py +39 -2
- oci/database/models/scheduling_window.py +39 -2
- oci/database/models/scheduling_window_summary.py +39 -2
- oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/vm_cluster.py +37 -0
- oci/database/models/vm_cluster_network.py +39 -2
- oci/database/models/vm_cluster_network_summary.py +39 -2
- oci/database/models/vm_cluster_summary.py +37 -0
- oci/database_management/db_management_client.py +229 -229
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +15 -15
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +155 -42
- oci/database_migration/database_migration_client_composite_operations.py +42 -0
- oci/database_migration/models/__init__.py +4 -0
- oci/database_migration/models/collect_traces_data.py +183 -0
- oci/database_migration/models/collect_traces_details.py +132 -0
- oci/database_migration/models/job.py +27 -0
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/dbmulticloud/__init__.py +28 -0
- oci/dbmulticloud/models/__init__.py +112 -0
- oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
- oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
- oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
- oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
- oci/dbmulticloud/models/resources.py +229 -0
- oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/work_request.py +496 -0
- oci/dbmulticloud/models/work_request_error.py +134 -0
- oci/dbmulticloud/models/work_request_error_collection.py +70 -0
- oci/dbmulticloud/models/work_request_log_entry.py +101 -0
- oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
- oci/dbmulticloud/models/work_request_resource.py +232 -0
- oci/dbmulticloud/models/work_request_summary.py +496 -0
- oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
- oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
- oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
- oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
- oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
- oci/dbmulticloud/work_request_client.py +770 -0
- oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
- oci/distributed_database/distributed_db_service_client.py +19 -19
- oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/fleet_software_update/models/__init__.py +12 -0
- oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
- oci/fleet_software_update/models/fsu_cycle.py +11 -3
- oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
- oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
- oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
- oci/fleet_software_update/models/upgrade_details.py +107 -0
- oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
- oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/load_balancer/models/backend.py +4 -4
- oci/load_balancer/models/backend_details.py +10 -4
- oci/load_balancer/models/backend_set.py +6 -4
- oci/load_balancer/models/backend_set_details.py +12 -4
- oci/load_balancer/models/create_backend_details.py +10 -4
- oci/load_balancer/models/create_backend_set_details.py +12 -4
- oci/load_balancer/models/create_listener_details.py +6 -4
- oci/load_balancer/models/create_load_balancer_details.py +39 -0
- oci/load_balancer/models/listener.py +6 -4
- oci/load_balancer/models/listener_details.py +6 -4
- oci/load_balancer/models/load_balancer.py +61 -2
- oci/load_balancer/models/reserved_ip.py +4 -0
- oci/load_balancer/models/update_backend_details.py +10 -4
- oci/load_balancer/models/update_backend_set_details.py +12 -4
- oci/load_balancer/models/update_listener_details.py +6 -4
- oci/load_balancer/models/update_load_balancer_details.py +59 -0
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +18 -18
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/model_deployment_client.py +2 -2
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +8 -8
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/__init__.py +2 -0
- oci/mysql/models/backup.py +29 -2
- oci/mysql/models/backup_summary.py +29 -2
- oci/mysql/models/copy_backup_details.py +29 -2
- oci/mysql/models/create_db_system_details.py +27 -0
- oci/mysql/models/db_system.py +27 -0
- oci/mysql/models/db_system_snapshot.py +27 -0
- oci/mysql/models/encrypt_data_details.py +117 -0
- oci/mysql/models/replica.py +27 -0
- oci/mysql/models/update_db_system_details.py +27 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +92 -92
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/models/__init__.py +14 -0
- oci/nosql/models/configuration.py +109 -0
- oci/nosql/models/hosted_configuration.py +78 -0
- oci/nosql/models/kms_key.py +244 -0
- oci/nosql/models/multi_tenancy_configuration.py +49 -0
- oci/nosql/models/update_configuration_details.py +109 -0
- oci/nosql/models/update_hosted_configuration_details.py +78 -0
- oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
- oci/nosql/models/work_request.py +7 -3
- oci/nosql/models/work_request_summary.py +7 -3
- oci/nosql/nosql_client.py +340 -25
- oci/nosql/nosql_client_composite_operations.py +81 -0
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +17 -17
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/oci_cache_user_client.py +7 -7
- oci/redis/redis_cluster_client.py +15 -15
- oci/redis/redis_identity_client.py +1 -1
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +96 -96
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/wlms/weblogic_management_service_client.py +41 -41
- oci/wlms/weblogic_management_service_configuration_client.py +2 -2
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
@@ -163,7 +163,7 @@ class OperationsInsightsClient(object):
|
|
163
163
|
:rtype: :class:`~oci.response.Response`
|
164
164
|
|
165
165
|
:example:
|
166
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
166
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/add_exadata_insight_members.py.html>`__ to see an example of how to use add_exadata_insight_members API.
|
167
167
|
"""
|
168
168
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
169
169
|
required_arguments = ['exadataInsightId']
|
@@ -283,7 +283,7 @@ class OperationsInsightsClient(object):
|
|
283
283
|
:rtype: :class:`~oci.response.Response`
|
284
284
|
|
285
285
|
:example:
|
286
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
286
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_autonomous_database_insight_advanced_features.py.html>`__ to see an example of how to use change_autonomous_database_insight_advanced_features API.
|
287
287
|
"""
|
288
288
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
289
289
|
required_arguments = ['databaseInsightId']
|
@@ -403,7 +403,7 @@ class OperationsInsightsClient(object):
|
|
403
403
|
:rtype: :class:`~oci.response.Response`
|
404
404
|
|
405
405
|
:example:
|
406
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
406
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_awr_hub_source_compartment.py.html>`__ to see an example of how to use change_awr_hub_source_compartment API.
|
407
407
|
"""
|
408
408
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
409
409
|
required_arguments = ['awrHubSourceId']
|
@@ -523,7 +523,7 @@ class OperationsInsightsClient(object):
|
|
523
523
|
:rtype: :class:`~oci.response.Response`
|
524
524
|
|
525
525
|
:example:
|
526
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
526
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_database_insight_compartment.py.html>`__ to see an example of how to use change_database_insight_compartment API.
|
527
527
|
"""
|
528
528
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
529
529
|
required_arguments = ['databaseInsightId']
|
@@ -635,7 +635,7 @@ class OperationsInsightsClient(object):
|
|
635
635
|
:rtype: :class:`~oci.response.Response`
|
636
636
|
|
637
637
|
:example:
|
638
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
638
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_enterprise_manager_bridge_compartment.py.html>`__ to see an example of how to use change_enterprise_manager_bridge_compartment API.
|
639
639
|
"""
|
640
640
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
641
641
|
required_arguments = ['enterpriseManagerBridgeId']
|
@@ -752,7 +752,7 @@ class OperationsInsightsClient(object):
|
|
752
752
|
:rtype: :class:`~oci.response.Response`
|
753
753
|
|
754
754
|
:example:
|
755
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
755
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_exadata_insight_compartment.py.html>`__ to see an example of how to use change_exadata_insight_compartment API.
|
756
756
|
"""
|
757
757
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
758
758
|
required_arguments = ['exadataInsightId']
|
@@ -872,7 +872,7 @@ class OperationsInsightsClient(object):
|
|
872
872
|
:rtype: :class:`~oci.response.Response`
|
873
873
|
|
874
874
|
:example:
|
875
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
875
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_external_mysql_database_insight_connection.py.html>`__ to see an example of how to use change_external_mysql_database_insight_connection API.
|
876
876
|
"""
|
877
877
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
878
878
|
required_arguments = ['databaseInsightId']
|
@@ -992,7 +992,7 @@ class OperationsInsightsClient(object):
|
|
992
992
|
:rtype: :class:`~oci.response.Response`
|
993
993
|
|
994
994
|
:example:
|
995
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
995
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_host_insight_compartment.py.html>`__ to see an example of how to use change_host_insight_compartment API.
|
996
996
|
"""
|
997
997
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
998
998
|
required_arguments = ['hostInsightId']
|
@@ -1112,7 +1112,7 @@ class OperationsInsightsClient(object):
|
|
1112
1112
|
:rtype: :class:`~oci.response.Response`
|
1113
1113
|
|
1114
1114
|
:example:
|
1115
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1115
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_macs_managed_cloud_database_insight_connection.py.html>`__ to see an example of how to use change_macs_managed_cloud_database_insight_connection API.
|
1116
1116
|
"""
|
1117
1117
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1118
1118
|
required_arguments = ['databaseInsightId']
|
@@ -1232,7 +1232,7 @@ class OperationsInsightsClient(object):
|
|
1232
1232
|
:rtype: :class:`~oci.response.Response`
|
1233
1233
|
|
1234
1234
|
:example:
|
1235
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1235
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_news_report_compartment.py.html>`__ to see an example of how to use change_news_report_compartment API.
|
1236
1236
|
"""
|
1237
1237
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1238
1238
|
required_arguments = ['newsReportId']
|
@@ -1354,7 +1354,7 @@ class OperationsInsightsClient(object):
|
|
1354
1354
|
:rtype: :class:`~oci.response.Response`
|
1355
1355
|
|
1356
1356
|
:example:
|
1357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1357
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_operations_insights_private_endpoint_compartment.py.html>`__ to see an example of how to use change_operations_insights_private_endpoint_compartment API.
|
1358
1358
|
"""
|
1359
1359
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1360
1360
|
required_arguments = ['operationsInsightsPrivateEndpointId']
|
@@ -1474,7 +1474,7 @@ class OperationsInsightsClient(object):
|
|
1474
1474
|
:rtype: :class:`~oci.response.Response`
|
1475
1475
|
|
1476
1476
|
:example:
|
1477
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_operations_insights_warehouse_compartment.py.html>`__ to see an example of how to use change_operations_insights_warehouse_compartment API.
|
1478
1478
|
"""
|
1479
1479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1480
1480
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -1596,7 +1596,7 @@ class OperationsInsightsClient(object):
|
|
1596
1596
|
:rtype: :class:`~oci.response.Response`
|
1597
1597
|
|
1598
1598
|
:example:
|
1599
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1599
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/change_opsi_configuration_compartment.py.html>`__ to see an example of how to use change_opsi_configuration_compartment API.
|
1600
1600
|
"""
|
1601
1601
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1602
1602
|
required_arguments = ['opsiConfigurationId']
|
@@ -1716,7 +1716,7 @@ class OperationsInsightsClient(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.155.0/opsi/change_pe_comanaged_database_insight.py.html>`__ to see an example of how to use change_pe_comanaged_database_insight API.
|
1720
1720
|
"""
|
1721
1721
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1722
1722
|
required_arguments = ['databaseInsightId']
|
@@ -1829,7 +1829,7 @@ class OperationsInsightsClient(object):
|
|
1829
1829
|
:rtype: :class:`~oci.response.Response`
|
1830
1830
|
|
1831
1831
|
:example:
|
1832
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1832
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_awr_hub.py.html>`__ to see an example of how to use create_awr_hub API.
|
1833
1833
|
"""
|
1834
1834
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1835
1835
|
required_arguments = []
|
@@ -1929,7 +1929,7 @@ class OperationsInsightsClient(object):
|
|
1929
1929
|
:rtype: :class:`~oci.response.Response`
|
1930
1930
|
|
1931
1931
|
:example:
|
1932
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1932
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_awr_hub_source.py.html>`__ to see an example of how to use create_awr_hub_source API.
|
1933
1933
|
"""
|
1934
1934
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1935
1935
|
required_arguments = []
|
@@ -2029,7 +2029,7 @@ class OperationsInsightsClient(object):
|
|
2029
2029
|
:rtype: :class:`~oci.response.Response`
|
2030
2030
|
|
2031
2031
|
:example:
|
2032
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2032
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_database_insight.py.html>`__ to see an example of how to use create_database_insight API.
|
2033
2033
|
"""
|
2034
2034
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2035
2035
|
required_arguments = []
|
@@ -2129,7 +2129,7 @@ class OperationsInsightsClient(object):
|
|
2129
2129
|
:rtype: :class:`~oci.response.Response`
|
2130
2130
|
|
2131
2131
|
:example:
|
2132
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2132
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_enterprise_manager_bridge.py.html>`__ to see an example of how to use create_enterprise_manager_bridge API.
|
2133
2133
|
"""
|
2134
2134
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2135
2135
|
required_arguments = []
|
@@ -2229,7 +2229,7 @@ class OperationsInsightsClient(object):
|
|
2229
2229
|
:rtype: :class:`~oci.response.Response`
|
2230
2230
|
|
2231
2231
|
:example:
|
2232
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2232
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_exadata_insight.py.html>`__ to see an example of how to use create_exadata_insight API.
|
2233
2233
|
"""
|
2234
2234
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2235
2235
|
required_arguments = []
|
@@ -2329,7 +2329,7 @@ class OperationsInsightsClient(object):
|
|
2329
2329
|
:rtype: :class:`~oci.response.Response`
|
2330
2330
|
|
2331
2331
|
:example:
|
2332
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2332
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_host_insight.py.html>`__ to see an example of how to use create_host_insight API.
|
2333
2333
|
"""
|
2334
2334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2335
2335
|
required_arguments = []
|
@@ -2429,7 +2429,7 @@ class OperationsInsightsClient(object):
|
|
2429
2429
|
:rtype: :class:`~oci.response.Response`
|
2430
2430
|
|
2431
2431
|
:example:
|
2432
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2432
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_news_report.py.html>`__ to see an example of how to use create_news_report API.
|
2433
2433
|
"""
|
2434
2434
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2435
2435
|
required_arguments = []
|
@@ -2530,7 +2530,7 @@ class OperationsInsightsClient(object):
|
|
2530
2530
|
:rtype: :class:`~oci.response.Response`
|
2531
2531
|
|
2532
2532
|
:example:
|
2533
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2533
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_operations_insights_private_endpoint.py.html>`__ to see an example of how to use create_operations_insights_private_endpoint API.
|
2534
2534
|
"""
|
2535
2535
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2536
2536
|
required_arguments = []
|
@@ -2632,7 +2632,7 @@ class OperationsInsightsClient(object):
|
|
2632
2632
|
:rtype: :class:`~oci.response.Response`
|
2633
2633
|
|
2634
2634
|
:example:
|
2635
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2635
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_operations_insights_warehouse.py.html>`__ to see an example of how to use create_operations_insights_warehouse API.
|
2636
2636
|
"""
|
2637
2637
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2638
2638
|
required_arguments = []
|
@@ -2733,7 +2733,7 @@ class OperationsInsightsClient(object):
|
|
2733
2733
|
:rtype: :class:`~oci.response.Response`
|
2734
2734
|
|
2735
2735
|
:example:
|
2736
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2736
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_operations_insights_warehouse_user.py.html>`__ to see an example of how to use create_operations_insights_warehouse_user API.
|
2737
2737
|
"""
|
2738
2738
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2739
2739
|
required_arguments = []
|
@@ -2852,7 +2852,7 @@ class OperationsInsightsClient(object):
|
|
2852
2852
|
:rtype: :class:`~oci.response.Response`
|
2853
2853
|
|
2854
2854
|
:example:
|
2855
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2855
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/create_opsi_configuration.py.html>`__ to see an example of how to use create_opsi_configuration API.
|
2856
2856
|
"""
|
2857
2857
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2858
2858
|
required_arguments = []
|
@@ -2987,7 +2987,7 @@ class OperationsInsightsClient(object):
|
|
2987
2987
|
:rtype: :class:`~oci.response.Response`
|
2988
2988
|
|
2989
2989
|
:example:
|
2990
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2990
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_awr_hub.py.html>`__ to see an example of how to use delete_awr_hub API.
|
2991
2991
|
"""
|
2992
2992
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2993
2993
|
required_arguments = ['awrHubId']
|
@@ -3094,7 +3094,7 @@ class OperationsInsightsClient(object):
|
|
3094
3094
|
:rtype: :class:`~oci.response.Response`
|
3095
3095
|
|
3096
3096
|
:example:
|
3097
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3097
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_awr_hub_object.py.html>`__ to see an example of how to use delete_awr_hub_object API.
|
3098
3098
|
"""
|
3099
3099
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3100
3100
|
required_arguments = ['awrHubSourceId', 'objectName']
|
@@ -3199,7 +3199,7 @@ class OperationsInsightsClient(object):
|
|
3199
3199
|
:rtype: :class:`~oci.response.Response`
|
3200
3200
|
|
3201
3201
|
:example:
|
3202
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3202
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_awr_hub_source.py.html>`__ to see an example of how to use delete_awr_hub_source API.
|
3203
3203
|
"""
|
3204
3204
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3205
3205
|
required_arguments = ['awrHubSourceId']
|
@@ -3303,7 +3303,7 @@ class OperationsInsightsClient(object):
|
|
3303
3303
|
:rtype: :class:`~oci.response.Response`
|
3304
3304
|
|
3305
3305
|
:example:
|
3306
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3306
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_database_insight.py.html>`__ to see an example of how to use delete_database_insight API.
|
3307
3307
|
"""
|
3308
3308
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3309
3309
|
required_arguments = ['databaseInsightId']
|
@@ -3407,7 +3407,7 @@ class OperationsInsightsClient(object):
|
|
3407
3407
|
:rtype: :class:`~oci.response.Response`
|
3408
3408
|
|
3409
3409
|
:example:
|
3410
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3410
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_enterprise_manager_bridge.py.html>`__ to see an example of how to use delete_enterprise_manager_bridge API.
|
3411
3411
|
"""
|
3412
3412
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3413
3413
|
required_arguments = ['enterpriseManagerBridgeId']
|
@@ -3511,7 +3511,7 @@ class OperationsInsightsClient(object):
|
|
3511
3511
|
:rtype: :class:`~oci.response.Response`
|
3512
3512
|
|
3513
3513
|
:example:
|
3514
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3514
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_exadata_insight.py.html>`__ to see an example of how to use delete_exadata_insight API.
|
3515
3515
|
"""
|
3516
3516
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3517
3517
|
required_arguments = ['exadataInsightId']
|
@@ -3615,7 +3615,7 @@ class OperationsInsightsClient(object):
|
|
3615
3615
|
:rtype: :class:`~oci.response.Response`
|
3616
3616
|
|
3617
3617
|
:example:
|
3618
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_host_insight.py.html>`__ to see an example of how to use delete_host_insight API.
|
3619
3619
|
"""
|
3620
3620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3621
3621
|
required_arguments = ['hostInsightId']
|
@@ -3719,7 +3719,7 @@ class OperationsInsightsClient(object):
|
|
3719
3719
|
:rtype: :class:`~oci.response.Response`
|
3720
3720
|
|
3721
3721
|
:example:
|
3722
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3722
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_news_report.py.html>`__ to see an example of how to use delete_news_report API.
|
3723
3723
|
"""
|
3724
3724
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3725
3725
|
required_arguments = ['newsReportId']
|
@@ -3825,7 +3825,7 @@ class OperationsInsightsClient(object):
|
|
3825
3825
|
:rtype: :class:`~oci.response.Response`
|
3826
3826
|
|
3827
3827
|
:example:
|
3828
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3828
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_operations_insights_private_endpoint.py.html>`__ to see an example of how to use delete_operations_insights_private_endpoint API.
|
3829
3829
|
"""
|
3830
3830
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3831
3831
|
required_arguments = ['operationsInsightsPrivateEndpointId']
|
@@ -3932,7 +3932,7 @@ class OperationsInsightsClient(object):
|
|
3932
3932
|
:rtype: :class:`~oci.response.Response`
|
3933
3933
|
|
3934
3934
|
:example:
|
3935
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3935
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_operations_insights_warehouse.py.html>`__ to see an example of how to use delete_operations_insights_warehouse API.
|
3936
3936
|
"""
|
3937
3937
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3938
3938
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -4036,7 +4036,7 @@ class OperationsInsightsClient(object):
|
|
4036
4036
|
:rtype: :class:`~oci.response.Response`
|
4037
4037
|
|
4038
4038
|
:example:
|
4039
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4039
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_operations_insights_warehouse_user.py.html>`__ to see an example of how to use delete_operations_insights_warehouse_user API.
|
4040
4040
|
"""
|
4041
4041
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4042
4042
|
required_arguments = ['operationsInsightsWarehouseUserId']
|
@@ -4142,7 +4142,7 @@ class OperationsInsightsClient(object):
|
|
4142
4142
|
:rtype: :class:`~oci.response.Response`
|
4143
4143
|
|
4144
4144
|
:example:
|
4145
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4145
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/delete_opsi_configuration.py.html>`__ to see an example of how to use delete_opsi_configuration API.
|
4146
4146
|
"""
|
4147
4147
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4148
4148
|
required_arguments = ['opsiConfigurationId']
|
@@ -4254,7 +4254,7 @@ class OperationsInsightsClient(object):
|
|
4254
4254
|
:rtype: :class:`~oci.response.Response`
|
4255
4255
|
|
4256
4256
|
:example:
|
4257
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4257
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/disable_autonomous_database_insight_advanced_features.py.html>`__ to see an example of how to use disable_autonomous_database_insight_advanced_features API.
|
4258
4258
|
"""
|
4259
4259
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4260
4260
|
required_arguments = ['databaseInsightId']
|
@@ -4369,7 +4369,7 @@ class OperationsInsightsClient(object):
|
|
4369
4369
|
:rtype: :class:`~oci.response.Response`
|
4370
4370
|
|
4371
4371
|
:example:
|
4372
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/disable_awr_hub_source.py.html>`__ to see an example of how to use disable_awr_hub_source API.
|
4373
4373
|
"""
|
4374
4374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4375
4375
|
required_arguments = ['awrHubSourceId']
|
@@ -4484,7 +4484,7 @@ class OperationsInsightsClient(object):
|
|
4484
4484
|
:rtype: :class:`~oci.response.Response`
|
4485
4485
|
|
4486
4486
|
:example:
|
4487
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4487
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/disable_database_insight.py.html>`__ to see an example of how to use disable_database_insight API.
|
4488
4488
|
"""
|
4489
4489
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4490
4490
|
required_arguments = ['databaseInsightId']
|
@@ -4599,7 +4599,7 @@ class OperationsInsightsClient(object):
|
|
4599
4599
|
:rtype: :class:`~oci.response.Response`
|
4600
4600
|
|
4601
4601
|
:example:
|
4602
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4602
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/disable_exadata_insight.py.html>`__ to see an example of how to use disable_exadata_insight API.
|
4603
4603
|
"""
|
4604
4604
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4605
4605
|
required_arguments = ['exadataInsightId']
|
@@ -4714,7 +4714,7 @@ class OperationsInsightsClient(object):
|
|
4714
4714
|
:rtype: :class:`~oci.response.Response`
|
4715
4715
|
|
4716
4716
|
:example:
|
4717
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4717
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/disable_host_insight.py.html>`__ to see an example of how to use disable_host_insight API.
|
4718
4718
|
"""
|
4719
4719
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4720
4720
|
required_arguments = ['hostInsightId']
|
@@ -4827,7 +4827,7 @@ class OperationsInsightsClient(object):
|
|
4827
4827
|
:rtype: :class:`~oci.response.Response`
|
4828
4828
|
|
4829
4829
|
:example:
|
4830
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4830
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/download_operations_insights_warehouse_wallet.py.html>`__ to see an example of how to use download_operations_insights_warehouse_wallet API.
|
4831
4831
|
"""
|
4832
4832
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4833
4833
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -4947,7 +4947,7 @@ class OperationsInsightsClient(object):
|
|
4947
4947
|
:rtype: :class:`~oci.response.Response`
|
4948
4948
|
|
4949
4949
|
:example:
|
4950
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4950
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/enable_autonomous_database_insight_advanced_features.py.html>`__ to see an example of how to use enable_autonomous_database_insight_advanced_features API.
|
4951
4951
|
"""
|
4952
4952
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4953
4953
|
required_arguments = ['databaseInsightId']
|
@@ -5064,7 +5064,7 @@ class OperationsInsightsClient(object):
|
|
5064
5064
|
:rtype: :class:`~oci.response.Response`
|
5065
5065
|
|
5066
5066
|
:example:
|
5067
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5067
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/enable_awr_hub_source.py.html>`__ to see an example of how to use enable_awr_hub_source API.
|
5068
5068
|
"""
|
5069
5069
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5070
5070
|
required_arguments = ['awrHubSourceId']
|
@@ -5182,7 +5182,7 @@ class OperationsInsightsClient(object):
|
|
5182
5182
|
:rtype: :class:`~oci.response.Response`
|
5183
5183
|
|
5184
5184
|
:example:
|
5185
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5185
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/enable_database_insight.py.html>`__ to see an example of how to use enable_database_insight API.
|
5186
5186
|
"""
|
5187
5187
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5188
5188
|
required_arguments = ['databaseInsightId']
|
@@ -5302,7 +5302,7 @@ class OperationsInsightsClient(object):
|
|
5302
5302
|
:rtype: :class:`~oci.response.Response`
|
5303
5303
|
|
5304
5304
|
:example:
|
5305
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5305
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/enable_exadata_insight.py.html>`__ to see an example of how to use enable_exadata_insight API.
|
5306
5306
|
"""
|
5307
5307
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5308
5308
|
required_arguments = ['exadataInsightId']
|
@@ -5422,7 +5422,7 @@ class OperationsInsightsClient(object):
|
|
5422
5422
|
:rtype: :class:`~oci.response.Response`
|
5423
5423
|
|
5424
5424
|
:example:
|
5425
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5425
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/enable_host_insight.py.html>`__ to see an example of how to use enable_host_insight API.
|
5426
5426
|
"""
|
5427
5427
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5428
5428
|
required_arguments = ['hostInsightId']
|
@@ -5558,7 +5558,7 @@ class OperationsInsightsClient(object):
|
|
5558
5558
|
:rtype: :class:`~oci.response.Response`
|
5559
5559
|
|
5560
5560
|
:example:
|
5561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_database_report.py.html>`__ to see an example of how to use get_awr_database_report API.
|
5562
5562
|
"""
|
5563
5563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5564
5564
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -5722,7 +5722,7 @@ class OperationsInsightsClient(object):
|
|
5722
5722
|
:rtype: :class:`~oci.response.Response`
|
5723
5723
|
|
5724
5724
|
:example:
|
5725
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5725
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_database_sql_report.py.html>`__ to see an example of how to use get_awr_database_sql_report API.
|
5726
5726
|
"""
|
5727
5727
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5728
5728
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier', 'sqlId']
|
@@ -5848,7 +5848,7 @@ class OperationsInsightsClient(object):
|
|
5848
5848
|
:rtype: :class:`~oci.response.Response`
|
5849
5849
|
|
5850
5850
|
:example:
|
5851
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5851
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_hub.py.html>`__ to see an example of how to use get_awr_hub API.
|
5852
5852
|
"""
|
5853
5853
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5854
5854
|
required_arguments = ['awrHubId']
|
@@ -5950,7 +5950,7 @@ class OperationsInsightsClient(object):
|
|
5950
5950
|
:rtype: :class:`~oci.response.Response`
|
5951
5951
|
|
5952
5952
|
:example:
|
5953
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5953
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_hub_object.py.html>`__ to see an example of how to use get_awr_hub_object API.
|
5954
5954
|
"""
|
5955
5955
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5956
5956
|
required_arguments = ['awrHubSourceId', 'objectName']
|
@@ -6050,7 +6050,7 @@ class OperationsInsightsClient(object):
|
|
6050
6050
|
:rtype: :class:`~oci.response.Response`
|
6051
6051
|
|
6052
6052
|
:example:
|
6053
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_hub_source.py.html>`__ to see an example of how to use get_awr_hub_source API.
|
6054
6054
|
"""
|
6055
6055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6056
6056
|
required_arguments = ['awrHubSourceId']
|
@@ -6173,7 +6173,7 @@ class OperationsInsightsClient(object):
|
|
6173
6173
|
:rtype: :class:`~oci.response.Response`
|
6174
6174
|
|
6175
6175
|
:example:
|
6176
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_awr_report.py.html>`__ to see an example of how to use get_awr_report API.
|
6177
6177
|
"""
|
6178
6178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6179
6179
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -6298,7 +6298,7 @@ class OperationsInsightsClient(object):
|
|
6298
6298
|
:rtype: :class:`~oci.response.Response`
|
6299
6299
|
|
6300
6300
|
:example:
|
6301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_database_insight.py.html>`__ to see an example of how to use get_database_insight API.
|
6302
6302
|
"""
|
6303
6303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6304
6304
|
required_arguments = ['databaseInsightId']
|
@@ -6397,7 +6397,7 @@ class OperationsInsightsClient(object):
|
|
6397
6397
|
:rtype: :class:`~oci.response.Response`
|
6398
6398
|
|
6399
6399
|
:example:
|
6400
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6400
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_enterprise_manager_bridge.py.html>`__ to see an example of how to use get_enterprise_manager_bridge API.
|
6401
6401
|
"""
|
6402
6402
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6403
6403
|
required_arguments = ['enterpriseManagerBridgeId']
|
@@ -6496,7 +6496,7 @@ class OperationsInsightsClient(object):
|
|
6496
6496
|
:rtype: :class:`~oci.response.Response`
|
6497
6497
|
|
6498
6498
|
:example:
|
6499
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6499
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_exadata_insight.py.html>`__ to see an example of how to use get_exadata_insight API.
|
6500
6500
|
"""
|
6501
6501
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6502
6502
|
required_arguments = ['exadataInsightId']
|
@@ -6595,7 +6595,7 @@ class OperationsInsightsClient(object):
|
|
6595
6595
|
:rtype: :class:`~oci.response.Response`
|
6596
6596
|
|
6597
6597
|
:example:
|
6598
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6598
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_host_insight.py.html>`__ to see an example of how to use get_host_insight API.
|
6599
6599
|
"""
|
6600
6600
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6601
6601
|
required_arguments = ['hostInsightId']
|
@@ -6694,7 +6694,7 @@ class OperationsInsightsClient(object):
|
|
6694
6694
|
:rtype: :class:`~oci.response.Response`
|
6695
6695
|
|
6696
6696
|
:example:
|
6697
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6697
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_news_report.py.html>`__ to see an example of how to use get_news_report API.
|
6698
6698
|
"""
|
6699
6699
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6700
6700
|
required_arguments = ['newsReportId']
|
@@ -6795,7 +6795,7 @@ class OperationsInsightsClient(object):
|
|
6795
6795
|
:rtype: :class:`~oci.response.Response`
|
6796
6796
|
|
6797
6797
|
:example:
|
6798
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6798
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_operations_insights_private_endpoint.py.html>`__ to see an example of how to use get_operations_insights_private_endpoint API.
|
6799
6799
|
"""
|
6800
6800
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6801
6801
|
required_arguments = ['operationsInsightsPrivateEndpointId']
|
@@ -6895,7 +6895,7 @@ class OperationsInsightsClient(object):
|
|
6895
6895
|
:rtype: :class:`~oci.response.Response`
|
6896
6896
|
|
6897
6897
|
:example:
|
6898
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6898
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_operations_insights_warehouse.py.html>`__ to see an example of how to use get_operations_insights_warehouse API.
|
6899
6899
|
"""
|
6900
6900
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6901
6901
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -6994,7 +6994,7 @@ class OperationsInsightsClient(object):
|
|
6994
6994
|
:rtype: :class:`~oci.response.Response`
|
6995
6995
|
|
6996
6996
|
:example:
|
6997
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6997
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_operations_insights_warehouse_user.py.html>`__ to see an example of how to use get_operations_insights_warehouse_user API.
|
6998
6998
|
"""
|
6999
6999
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7000
7000
|
required_arguments = ['operationsInsightsWarehouseUserId']
|
@@ -7116,7 +7116,7 @@ class OperationsInsightsClient(object):
|
|
7116
7116
|
:rtype: :class:`~oci.response.Response`
|
7117
7117
|
|
7118
7118
|
:example:
|
7119
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7119
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_opsi_configuration.py.html>`__ to see an example of how to use get_opsi_configuration API.
|
7120
7120
|
"""
|
7121
7121
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7122
7122
|
required_arguments = ['opsiConfigurationId']
|
@@ -7258,7 +7258,7 @@ class OperationsInsightsClient(object):
|
|
7258
7258
|
:rtype: :class:`~oci.response.Response`
|
7259
7259
|
|
7260
7260
|
:example:
|
7261
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7261
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_opsi_data_object.py.html>`__ to see an example of how to use get_opsi_data_object API.
|
7262
7262
|
"""
|
7263
7263
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7264
7264
|
required_arguments = ['opsiDataObjectIdentifier', 'compartmentId']
|
@@ -7364,7 +7364,7 @@ class OperationsInsightsClient(object):
|
|
7364
7364
|
:rtype: :class:`~oci.response.Response`
|
7365
7365
|
|
7366
7366
|
:example:
|
7367
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7367
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
7368
7368
|
"""
|
7369
7369
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7370
7370
|
required_arguments = ['workRequestId']
|
@@ -7466,7 +7466,7 @@ class OperationsInsightsClient(object):
|
|
7466
7466
|
:rtype: :class:`~oci.response.Response`
|
7467
7467
|
|
7468
7468
|
:example:
|
7469
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7469
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/head_awr_hub_object.py.html>`__ to see an example of how to use head_awr_hub_object API.
|
7470
7470
|
"""
|
7471
7471
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7472
7472
|
required_arguments = ['awrHubSourceId', 'objectName']
|
@@ -7588,7 +7588,7 @@ class OperationsInsightsClient(object):
|
|
7588
7588
|
:rtype: :class:`~oci.response.Response`
|
7589
7589
|
|
7590
7590
|
:example:
|
7591
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_addm_reports.py.html>`__ to see an example of how to use ingest_addm_reports API.
|
7592
7592
|
"""
|
7593
7593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7594
7594
|
required_arguments = []
|
@@ -7715,7 +7715,7 @@ class OperationsInsightsClient(object):
|
|
7715
7715
|
:rtype: :class:`~oci.response.Response`
|
7716
7716
|
|
7717
7717
|
:example:
|
7718
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7718
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_database_configuration.py.html>`__ to see an example of how to use ingest_database_configuration API.
|
7719
7719
|
"""
|
7720
7720
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7721
7721
|
required_arguments = []
|
@@ -7837,7 +7837,7 @@ class OperationsInsightsClient(object):
|
|
7837
7837
|
:rtype: :class:`~oci.response.Response`
|
7838
7838
|
|
7839
7839
|
:example:
|
7840
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7840
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_host_configuration.py.html>`__ to see an example of how to use ingest_host_configuration API.
|
7841
7841
|
"""
|
7842
7842
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7843
7843
|
required_arguments = ['id']
|
@@ -7956,7 +7956,7 @@ class OperationsInsightsClient(object):
|
|
7956
7956
|
:rtype: :class:`~oci.response.Response`
|
7957
7957
|
|
7958
7958
|
:example:
|
7959
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7959
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_host_metrics.py.html>`__ to see an example of how to use ingest_host_metrics API.
|
7960
7960
|
"""
|
7961
7961
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7962
7962
|
required_arguments = ['id']
|
@@ -8081,7 +8081,7 @@ class OperationsInsightsClient(object):
|
|
8081
8081
|
:rtype: :class:`~oci.response.Response`
|
8082
8082
|
|
8083
8083
|
:example:
|
8084
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8084
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_my_sql_sql_stats.py.html>`__ to see an example of how to use ingest_my_sql_sql_stats API.
|
8085
8085
|
"""
|
8086
8086
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8087
8087
|
required_arguments = []
|
@@ -8215,7 +8215,7 @@ class OperationsInsightsClient(object):
|
|
8215
8215
|
:rtype: :class:`~oci.response.Response`
|
8216
8216
|
|
8217
8217
|
:example:
|
8218
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8218
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_my_sql_sql_text.py.html>`__ to see an example of how to use ingest_my_sql_sql_text API.
|
8219
8219
|
"""
|
8220
8220
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8221
8221
|
required_arguments = []
|
@@ -8350,7 +8350,7 @@ class OperationsInsightsClient(object):
|
|
8350
8350
|
:rtype: :class:`~oci.response.Response`
|
8351
8351
|
|
8352
8352
|
:example:
|
8353
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8353
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_sql_bucket.py.html>`__ to see an example of how to use ingest_sql_bucket API.
|
8354
8354
|
"""
|
8355
8355
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8356
8356
|
required_arguments = []
|
@@ -8485,7 +8485,7 @@ class OperationsInsightsClient(object):
|
|
8485
8485
|
:rtype: :class:`~oci.response.Response`
|
8486
8486
|
|
8487
8487
|
:example:
|
8488
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8488
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_sql_plan_lines.py.html>`__ to see an example of how to use ingest_sql_plan_lines API.
|
8489
8489
|
"""
|
8490
8490
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8491
8491
|
required_arguments = []
|
@@ -8615,7 +8615,7 @@ class OperationsInsightsClient(object):
|
|
8615
8615
|
:rtype: :class:`~oci.response.Response`
|
8616
8616
|
|
8617
8617
|
:example:
|
8618
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_sql_stats.py.html>`__ to see an example of how to use ingest_sql_stats API.
|
8619
8619
|
"""
|
8620
8620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8621
8621
|
required_arguments = []
|
@@ -8749,7 +8749,7 @@ class OperationsInsightsClient(object):
|
|
8749
8749
|
:rtype: :class:`~oci.response.Response`
|
8750
8750
|
|
8751
8751
|
:example:
|
8752
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8752
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/ingest_sql_text.py.html>`__ to see an example of how to use ingest_sql_text API.
|
8753
8753
|
"""
|
8754
8754
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8755
8755
|
required_arguments = []
|
@@ -8921,7 +8921,7 @@ class OperationsInsightsClient(object):
|
|
8921
8921
|
:rtype: :class:`~oci.response.Response`
|
8922
8922
|
|
8923
8923
|
:example:
|
8924
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8924
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_db_finding_categories.py.html>`__ to see an example of how to use list_addm_db_finding_categories API.
|
8925
8925
|
"""
|
8926
8926
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8927
8927
|
required_arguments = ['compartmentId']
|
@@ -9136,7 +9136,7 @@ class OperationsInsightsClient(object):
|
|
9136
9136
|
:rtype: :class:`~oci.response.Response`
|
9137
9137
|
|
9138
9138
|
:example:
|
9139
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9139
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_db_findings_time_series.py.html>`__ to see an example of how to use list_addm_db_findings_time_series API.
|
9140
9140
|
"""
|
9141
9141
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9142
9142
|
required_arguments = ['compartmentId']
|
@@ -9340,7 +9340,7 @@ class OperationsInsightsClient(object):
|
|
9340
9340
|
:rtype: :class:`~oci.response.Response`
|
9341
9341
|
|
9342
9342
|
:example:
|
9343
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9343
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_db_parameter_categories.py.html>`__ to see an example of how to use list_addm_db_parameter_categories API.
|
9344
9344
|
"""
|
9345
9345
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9346
9346
|
required_arguments = ['compartmentId']
|
@@ -9536,7 +9536,7 @@ class OperationsInsightsClient(object):
|
|
9536
9536
|
:rtype: :class:`~oci.response.Response`
|
9537
9537
|
|
9538
9538
|
:example:
|
9539
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9539
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_db_recommendation_categories.py.html>`__ to see an example of how to use list_addm_db_recommendation_categories API.
|
9540
9540
|
"""
|
9541
9541
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9542
9542
|
required_arguments = ['compartmentId']
|
@@ -9767,7 +9767,7 @@ class OperationsInsightsClient(object):
|
|
9767
9767
|
:rtype: :class:`~oci.response.Response`
|
9768
9768
|
|
9769
9769
|
:example:
|
9770
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9770
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_db_recommendations_time_series.py.html>`__ to see an example of how to use list_addm_db_recommendations_time_series API.
|
9771
9771
|
"""
|
9772
9772
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9773
9773
|
required_arguments = ['compartmentId']
|
@@ -9992,7 +9992,7 @@ class OperationsInsightsClient(object):
|
|
9992
9992
|
:rtype: :class:`~oci.response.Response`
|
9993
9993
|
|
9994
9994
|
:example:
|
9995
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9995
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_addm_dbs.py.html>`__ to see an example of how to use list_addm_dbs API.
|
9996
9996
|
"""
|
9997
9997
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9998
9998
|
required_arguments = ['compartmentId']
|
@@ -10174,7 +10174,7 @@ class OperationsInsightsClient(object):
|
|
10174
10174
|
:rtype: :class:`~oci.response.Response`
|
10175
10175
|
|
10176
10176
|
:example:
|
10177
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10177
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_awr_database_snapshots.py.html>`__ to see an example of how to use list_awr_database_snapshots API.
|
10178
10178
|
"""
|
10179
10179
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10180
10180
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -10347,7 +10347,7 @@ class OperationsInsightsClient(object):
|
|
10347
10347
|
:rtype: :class:`~oci.response.Response`
|
10348
10348
|
|
10349
10349
|
:example:
|
10350
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10350
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_awr_databases.py.html>`__ to see an example of how to use list_awr_databases API.
|
10351
10351
|
"""
|
10352
10352
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10353
10353
|
required_arguments = ['awrHubId']
|
@@ -10523,7 +10523,7 @@ class OperationsInsightsClient(object):
|
|
10523
10523
|
:rtype: :class:`~oci.response.Response`
|
10524
10524
|
|
10525
10525
|
:example:
|
10526
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10526
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_awr_hub_objects.py.html>`__ to see an example of how to use list_awr_hub_objects API.
|
10527
10527
|
"""
|
10528
10528
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10529
10529
|
required_arguments = ['awrHubSourceId']
|
@@ -10704,7 +10704,7 @@ class OperationsInsightsClient(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.155.0/opsi/list_awr_hub_sources.py.html>`__ to see an example of how to use list_awr_hub_sources API.
|
10708
10708
|
"""
|
10709
10709
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10710
10710
|
required_arguments = ['awrHubId']
|
@@ -10898,7 +10898,7 @@ class OperationsInsightsClient(object):
|
|
10898
10898
|
:rtype: :class:`~oci.response.Response`
|
10899
10899
|
|
10900
10900
|
:example:
|
10901
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10901
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_awr_hubs.py.html>`__ to see an example of how to use list_awr_hubs API.
|
10902
10902
|
"""
|
10903
10903
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10904
10904
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -11066,7 +11066,7 @@ class OperationsInsightsClient(object):
|
|
11066
11066
|
:rtype: :class:`~oci.response.Response`
|
11067
11067
|
|
11068
11068
|
:example:
|
11069
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11069
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_awr_snapshots.py.html>`__ to see an example of how to use list_awr_snapshots API.
|
11070
11070
|
"""
|
11071
11071
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11072
11072
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -11288,7 +11288,7 @@ class OperationsInsightsClient(object):
|
|
11288
11288
|
:rtype: :class:`~oci.response.Response`
|
11289
11289
|
|
11290
11290
|
:example:
|
11291
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11291
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_database_configurations.py.html>`__ to see an example of how to use list_database_configurations API.
|
11292
11292
|
"""
|
11293
11293
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11294
11294
|
required_arguments = []
|
@@ -11513,7 +11513,7 @@ class OperationsInsightsClient(object):
|
|
11513
11513
|
:rtype: :class:`~oci.response.Response`
|
11514
11514
|
|
11515
11515
|
:example:
|
11516
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11516
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_database_insights.py.html>`__ to see an example of how to use list_database_insights API.
|
11517
11517
|
"""
|
11518
11518
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11519
11519
|
required_arguments = []
|
@@ -11725,7 +11725,7 @@ class OperationsInsightsClient(object):
|
|
11725
11725
|
:rtype: :class:`~oci.response.Response`
|
11726
11726
|
|
11727
11727
|
:example:
|
11728
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11728
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_enterprise_manager_bridges.py.html>`__ to see an example of how to use list_enterprise_manager_bridges API.
|
11729
11729
|
"""
|
11730
11730
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11731
11731
|
required_arguments = []
|
@@ -11923,7 +11923,7 @@ class OperationsInsightsClient(object):
|
|
11923
11923
|
:rtype: :class:`~oci.response.Response`
|
11924
11924
|
|
11925
11925
|
:example:
|
11926
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11926
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_exadata_configurations.py.html>`__ to see an example of how to use list_exadata_configurations API.
|
11927
11927
|
"""
|
11928
11928
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11929
11929
|
required_arguments = []
|
@@ -12108,7 +12108,7 @@ class OperationsInsightsClient(object):
|
|
12108
12108
|
:rtype: :class:`~oci.response.Response`
|
12109
12109
|
|
12110
12110
|
:example:
|
12111
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12111
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_exadata_insights.py.html>`__ to see an example of how to use list_exadata_insights API.
|
12112
12112
|
"""
|
12113
12113
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12114
12114
|
required_arguments = []
|
@@ -12348,7 +12348,7 @@ class OperationsInsightsClient(object):
|
|
12348
12348
|
:rtype: :class:`~oci.response.Response`
|
12349
12349
|
|
12350
12350
|
:example:
|
12351
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12351
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_host_configurations.py.html>`__ to see an example of how to use list_host_configurations API.
|
12352
12352
|
"""
|
12353
12353
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12354
12354
|
required_arguments = []
|
@@ -12574,7 +12574,7 @@ class OperationsInsightsClient(object):
|
|
12574
12574
|
:rtype: :class:`~oci.response.Response`
|
12575
12575
|
|
12576
12576
|
:example:
|
12577
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12577
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_host_insights.py.html>`__ to see an example of how to use list_host_insights API.
|
12578
12578
|
"""
|
12579
12579
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12580
12580
|
required_arguments = []
|
@@ -12810,7 +12810,7 @@ class OperationsInsightsClient(object):
|
|
12810
12810
|
:rtype: :class:`~oci.response.Response`
|
12811
12811
|
|
12812
12812
|
:example:
|
12813
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12813
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_hosted_entities.py.html>`__ to see an example of how to use list_hosted_entities API.
|
12814
12814
|
"""
|
12815
12815
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12816
12816
|
required_arguments = ['compartmentId', 'id']
|
@@ -12991,7 +12991,7 @@ class OperationsInsightsClient(object):
|
|
12991
12991
|
:rtype: :class:`~oci.response.Response`
|
12992
12992
|
|
12993
12993
|
:example:
|
12994
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12994
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_importable_agent_entities.py.html>`__ to see an example of how to use list_importable_agent_entities API.
|
12995
12995
|
"""
|
12996
12996
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12997
12997
|
required_arguments = ['compartmentId']
|
@@ -13141,7 +13141,7 @@ class OperationsInsightsClient(object):
|
|
13141
13141
|
:rtype: :class:`~oci.response.Response`
|
13142
13142
|
|
13143
13143
|
:example:
|
13144
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13144
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_importable_compute_entities.py.html>`__ to see an example of how to use list_importable_compute_entities API.
|
13145
13145
|
"""
|
13146
13146
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13147
13147
|
required_arguments = ['compartmentId']
|
@@ -13282,7 +13282,7 @@ class OperationsInsightsClient(object):
|
|
13282
13282
|
:rtype: :class:`~oci.response.Response`
|
13283
13283
|
|
13284
13284
|
:example:
|
13285
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13285
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_importable_enterprise_manager_entities.py.html>`__ to see an example of how to use list_importable_enterprise_manager_entities API.
|
13286
13286
|
"""
|
13287
13287
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13288
13288
|
required_arguments = ['enterpriseManagerBridgeId']
|
@@ -13441,7 +13441,7 @@ class OperationsInsightsClient(object):
|
|
13441
13441
|
:rtype: :class:`~oci.response.Response`
|
13442
13442
|
|
13443
13443
|
:example:
|
13444
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13444
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_news_reports.py.html>`__ to see an example of how to use list_news_reports API.
|
13445
13445
|
"""
|
13446
13446
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13447
13447
|
required_arguments = []
|
@@ -13632,7 +13632,7 @@ class OperationsInsightsClient(object):
|
|
13632
13632
|
:rtype: :class:`~oci.response.Response`
|
13633
13633
|
|
13634
13634
|
:example:
|
13635
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13635
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_operations_insights_private_endpoints.py.html>`__ to see an example of how to use list_operations_insights_private_endpoints API.
|
13636
13636
|
"""
|
13637
13637
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13638
13638
|
required_arguments = []
|
@@ -13811,7 +13811,7 @@ class OperationsInsightsClient(object):
|
|
13811
13811
|
:rtype: :class:`~oci.response.Response`
|
13812
13812
|
|
13813
13813
|
:example:
|
13814
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13814
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_operations_insights_warehouse_users.py.html>`__ to see an example of how to use list_operations_insights_warehouse_users API.
|
13815
13815
|
"""
|
13816
13816
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13817
13817
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -13983,7 +13983,7 @@ class OperationsInsightsClient(object):
|
|
13983
13983
|
:rtype: :class:`~oci.response.Response`
|
13984
13984
|
|
13985
13985
|
:example:
|
13986
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13986
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_operations_insights_warehouses.py.html>`__ to see an example of how to use list_operations_insights_warehouses API.
|
13987
13987
|
"""
|
13988
13988
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13989
13989
|
required_arguments = []
|
@@ -14155,7 +14155,7 @@ class OperationsInsightsClient(object):
|
|
14155
14155
|
:rtype: :class:`~oci.response.Response`
|
14156
14156
|
|
14157
14157
|
:example:
|
14158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14158
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_opsi_configurations.py.html>`__ to see an example of how to use list_opsi_configurations API.
|
14159
14159
|
"""
|
14160
14160
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14161
14161
|
required_arguments = ['compartmentId']
|
@@ -14335,7 +14335,7 @@ class OperationsInsightsClient(object):
|
|
14335
14335
|
:rtype: :class:`~oci.response.Response`
|
14336
14336
|
|
14337
14337
|
:example:
|
14338
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14338
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_opsi_data_objects.py.html>`__ to see an example of how to use list_opsi_data_objects API.
|
14339
14339
|
"""
|
14340
14340
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14341
14341
|
required_arguments = ['compartmentId']
|
@@ -14495,7 +14495,7 @@ class OperationsInsightsClient(object):
|
|
14495
14495
|
:rtype: :class:`~oci.response.Response`
|
14496
14496
|
|
14497
14497
|
:example:
|
14498
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14498
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_sql_plans.py.html>`__ to see an example of how to use list_sql_plans API.
|
14499
14499
|
"""
|
14500
14500
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14501
14501
|
required_arguments = ['compartmentId', 'sqlIdentifier', 'planHash']
|
@@ -14658,7 +14658,7 @@ class OperationsInsightsClient(object):
|
|
14658
14658
|
:rtype: :class:`~oci.response.Response`
|
14659
14659
|
|
14660
14660
|
:example:
|
14661
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14661
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_sql_searches.py.html>`__ to see an example of how to use list_sql_searches API.
|
14662
14662
|
"""
|
14663
14663
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14664
14664
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -14822,7 +14822,7 @@ class OperationsInsightsClient(object):
|
|
14822
14822
|
:rtype: :class:`~oci.response.Response`
|
14823
14823
|
|
14824
14824
|
:example:
|
14825
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14825
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_sql_texts.py.html>`__ to see an example of how to use list_sql_texts API.
|
14826
14826
|
"""
|
14827
14827
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14828
14828
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -14982,7 +14982,7 @@ class OperationsInsightsClient(object):
|
|
14982
14982
|
:rtype: :class:`~oci.response.Response`
|
14983
14983
|
|
14984
14984
|
:example:
|
14985
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14985
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_warehouse_data_objects.py.html>`__ to see an example of how to use list_warehouse_data_objects API.
|
14986
14986
|
"""
|
14987
14987
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14988
14988
|
required_arguments = ['warehouseType', 'warehouseId']
|
@@ -15160,7 +15160,7 @@ class OperationsInsightsClient(object):
|
|
15160
15160
|
:rtype: :class:`~oci.response.Response`
|
15161
15161
|
|
15162
15162
|
:example:
|
15163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
15164
15164
|
"""
|
15165
15165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15166
15166
|
required_arguments = ['workRequestId']
|
@@ -15313,7 +15313,7 @@ class OperationsInsightsClient(object):
|
|
15313
15313
|
:rtype: :class:`~oci.response.Response`
|
15314
15314
|
|
15315
15315
|
:example:
|
15316
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15316
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
15317
15317
|
"""
|
15318
15318
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15319
15319
|
required_arguments = ['workRequestId']
|
@@ -15482,7 +15482,7 @@ class OperationsInsightsClient(object):
|
|
15482
15482
|
:rtype: :class:`~oci.response.Response`
|
15483
15483
|
|
15484
15484
|
:example:
|
15485
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
15486
15486
|
"""
|
15487
15487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15488
15488
|
required_arguments = []
|
@@ -15632,7 +15632,7 @@ class OperationsInsightsClient(object):
|
|
15632
15632
|
:rtype: :class:`~oci.response.Response`
|
15633
15633
|
|
15634
15634
|
:example:
|
15635
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15635
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/put_awr_hub_object.py.html>`__ to see an example of how to use put_awr_hub_object API.
|
15636
15636
|
"""
|
15637
15637
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15638
15638
|
required_arguments = ['awrHubSourceId', 'objectName']
|
@@ -15779,7 +15779,7 @@ class OperationsInsightsClient(object):
|
|
15779
15779
|
:rtype: :class:`~oci.response.Response`
|
15780
15780
|
|
15781
15781
|
:example:
|
15782
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15782
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/query_opsi_data_object_data.py.html>`__ to see an example of how to use query_opsi_data_object_data API.
|
15783
15783
|
"""
|
15784
15784
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15785
15785
|
required_arguments = ['compartmentId']
|
@@ -15906,7 +15906,7 @@ class OperationsInsightsClient(object):
|
|
15906
15906
|
:rtype: :class:`~oci.response.Response`
|
15907
15907
|
|
15908
15908
|
:example:
|
15909
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15909
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/query_warehouse_data_object_data.py.html>`__ to see an example of how to use query_warehouse_data_object_data API.
|
15910
15910
|
"""
|
15911
15911
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15912
15912
|
required_arguments = ['warehouseType', 'warehouseId']
|
@@ -16023,7 +16023,7 @@ class OperationsInsightsClient(object):
|
|
16023
16023
|
:rtype: :class:`~oci.response.Response`
|
16024
16024
|
|
16025
16025
|
:example:
|
16026
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16026
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/rotate_operations_insights_warehouse_wallet.py.html>`__ to see an example of how to use rotate_operations_insights_warehouse_wallet API.
|
16027
16027
|
"""
|
16028
16028
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16029
16029
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -16207,7 +16207,7 @@ class OperationsInsightsClient(object):
|
|
16207
16207
|
:rtype: :class:`~oci.response.Response`
|
16208
16208
|
|
16209
16209
|
:example:
|
16210
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16210
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_addm_db_findings.py.html>`__ to see an example of how to use summarize_addm_db_findings API.
|
16211
16211
|
"""
|
16212
16212
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16213
16213
|
required_arguments = ['compartmentId']
|
@@ -16437,7 +16437,7 @@ class OperationsInsightsClient(object):
|
|
16437
16437
|
:rtype: :class:`~oci.response.Response`
|
16438
16438
|
|
16439
16439
|
:example:
|
16440
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16440
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_addm_db_parameter_changes.py.html>`__ to see an example of how to use summarize_addm_db_parameter_changes API.
|
16441
16441
|
"""
|
16442
16442
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16443
16443
|
required_arguments = ['compartmentId', 'name']
|
@@ -16688,7 +16688,7 @@ class OperationsInsightsClient(object):
|
|
16688
16688
|
:rtype: :class:`~oci.response.Response`
|
16689
16689
|
|
16690
16690
|
:example:
|
16691
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16691
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_addm_db_parameters.py.html>`__ to see an example of how to use summarize_addm_db_parameters API.
|
16692
16692
|
"""
|
16693
16693
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16694
16694
|
required_arguments = ['compartmentId']
|
@@ -16959,7 +16959,7 @@ class OperationsInsightsClient(object):
|
|
16959
16959
|
:rtype: :class:`~oci.response.Response`
|
16960
16960
|
|
16961
16961
|
:example:
|
16962
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16962
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_addm_db_recommendations.py.html>`__ to see an example of how to use summarize_addm_db_recommendations API.
|
16963
16963
|
"""
|
16964
16964
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16965
16965
|
required_arguments = ['compartmentId']
|
@@ -17179,7 +17179,7 @@ class OperationsInsightsClient(object):
|
|
17179
17179
|
:rtype: :class:`~oci.response.Response`
|
17180
17180
|
|
17181
17181
|
:example:
|
17182
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17182
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_addm_db_schema_objects.py.html>`__ to see an example of how to use summarize_addm_db_schema_objects API.
|
17183
17183
|
"""
|
17184
17184
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17185
17185
|
required_arguments = ['compartmentId', 'objectIdentifier']
|
@@ -17369,7 +17369,7 @@ class OperationsInsightsClient(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.155.0/opsi/summarize_addm_db_sql_statements.py.html>`__ to see an example of how to use summarize_addm_db_sql_statements 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', 'sqlIdentifier']
|
@@ -17543,7 +17543,7 @@ class OperationsInsightsClient(object):
|
|
17543
17543
|
:rtype: :class:`~oci.response.Response`
|
17544
17544
|
|
17545
17545
|
:example:
|
17546
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17546
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_database_cpu_usages API.
|
17547
17547
|
"""
|
17548
17548
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17549
17549
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -17741,7 +17741,7 @@ class OperationsInsightsClient(object):
|
|
17741
17741
|
:rtype: :class:`~oci.response.Response`
|
17742
17742
|
|
17743
17743
|
:example:
|
17744
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17744
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_metrics.py.html>`__ to see an example of how to use summarize_awr_database_metrics API.
|
17745
17745
|
"""
|
17746
17746
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17747
17747
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier', 'name']
|
@@ -17935,7 +17935,7 @@ class OperationsInsightsClient(object):
|
|
17935
17935
|
:rtype: :class:`~oci.response.Response`
|
17936
17936
|
|
17937
17937
|
:example:
|
17938
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17938
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_database_parameter_changes API.
|
17939
17939
|
"""
|
17940
17940
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17941
17941
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier', 'name']
|
@@ -18153,7 +18153,7 @@ class OperationsInsightsClient(object):
|
|
18153
18153
|
:rtype: :class:`~oci.response.Response`
|
18154
18154
|
|
18155
18155
|
:example:
|
18156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18156
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_parameters.py.html>`__ to see an example of how to use summarize_awr_database_parameters API.
|
18157
18157
|
"""
|
18158
18158
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18159
18159
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -18357,7 +18357,7 @@ class OperationsInsightsClient(object):
|
|
18357
18357
|
:rtype: :class:`~oci.response.Response`
|
18358
18358
|
|
18359
18359
|
:example:
|
18360
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18360
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_database_snapshot_ranges API.
|
18361
18361
|
"""
|
18362
18362
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18363
18363
|
required_arguments = ['awrHubId']
|
@@ -18541,7 +18541,7 @@ class OperationsInsightsClient(object):
|
|
18541
18541
|
:rtype: :class:`~oci.response.Response`
|
18542
18542
|
|
18543
18543
|
:example:
|
18544
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18544
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_sysstats.py.html>`__ to see an example of how to use summarize_awr_database_sysstats API.
|
18545
18545
|
"""
|
18546
18546
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18547
18547
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier', 'name']
|
@@ -18720,7 +18720,7 @@ class OperationsInsightsClient(object):
|
|
18720
18720
|
:rtype: :class:`~oci.response.Response`
|
18721
18721
|
|
18722
18722
|
:example:
|
18723
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18723
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_database_top_wait_events API.
|
18724
18724
|
"""
|
18725
18725
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18726
18726
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -18925,7 +18925,7 @@ class OperationsInsightsClient(object):
|
|
18925
18925
|
:rtype: :class:`~oci.response.Response`
|
18926
18926
|
|
18927
18927
|
:example:
|
18928
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18928
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_database_wait_event_buckets API.
|
18929
18929
|
"""
|
18930
18930
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18931
18931
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier', 'name']
|
@@ -19126,7 +19126,7 @@ class OperationsInsightsClient(object):
|
|
19126
19126
|
:rtype: :class:`~oci.response.Response`
|
19127
19127
|
|
19128
19128
|
:example:
|
19129
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19129
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_database_wait_events.py.html>`__ to see an example of how to use summarize_awr_database_wait_events API.
|
19130
19130
|
"""
|
19131
19131
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19132
19132
|
required_arguments = ['awrHubId', 'awrSourceDatabaseIdentifier']
|
@@ -19309,7 +19309,7 @@ class OperationsInsightsClient(object):
|
|
19309
19309
|
:rtype: :class:`~oci.response.Response`
|
19310
19310
|
|
19311
19311
|
:example:
|
19312
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19312
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_awr_sources_summaries.py.html>`__ to see an example of how to use summarize_awr_sources_summaries API.
|
19313
19313
|
"""
|
19314
19314
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19315
19315
|
required_arguments = ['awrHubId']
|
@@ -19475,7 +19475,7 @@ class OperationsInsightsClient(object):
|
|
19475
19475
|
:rtype: :class:`~oci.response.Response`
|
19476
19476
|
|
19477
19477
|
:example:
|
19478
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_configuration_items.py.html>`__ to see an example of how to use summarize_configuration_items API.
|
19479
19479
|
"""
|
19480
19480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19481
19481
|
required_arguments = []
|
@@ -19722,7 +19722,7 @@ class OperationsInsightsClient(object):
|
|
19722
19722
|
:rtype: :class:`~oci.response.Response`
|
19723
19723
|
|
19724
19724
|
:example:
|
19725
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19725
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_capacity_trend.py.html>`__ to see an example of how to use summarize_database_insight_resource_capacity_trend API.
|
19726
19726
|
"""
|
19727
19727
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19728
19728
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -20030,7 +20030,7 @@ class OperationsInsightsClient(object):
|
|
20030
20030
|
:rtype: :class:`~oci.response.Response`
|
20031
20031
|
|
20032
20032
|
:example:
|
20033
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20033
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_forecast_trend.py.html>`__ to see an example of how to use summarize_database_insight_resource_forecast_trend API.
|
20034
20034
|
"""
|
20035
20035
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20036
20036
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -20336,7 +20336,7 @@ class OperationsInsightsClient(object):
|
|
20336
20336
|
:rtype: :class:`~oci.response.Response`
|
20337
20337
|
|
20338
20338
|
:example:
|
20339
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20339
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_statistics.py.html>`__ to see an example of how to use summarize_database_insight_resource_statistics API.
|
20340
20340
|
"""
|
20341
20341
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20342
20342
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -20604,7 +20604,7 @@ class OperationsInsightsClient(object):
|
|
20604
20604
|
:rtype: :class:`~oci.response.Response`
|
20605
20605
|
|
20606
20606
|
:example:
|
20607
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20607
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_usage.py.html>`__ to see an example of how to use summarize_database_insight_resource_usage API.
|
20608
20608
|
"""
|
20609
20609
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20610
20610
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -20850,7 +20850,7 @@ class OperationsInsightsClient(object):
|
|
20850
20850
|
:rtype: :class:`~oci.response.Response`
|
20851
20851
|
|
20852
20852
|
:example:
|
20853
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20853
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_usage_trend.py.html>`__ to see an example of how to use summarize_database_insight_resource_usage_trend API.
|
20854
20854
|
"""
|
20855
20855
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20856
20856
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -21110,7 +21110,7 @@ class OperationsInsightsClient(object):
|
|
21110
21110
|
:rtype: :class:`~oci.response.Response`
|
21111
21111
|
|
21112
21112
|
:example:
|
21113
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21113
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_resource_utilization_insight.py.html>`__ to see an example of how to use summarize_database_insight_resource_utilization_insight API.
|
21114
21114
|
"""
|
21115
21115
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21116
21116
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -21302,7 +21302,7 @@ class OperationsInsightsClient(object):
|
|
21302
21302
|
:rtype: :class:`~oci.response.Response`
|
21303
21303
|
|
21304
21304
|
:example:
|
21305
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21305
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_database_insight_tablespace_usage_trend.py.html>`__ to see an example of how to use summarize_database_insight_tablespace_usage_trend API.
|
21306
21306
|
"""
|
21307
21307
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21308
21308
|
required_arguments = ['compartmentId']
|
@@ -21500,7 +21500,7 @@ class OperationsInsightsClient(object):
|
|
21500
21500
|
:rtype: :class:`~oci.response.Response`
|
21501
21501
|
|
21502
21502
|
:example:
|
21503
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21503
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_capacity_trend.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_capacity_trend API.
|
21504
21504
|
"""
|
21505
21505
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21506
21506
|
required_arguments = ['resourceType', 'resourceMetric', 'exadataInsightId']
|
@@ -21731,7 +21731,7 @@ class OperationsInsightsClient(object):
|
|
21731
21731
|
:rtype: :class:`~oci.response.Response`
|
21732
21732
|
|
21733
21733
|
:example:
|
21734
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21734
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_capacity_trend_aggregated.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_capacity_trend_aggregated API.
|
21735
21735
|
"""
|
21736
21736
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21737
21737
|
required_arguments = ['resourceType', 'resourceMetric']
|
@@ -21984,7 +21984,7 @@ class OperationsInsightsClient(object):
|
|
21984
21984
|
:rtype: :class:`~oci.response.Response`
|
21985
21985
|
|
21986
21986
|
:example:
|
21987
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21987
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_forecast_trend.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_forecast_trend API.
|
21988
21988
|
"""
|
21989
21989
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21990
21990
|
required_arguments = ['resourceType', 'resourceMetric', 'exadataInsightId']
|
@@ -22253,7 +22253,7 @@ class OperationsInsightsClient(object):
|
|
22253
22253
|
:rtype: :class:`~oci.response.Response`
|
22254
22254
|
|
22255
22255
|
:example:
|
22256
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22256
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_forecast_trend_aggregated.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_forecast_trend_aggregated API.
|
22257
22257
|
"""
|
22258
22258
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22259
22259
|
required_arguments = ['resourceType', 'resourceMetric']
|
@@ -22472,7 +22472,7 @@ class OperationsInsightsClient(object):
|
|
22472
22472
|
:rtype: :class:`~oci.response.Response`
|
22473
22473
|
|
22474
22474
|
:example:
|
22475
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22475
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_statistics.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_statistics API.
|
22476
22476
|
"""
|
22477
22477
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22478
22478
|
required_arguments = ['exadataInsightId', 'resourceType', 'resourceMetric']
|
@@ -22710,7 +22710,7 @@ class OperationsInsightsClient(object):
|
|
22710
22710
|
:rtype: :class:`~oci.response.Response`
|
22711
22711
|
|
22712
22712
|
:example:
|
22713
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22713
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_usage.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_usage API.
|
22714
22714
|
"""
|
22715
22715
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22716
22716
|
required_arguments = ['compartmentId', 'resourceType', 'resourceMetric']
|
@@ -22941,7 +22941,7 @@ class OperationsInsightsClient(object):
|
|
22941
22941
|
:rtype: :class:`~oci.response.Response`
|
22942
22942
|
|
22943
22943
|
:example:
|
22944
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_usage_aggregated.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_usage_aggregated API.
|
22945
22945
|
"""
|
22946
22946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22947
22947
|
required_arguments = ['compartmentId', 'resourceType', 'resourceMetric']
|
@@ -23165,7 +23165,7 @@ class OperationsInsightsClient(object):
|
|
23165
23165
|
:rtype: :class:`~oci.response.Response`
|
23166
23166
|
|
23167
23167
|
:example:
|
23168
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23168
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_insight_resource_utilization_insight.py.html>`__ to see an example of how to use summarize_exadata_insight_resource_utilization_insight API.
|
23169
23169
|
"""
|
23170
23170
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23171
23171
|
required_arguments = ['compartmentId', 'resourceType', 'resourceMetric']
|
@@ -23329,7 +23329,7 @@ class OperationsInsightsClient(object):
|
|
23329
23329
|
:rtype: :class:`~oci.response.Response`
|
23330
23330
|
|
23331
23331
|
:example:
|
23332
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23332
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_exadata_members.py.html>`__ to see an example of how to use summarize_exadata_members API.
|
23333
23333
|
"""
|
23334
23334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23335
23335
|
required_arguments = ['exadataInsightId']
|
@@ -23488,7 +23488,7 @@ class OperationsInsightsClient(object):
|
|
23488
23488
|
:rtype: :class:`~oci.response.Response`
|
23489
23489
|
|
23490
23490
|
:example:
|
23491
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23491
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_disk_statistics.py.html>`__ to see an example of how to use summarize_host_insight_disk_statistics API.
|
23492
23492
|
"""
|
23493
23493
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23494
23494
|
required_arguments = ['compartmentId', 'id']
|
@@ -23659,7 +23659,7 @@ class OperationsInsightsClient(object):
|
|
23659
23659
|
:rtype: :class:`~oci.response.Response`
|
23660
23660
|
|
23661
23661
|
:example:
|
23662
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_host_recommendation.py.html>`__ to see an example of how to use summarize_host_insight_host_recommendation API.
|
23663
23663
|
"""
|
23664
23664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23665
23665
|
required_arguments = ['compartmentId', 'id', 'resourceMetric']
|
@@ -23831,7 +23831,7 @@ class OperationsInsightsClient(object):
|
|
23831
23831
|
:rtype: :class:`~oci.response.Response`
|
23832
23832
|
|
23833
23833
|
:example:
|
23834
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23834
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_io_usage_trend.py.html>`__ to see an example of how to use summarize_host_insight_io_usage_trend API.
|
23835
23835
|
"""
|
23836
23836
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23837
23837
|
required_arguments = ['compartmentId', 'id']
|
@@ -24014,7 +24014,7 @@ class OperationsInsightsClient(object):
|
|
24014
24014
|
:rtype: :class:`~oci.response.Response`
|
24015
24015
|
|
24016
24016
|
:example:
|
24017
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_network_usage_trend.py.html>`__ to see an example of how to use summarize_host_insight_network_usage_trend API.
|
24018
24018
|
"""
|
24019
24019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24020
24020
|
required_arguments = ['compartmentId', 'id']
|
@@ -24262,7 +24262,7 @@ class OperationsInsightsClient(object):
|
|
24262
24262
|
:rtype: :class:`~oci.response.Response`
|
24263
24263
|
|
24264
24264
|
:example:
|
24265
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24265
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_capacity_trend.py.html>`__ to see an example of how to use summarize_host_insight_resource_capacity_trend API.
|
24266
24266
|
"""
|
24267
24267
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24268
24268
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -24580,7 +24580,7 @@ class OperationsInsightsClient(object):
|
|
24580
24580
|
:rtype: :class:`~oci.response.Response`
|
24581
24581
|
|
24582
24582
|
:example:
|
24583
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24583
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_forecast_trend.py.html>`__ to see an example of how to use summarize_host_insight_resource_forecast_trend API.
|
24584
24584
|
"""
|
24585
24585
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24586
24586
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -24896,7 +24896,7 @@ class OperationsInsightsClient(object):
|
|
24896
24896
|
:rtype: :class:`~oci.response.Response`
|
24897
24897
|
|
24898
24898
|
:example:
|
24899
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24899
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_statistics.py.html>`__ to see an example of how to use summarize_host_insight_resource_statistics API.
|
24900
24900
|
"""
|
24901
24901
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24902
24902
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -25170,7 +25170,7 @@ class OperationsInsightsClient(object):
|
|
25170
25170
|
:rtype: :class:`~oci.response.Response`
|
25171
25171
|
|
25172
25172
|
:example:
|
25173
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25173
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_usage.py.html>`__ to see an example of how to use summarize_host_insight_resource_usage API.
|
25174
25174
|
"""
|
25175
25175
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25176
25176
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -25422,7 +25422,7 @@ class OperationsInsightsClient(object):
|
|
25422
25422
|
:rtype: :class:`~oci.response.Response`
|
25423
25423
|
|
25424
25424
|
:example:
|
25425
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25425
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_usage_trend.py.html>`__ to see an example of how to use summarize_host_insight_resource_usage_trend API.
|
25426
25426
|
"""
|
25427
25427
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25428
25428
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -25688,7 +25688,7 @@ class OperationsInsightsClient(object):
|
|
25688
25688
|
:rtype: :class:`~oci.response.Response`
|
25689
25689
|
|
25690
25690
|
:example:
|
25691
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25691
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_resource_utilization_insight.py.html>`__ to see an example of how to use summarize_host_insight_resource_utilization_insight API.
|
25692
25692
|
"""
|
25693
25693
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25694
25694
|
required_arguments = ['compartmentId', 'resourceMetric']
|
@@ -25894,7 +25894,7 @@ class OperationsInsightsClient(object):
|
|
25894
25894
|
:rtype: :class:`~oci.response.Response`
|
25895
25895
|
|
25896
25896
|
:example:
|
25897
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25897
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_storage_usage_trend.py.html>`__ to see an example of how to use summarize_host_insight_storage_usage_trend API.
|
25898
25898
|
"""
|
25899
25899
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25900
25900
|
required_arguments = ['compartmentId', 'id']
|
@@ -26091,7 +26091,7 @@ class OperationsInsightsClient(object):
|
|
26091
26091
|
:rtype: :class:`~oci.response.Response`
|
26092
26092
|
|
26093
26093
|
:example:
|
26094
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26094
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_top_processes_usage.py.html>`__ to see an example of how to use summarize_host_insight_top_processes_usage API.
|
26095
26095
|
"""
|
26096
26096
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26097
26097
|
required_arguments = ['compartmentId', 'id', 'resourceMetric', 'timestamp']
|
@@ -26291,7 +26291,7 @@ class OperationsInsightsClient(object):
|
|
26291
26291
|
:rtype: :class:`~oci.response.Response`
|
26292
26292
|
|
26293
26293
|
:example:
|
26294
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26294
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_host_insight_top_processes_usage_trend.py.html>`__ to see an example of how to use summarize_host_insight_top_processes_usage_trend API.
|
26295
26295
|
"""
|
26296
26296
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26297
26297
|
required_arguments = ['compartmentId', 'id', 'resourceMetric']
|
@@ -26423,7 +26423,7 @@ class OperationsInsightsClient(object):
|
|
26423
26423
|
:rtype: :class:`~oci.response.Response`
|
26424
26424
|
|
26425
26425
|
:example:
|
26426
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26426
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_operations_insights_warehouse_resource_usage.py.html>`__ to see an example of how to use summarize_operations_insights_warehouse_resource_usage API.
|
26427
26427
|
"""
|
26428
26428
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26429
26429
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -26612,7 +26612,7 @@ class OperationsInsightsClient(object):
|
|
26612
26612
|
:rtype: :class:`~oci.response.Response`
|
26613
26613
|
|
26614
26614
|
:example:
|
26615
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26615
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_insights.py.html>`__ to see an example of how to use summarize_sql_insights API.
|
26616
26616
|
"""
|
26617
26617
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26618
26618
|
required_arguments = ['compartmentId']
|
@@ -26791,7 +26791,7 @@ class OperationsInsightsClient(object):
|
|
26791
26791
|
:rtype: :class:`~oci.response.Response`
|
26792
26792
|
|
26793
26793
|
:example:
|
26794
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26794
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_plan_insights.py.html>`__ to see an example of how to use summarize_sql_plan_insights API.
|
26795
26795
|
"""
|
26796
26796
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26797
26797
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -26941,7 +26941,7 @@ class OperationsInsightsClient(object):
|
|
26941
26941
|
:rtype: :class:`~oci.response.Response`
|
26942
26942
|
|
26943
26943
|
:example:
|
26944
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_response_time_distributions.py.html>`__ to see an example of how to use summarize_sql_response_time_distributions API.
|
26945
26945
|
"""
|
26946
26946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26947
26947
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -27167,7 +27167,7 @@ class OperationsInsightsClient(object):
|
|
27167
27167
|
:rtype: :class:`~oci.response.Response`
|
27168
27168
|
|
27169
27169
|
:example:
|
27170
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27170
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_statistics.py.html>`__ to see an example of how to use summarize_sql_statistics API.
|
27171
27171
|
"""
|
27172
27172
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27173
27173
|
required_arguments = ['compartmentId']
|
@@ -27420,7 +27420,7 @@ class OperationsInsightsClient(object):
|
|
27420
27420
|
:rtype: :class:`~oci.response.Response`
|
27421
27421
|
|
27422
27422
|
:example:
|
27423
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27423
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_statistics_time_series.py.html>`__ to see an example of how to use summarize_sql_statistics_time_series API.
|
27424
27424
|
"""
|
27425
27425
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27426
27426
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -27588,7 +27588,7 @@ class OperationsInsightsClient(object):
|
|
27588
27588
|
:rtype: :class:`~oci.response.Response`
|
27589
27589
|
|
27590
27590
|
:example:
|
27591
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/summarize_sql_statistics_time_series_by_plan.py.html>`__ to see an example of how to use summarize_sql_statistics_time_series_by_plan API.
|
27592
27592
|
"""
|
27593
27593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27594
27594
|
required_arguments = ['compartmentId', 'sqlIdentifier']
|
@@ -27713,7 +27713,7 @@ class OperationsInsightsClient(object):
|
|
27713
27713
|
:rtype: :class:`~oci.response.Response`
|
27714
27714
|
|
27715
27715
|
:example:
|
27716
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27716
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/test_macs_managed_cloud_database_insight_connection.py.html>`__ to see an example of how to use test_macs_managed_cloud_database_insight_connection API.
|
27717
27717
|
"""
|
27718
27718
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27719
27719
|
required_arguments = []
|
@@ -27821,7 +27821,7 @@ class OperationsInsightsClient(object):
|
|
27821
27821
|
:rtype: :class:`~oci.response.Response`
|
27822
27822
|
|
27823
27823
|
:example:
|
27824
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27824
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_awr_hub.py.html>`__ to see an example of how to use update_awr_hub API.
|
27825
27825
|
"""
|
27826
27826
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27827
27827
|
required_arguments = ['awrHubId']
|
@@ -27930,7 +27930,7 @@ class OperationsInsightsClient(object):
|
|
27930
27930
|
:rtype: :class:`~oci.response.Response`
|
27931
27931
|
|
27932
27932
|
:example:
|
27933
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27933
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_awr_hub_source.py.html>`__ to see an example of how to use update_awr_hub_source API.
|
27934
27934
|
"""
|
27935
27935
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27936
27936
|
required_arguments = ['awrHubSourceId']
|
@@ -28039,7 +28039,7 @@ class OperationsInsightsClient(object):
|
|
28039
28039
|
:rtype: :class:`~oci.response.Response`
|
28040
28040
|
|
28041
28041
|
:example:
|
28042
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28042
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_database_insight.py.html>`__ to see an example of how to use update_database_insight API.
|
28043
28043
|
"""
|
28044
28044
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28045
28045
|
required_arguments = ['databaseInsightId']
|
@@ -28148,7 +28148,7 @@ class OperationsInsightsClient(object):
|
|
28148
28148
|
:rtype: :class:`~oci.response.Response`
|
28149
28149
|
|
28150
28150
|
:example:
|
28151
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28151
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_enterprise_manager_bridge.py.html>`__ to see an example of how to use update_enterprise_manager_bridge API.
|
28152
28152
|
"""
|
28153
28153
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28154
28154
|
required_arguments = ['enterpriseManagerBridgeId']
|
@@ -28257,7 +28257,7 @@ class OperationsInsightsClient(object):
|
|
28257
28257
|
:rtype: :class:`~oci.response.Response`
|
28258
28258
|
|
28259
28259
|
:example:
|
28260
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28260
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_exadata_insight.py.html>`__ to see an example of how to use update_exadata_insight API.
|
28261
28261
|
"""
|
28262
28262
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28263
28263
|
required_arguments = ['exadataInsightId']
|
@@ -28366,7 +28366,7 @@ class OperationsInsightsClient(object):
|
|
28366
28366
|
:rtype: :class:`~oci.response.Response`
|
28367
28367
|
|
28368
28368
|
:example:
|
28369
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28369
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_host_insight.py.html>`__ to see an example of how to use update_host_insight API.
|
28370
28370
|
"""
|
28371
28371
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28372
28372
|
required_arguments = ['hostInsightId']
|
@@ -28475,7 +28475,7 @@ class OperationsInsightsClient(object):
|
|
28475
28475
|
:rtype: :class:`~oci.response.Response`
|
28476
28476
|
|
28477
28477
|
:example:
|
28478
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_news_report.py.html>`__ to see an example of how to use update_news_report API.
|
28479
28479
|
"""
|
28480
28480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28481
28481
|
required_arguments = ['newsReportId']
|
@@ -28586,7 +28586,7 @@ class OperationsInsightsClient(object):
|
|
28586
28586
|
:rtype: :class:`~oci.response.Response`
|
28587
28587
|
|
28588
28588
|
:example:
|
28589
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28589
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_operations_insights_private_endpoint.py.html>`__ to see an example of how to use update_operations_insights_private_endpoint API.
|
28590
28590
|
"""
|
28591
28591
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28592
28592
|
required_arguments = ['operationsInsightsPrivateEndpointId']
|
@@ -28696,7 +28696,7 @@ class OperationsInsightsClient(object):
|
|
28696
28696
|
:rtype: :class:`~oci.response.Response`
|
28697
28697
|
|
28698
28698
|
:example:
|
28699
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28699
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_operations_insights_warehouse.py.html>`__ to see an example of how to use update_operations_insights_warehouse API.
|
28700
28700
|
"""
|
28701
28701
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28702
28702
|
required_arguments = ['operationsInsightsWarehouseId']
|
@@ -28805,7 +28805,7 @@ class OperationsInsightsClient(object):
|
|
28805
28805
|
:rtype: :class:`~oci.response.Response`
|
28806
28806
|
|
28807
28807
|
:example:
|
28808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28808
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_operations_insights_warehouse_user.py.html>`__ to see an example of how to use update_operations_insights_warehouse_user API.
|
28809
28809
|
"""
|
28810
28810
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28811
28811
|
required_arguments = ['operationsInsightsWarehouseUserId']
|
@@ -28916,7 +28916,7 @@ class OperationsInsightsClient(object):
|
|
28916
28916
|
:rtype: :class:`~oci.response.Response`
|
28917
28917
|
|
28918
28918
|
:example:
|
28919
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28919
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/opsi/update_opsi_configuration.py.html>`__ to see an example of how to use update_opsi_configuration API.
|
28920
28920
|
"""
|
28921
28921
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28922
28922
|
required_arguments = ['opsiConfigurationId']
|