oci 2.151.0__py3-none-any.whl → 2.152.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/__init__.py +20 -0
- oci/addons/adk/__init__.py +13 -0
- oci/addons/adk/agent.py +852 -0
- oci/addons/adk/agent_client.py +682 -0
- oci/addons/adk/agent_error.py +36 -0
- oci/addons/adk/auth/__init__.py +5 -0
- oci/addons/adk/auth/auth_provider.py +28 -0
- oci/addons/adk/auth/factory.py +78 -0
- oci/addons/adk/auth/oci/__init__.py +5 -0
- oci/addons/adk/auth/oci/instance_principal.py +53 -0
- oci/addons/adk/auth/oci/resource_principal.py +53 -0
- oci/addons/adk/auth/oci/session.py +91 -0
- oci/addons/adk/auth/oci/user_principal.py +64 -0
- oci/addons/adk/constants.py +17 -0
- oci/addons/adk/logger.py +163 -0
- oci/addons/adk/run/__init__.py +5 -0
- oci/addons/adk/run/response.py +56 -0
- oci/addons/adk/run/types.py +32 -0
- oci/addons/adk/tool/__init__.py +13 -0
- oci/addons/adk/tool/function_tool.py +334 -0
- oci/addons/adk/tool/prebuilt/__init__.py +8 -0
- oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
- oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
- oci/addons/adk/tool/tool.py +37 -0
- oci/addons/adk/tool/toolkit.py +189 -0
- oci/addons/adk/tool/utils.py +120 -0
- oci/addons/adk/util.py +325 -0
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/attributes_client.py +8 -8
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +84 -84
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +117 -117
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +745 -469
- oci/database/models/__init__.py +2 -0
- oci/database/models/autonomous_db_version_summary.py +31 -0
- oci/database/models/backup.py +4 -2
- oci/database/models/backup_summary.py +4 -2
- oci/database/models/create_external_backup_job_details.py +4 -4
- oci/database/models/db_system.py +4 -2
- oci/database/models/db_system_summary.py +4 -2
- oci/database/models/db_system_upgrade_summary.py +152 -0
- oci/database/models/external_container_database.py +4 -2
- oci/database/models/external_container_database_summary.py +4 -2
- oci/database/models/external_database_base.py +4 -2
- oci/database/models/external_non_container_database.py +4 -2
- oci/database/models/external_non_container_database_summary.py +4 -2
- oci/database/models/external_pluggable_database.py +4 -2
- oci/database/models/external_pluggable_database_summary.py +4 -2
- oci/database_management/db_management_client.py +356 -230
- oci/database_management/db_management_client_composite_operations.py +44 -0
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -247
- oci/database_management/models/__init__.py +0 -4
- oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
- oci/database_management/models/disable_database_management_feature_details.py +33 -2
- oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
- oci/database_management/models/discovered_external_database.py +64 -2
- oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
- oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
- oci/database_management/models/managed_database.py +2 -4
- oci/database_management/models/managed_database_summary.py +2 -4
- oci/database_management/models/modify_database_management_feature_details.py +1 -1
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +42 -42
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/__init__.py +20 -0
- oci/distributed_database/distributed_autonomous_db_service_client.py +2315 -0
- oci/distributed_database/distributed_autonomous_db_service_client_composite_operations.py +605 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +944 -0
- oci/distributed_database/distributed_db_private_endpoint_service_client_composite_operations.py +238 -0
- oci/distributed_database/distributed_db_service_client.py +2435 -0
- oci/distributed_database/distributed_db_service_client_composite_operations.py +647 -0
- oci/distributed_database/distributed_db_work_request_service_client.py +654 -0
- oci/distributed_database/distributed_db_work_request_service_client_composite_operations.py +26 -0
- oci/distributed_database/models/__init__.py +158 -0
- oci/distributed_database/models/add_distributed_autonomous_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/add_distributed_database_gds_control_node_details.py +105 -0
- oci/distributed_database/models/catalog_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/catalog_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/change_distributed_autonomous_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_database_private_endpoint_compartment_details.py +74 -0
- oci/distributed_database/models/change_distributed_db_backup_config_details.py +66 -0
- oci/distributed_database/models/configure_distributed_autonomous_database_gsms_details.py +103 -0
- oci/distributed_database/models/configure_distributed_database_gsms_details.py +103 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_catalog_with_dedicated_infra_details.py +342 -0
- oci/distributed_database/models/create_distributed_autonomous_database_details.py +799 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_details.py +101 -0
- oci/distributed_database/models/create_distributed_autonomous_database_shard_with_dedicated_infra_details.py +377 -0
- oci/distributed_database/models/create_distributed_database_catalog_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_catalog_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/create_distributed_database_details.py +810 -0
- oci/distributed_database/models/create_distributed_database_private_endpoint_details.py +260 -0
- oci/distributed_database/models/create_distributed_database_shard_details.py +99 -0
- oci/distributed_database/models/create_distributed_database_shard_with_exadb_xs_details.py +282 -0
- oci/distributed_database/models/distributed_autonomous_database.py +1143 -0
- oci/distributed_database/models/distributed_autonomous_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_catalog_with_dedicated_infra.py +559 -0
- oci/distributed_database/models/distributed_autonomous_database_collection.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_connection_string.py +70 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_autonomous_database_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_autonomous_database_shard.py +194 -0
- oci/distributed_database/models/distributed_autonomous_database_shard_with_dedicated_infra.py +592 -0
- oci/distributed_database/models/distributed_autonomous_database_summary.py +935 -0
- oci/distributed_database/models/distributed_autonomous_db_metadata.py +70 -0
- oci/distributed_database/models/distributed_database.py +1154 -0
- oci/distributed_database/models/distributed_database_associated_with_private_endpoint.py +105 -0
- oci/distributed_database/models/distributed_database_catalog.py +192 -0
- oci/distributed_database/models/distributed_database_catalog_with_exadb_xs.py +466 -0
- oci/distributed_database/models/distributed_database_collection.py +70 -0
- oci/distributed_database/models/distributed_database_gsm.py +385 -0
- oci/distributed_database/models/distributed_database_private_endpoint.py +639 -0
- oci/distributed_database/models/distributed_database_private_endpoint_collection.py +70 -0
- oci/distributed_database/models/distributed_database_private_endpoint_summary.py +479 -0
- oci/distributed_database/models/distributed_database_shard.py +192 -0
- oci/distributed_database/models/distributed_database_shard_with_exadb_xs.py +499 -0
- oci/distributed_database/models/distributed_database_summary.py +904 -0
- oci/distributed_database/models/distributed_db_backup_config.py +536 -0
- oci/distributed_database/models/distributed_db_backup_destination.py +362 -0
- oci/distributed_database/models/distributed_db_connection_string.py +70 -0
- oci/distributed_database/models/distributed_db_gsm_image.py +105 -0
- oci/distributed_database/models/distributed_db_metadata.py +70 -0
- oci/distributed_database/models/generate_distributed_autonomous_database_wallet_details.py +70 -0
- oci/distributed_database/models/generate_distributed_database_wallet_details.py +70 -0
- oci/distributed_database/models/patch_distributed_autonomous_database_details.py +73 -0
- oci/distributed_database/models/patch_distributed_database_details.py +73 -0
- oci/distributed_database/models/patch_insert_instruction.py +87 -0
- oci/distributed_database/models/patch_instruction.py +154 -0
- oci/distributed_database/models/patch_merge_instruction.py +95 -0
- oci/distributed_database/models/patch_remove_instruction.py +57 -0
- oci/distributed_database/models/shard_peer_with_dedicated_infra.py +331 -0
- oci/distributed_database/models/shard_peer_with_exadb_xs.py +331 -0
- oci/distributed_database/models/update_distributed_autonomous_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_details.py +136 -0
- oci/distributed_database/models/update_distributed_database_private_endpoint_details.py +198 -0
- oci/distributed_database/models/upload_distributed_autonomous_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/upload_distributed_database_signed_certificate_and_generate_wallet_details.py +71 -0
- oci/distributed_database/models/work_request.py +516 -0
- oci/distributed_database/models/work_request_error.py +134 -0
- oci/distributed_database/models/work_request_error_collection.py +70 -0
- oci/distributed_database/models/work_request_log_entry.py +101 -0
- oci/distributed_database/models/work_request_log_entry_collection.py +70 -0
- oci/distributed_database/models/work_request_resource.py +232 -0
- oci/distributed_database/models/work_request_summary.py +516 -0
- oci/distributed_database/models/work_request_summary_collection.py +70 -0
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
- oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +58 -58
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/__init__.py +14 -0
- oci/model_deployment/model_deployment_client.py +331 -0
- oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
- oci/model_deployment/models/__init__.py +14 -0
- oci/model_deployment/models/inference_result.py +70 -0
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +7 -7
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/create_db_system_details.py +31 -0
- oci/mysql/models/db_system.py +31 -0
- oci/mysql/models/db_system_snapshot.py +31 -0
- oci/mysql/models/replica.py +31 -0
- oci/mysql/models/replica_overrides.py +33 -2
- oci/mysql/models/replica_summary.py +31 -0
- oci/mysql/models/update_db_system_details.py +31 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +86 -86
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/models/__init__.py +2 -0
- oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
- oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/models/opensearch_cluster.py +291 -0
- oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
- oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
- oci/opensearch/models/shapes_details.py +70 -0
- oci/opensearch/models/update_cluster_specs_details.py +186 -0
- oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +87 -16
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/redis_cluster_client.py +12 -12
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +48 -48
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/METADATA +6 -1
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/RECORD +428 -313
- oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
- oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/LICENSE.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/WHEEL +0 -0
- {oci-2.151.0.dist-info → oci-2.152.1.dist-info}/top_level.txt +0 -0
@@ -160,14 +160,14 @@ class ShardedDatabaseServiceClient(object):
|
|
160
160
|
:rtype: :class:`~oci.response.Response`
|
161
161
|
|
162
162
|
:example:
|
163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/change_private_endpoint_compartment.py.html>`__ to see an example of how to use change_private_endpoint_compartment API.
|
164
164
|
"""
|
165
165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
166
166
|
required_arguments = ['privateEndpointId']
|
167
167
|
resource_path = "/privateEndpoints/{privateEndpointId}/actions/changeCompartment"
|
168
168
|
method = "POST"
|
169
169
|
operation_name = "change_private_endpoint_compartment"
|
170
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
170
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpoint/ChangePrivateEndpointCompartment"
|
171
171
|
|
172
172
|
# Don't accept unknown kwargs
|
173
173
|
expected_kwargs = [
|
@@ -280,14 +280,14 @@ class ShardedDatabaseServiceClient(object):
|
|
280
280
|
:rtype: :class:`~oci.response.Response`
|
281
281
|
|
282
282
|
:example:
|
283
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
283
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/change_sharded_database_compartment.py.html>`__ to see an example of how to use change_sharded_database_compartment API.
|
284
284
|
"""
|
285
285
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
286
286
|
required_arguments = ['shardedDatabaseId']
|
287
287
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/changeCompartment"
|
288
288
|
method = "POST"
|
289
289
|
operation_name = "change_sharded_database_compartment"
|
290
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
290
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/ChangeShardedDatabaseCompartment"
|
291
291
|
|
292
292
|
# Don't accept unknown kwargs
|
293
293
|
expected_kwargs = [
|
@@ -403,14 +403,14 @@ class ShardedDatabaseServiceClient(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.152.1/globallydistributeddatabase/configure_sharded_database_gsms.py.html>`__ to see an example of how to use configure_sharded_database_gsms API.
|
407
407
|
"""
|
408
408
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
409
409
|
required_arguments = ['shardedDatabaseId']
|
410
410
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/configureGsms"
|
411
411
|
method = "POST"
|
412
412
|
operation_name = "configure_sharded_database_gsms"
|
413
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
413
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/ConfigureShardedDatabaseGsms"
|
414
414
|
|
415
415
|
# Don't accept unknown kwargs
|
416
416
|
expected_kwargs = [
|
@@ -528,14 +528,14 @@ class ShardedDatabaseServiceClient(object):
|
|
528
528
|
:rtype: :class:`~oci.response.Response`
|
529
529
|
|
530
530
|
:example:
|
531
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
531
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/configure_sharding.py.html>`__ to see an example of how to use configure_sharding API.
|
532
532
|
"""
|
533
533
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
534
534
|
required_arguments = ['shardedDatabaseId']
|
535
535
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/configureSharding"
|
536
536
|
method = "POST"
|
537
537
|
operation_name = "configure_sharding"
|
538
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
538
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/ConfigureSharding"
|
539
539
|
|
540
540
|
# Don't accept unknown kwargs
|
541
541
|
expected_kwargs = [
|
@@ -644,7 +644,7 @@ class ShardedDatabaseServiceClient(object):
|
|
644
644
|
:rtype: :class:`~oci.response.Response`
|
645
645
|
|
646
646
|
:example:
|
647
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
647
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/create_private_endpoint.py.html>`__ to see an example of how to use create_private_endpoint API.
|
648
648
|
"""
|
649
649
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
650
650
|
required_arguments = []
|
@@ -742,7 +742,7 @@ class ShardedDatabaseServiceClient(object):
|
|
742
742
|
:rtype: :class:`~oci.response.Response`
|
743
743
|
|
744
744
|
:example:
|
745
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
745
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/create_sharded_database.py.html>`__ to see an example of how to use create_sharded_database API.
|
746
746
|
"""
|
747
747
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
748
748
|
required_arguments = []
|
@@ -847,14 +847,14 @@ class ShardedDatabaseServiceClient(object):
|
|
847
847
|
:rtype: :class:`~oci.response.Response`
|
848
848
|
|
849
849
|
:example:
|
850
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
850
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/delete_private_endpoint.py.html>`__ to see an example of how to use delete_private_endpoint API.
|
851
851
|
"""
|
852
852
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
853
853
|
required_arguments = ['privateEndpointId']
|
854
854
|
resource_path = "/privateEndpoints/{privateEndpointId}"
|
855
855
|
method = "DELETE"
|
856
856
|
operation_name = "delete_private_endpoint"
|
857
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
857
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpoint/DeletePrivateEndpoint"
|
858
858
|
|
859
859
|
# Don't accept unknown kwargs
|
860
860
|
expected_kwargs = [
|
@@ -962,14 +962,14 @@ class ShardedDatabaseServiceClient(object):
|
|
962
962
|
:rtype: :class:`~oci.response.Response`
|
963
963
|
|
964
964
|
:example:
|
965
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
965
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/delete_sharded_database.py.html>`__ to see an example of how to use delete_sharded_database API.
|
966
966
|
"""
|
967
967
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
968
968
|
required_arguments = ['shardedDatabaseId']
|
969
969
|
resource_path = "/shardedDatabases/{shardedDatabaseId}"
|
970
970
|
method = "DELETE"
|
971
971
|
operation_name = "delete_sharded_database"
|
972
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
972
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/DeleteShardedDatabase"
|
973
973
|
|
974
974
|
# Don't accept unknown kwargs
|
975
975
|
expected_kwargs = [
|
@@ -1080,14 +1080,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1080
1080
|
:rtype: :class:`~oci.response.Response`
|
1081
1081
|
|
1082
1082
|
:example:
|
1083
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1083
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/download_gsm_certificate_signing_request.py.html>`__ to see an example of how to use download_gsm_certificate_signing_request API.
|
1084
1084
|
"""
|
1085
1085
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1086
1086
|
required_arguments = ['shardedDatabaseId']
|
1087
1087
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/downloadGsmCertificateSigningRequest"
|
1088
1088
|
method = "POST"
|
1089
1089
|
operation_name = "download_gsm_certificate_signing_request"
|
1090
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1090
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/DownloadGsmCertificateSigningRequest"
|
1091
1091
|
|
1092
1092
|
# Don't accept unknown kwargs
|
1093
1093
|
expected_kwargs = [
|
@@ -1197,14 +1197,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1197
1197
|
:rtype: :class:`~oci.response.Response`
|
1198
1198
|
|
1199
1199
|
:example:
|
1200
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1200
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/fetch_connection_string.py.html>`__ to see an example of how to use fetch_connection_string API.
|
1201
1201
|
"""
|
1202
1202
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1203
1203
|
required_arguments = ['shardedDatabaseId']
|
1204
1204
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/getConnectionString"
|
1205
1205
|
method = "POST"
|
1206
1206
|
operation_name = "fetch_connection_string"
|
1207
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1207
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/FetchConnectionString"
|
1208
1208
|
|
1209
1209
|
# Don't accept unknown kwargs
|
1210
1210
|
expected_kwargs = [
|
@@ -1307,14 +1307,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1307
1307
|
:rtype: :class:`~oci.response.Response`
|
1308
1308
|
|
1309
1309
|
:example:
|
1310
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1310
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/fetch_shardable_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use fetch_shardable_cloud_autonomous_vm_clusters API.
|
1311
1311
|
"""
|
1312
1312
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1313
1313
|
required_arguments = []
|
1314
1314
|
resource_path = "/shardedDatabases/actions/listShardableCloudAutonomousVmClusters"
|
1315
1315
|
method = "POST"
|
1316
1316
|
operation_name = "fetch_shardable_cloud_autonomous_vm_clusters"
|
1317
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1317
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/FetchShardableCloudAutonomousVmClusters"
|
1318
1318
|
|
1319
1319
|
# Don't accept unknown kwargs
|
1320
1320
|
expected_kwargs = [
|
@@ -1417,14 +1417,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1417
1417
|
:rtype: :class:`~oci.response.Response`
|
1418
1418
|
|
1419
1419
|
:example:
|
1420
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1420
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/generate_gsm_certificate_signing_request.py.html>`__ to see an example of how to use generate_gsm_certificate_signing_request API.
|
1421
1421
|
"""
|
1422
1422
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1423
1423
|
required_arguments = ['shardedDatabaseId']
|
1424
1424
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/generateGsmCertificateSigningRequest"
|
1425
1425
|
method = "POST"
|
1426
1426
|
operation_name = "generate_gsm_certificate_signing_request"
|
1427
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1427
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/GenerateGsmCertificateSigningRequest"
|
1428
1428
|
|
1429
1429
|
# Don't accept unknown kwargs
|
1430
1430
|
expected_kwargs = [
|
@@ -1543,14 +1543,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1543
1543
|
:rtype: :class:`~oci.response.Response`
|
1544
1544
|
|
1545
1545
|
:example:
|
1546
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1546
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/generate_wallet.py.html>`__ to see an example of how to use generate_wallet API.
|
1547
1547
|
"""
|
1548
1548
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1549
1549
|
required_arguments = ['shardedDatabaseId']
|
1550
1550
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/generateWallet"
|
1551
1551
|
method = "POST"
|
1552
1552
|
operation_name = "generate_wallet"
|
1553
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1553
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/GenerateWallet"
|
1554
1554
|
|
1555
1555
|
# Don't accept unknown kwargs
|
1556
1556
|
expected_kwargs = [
|
@@ -1655,14 +1655,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1655
1655
|
:rtype: :class:`~oci.response.Response`
|
1656
1656
|
|
1657
1657
|
:example:
|
1658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/get_private_endpoint.py.html>`__ to see an example of how to use get_private_endpoint API.
|
1659
1659
|
"""
|
1660
1660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1661
1661
|
required_arguments = ['privateEndpointId']
|
1662
1662
|
resource_path = "/privateEndpoints/{privateEndpointId}"
|
1663
1663
|
method = "GET"
|
1664
1664
|
operation_name = "get_private_endpoint"
|
1665
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1665
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpoint/GetPrivateEndpoint"
|
1666
1666
|
|
1667
1667
|
# Don't accept unknown kwargs
|
1668
1668
|
expected_kwargs = [
|
@@ -1766,14 +1766,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1766
1766
|
:rtype: :class:`~oci.response.Response`
|
1767
1767
|
|
1768
1768
|
:example:
|
1769
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1769
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/get_sharded_database.py.html>`__ to see an example of how to use get_sharded_database API.
|
1770
1770
|
"""
|
1771
1771
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1772
1772
|
required_arguments = ['shardedDatabaseId']
|
1773
1773
|
resource_path = "/shardedDatabases/{shardedDatabaseId}"
|
1774
1774
|
method = "GET"
|
1775
1775
|
operation_name = "get_sharded_database"
|
1776
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1776
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/GetShardedDatabase"
|
1777
1777
|
|
1778
1778
|
# Don't accept unknown kwargs
|
1779
1779
|
expected_kwargs = [
|
@@ -1874,14 +1874,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1874
1874
|
:rtype: :class:`~oci.response.Response`
|
1875
1875
|
|
1876
1876
|
:example:
|
1877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1877
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
1878
1878
|
"""
|
1879
1879
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1880
1880
|
required_arguments = ['workRequestId']
|
1881
1881
|
resource_path = "/workRequests/{workRequestId}"
|
1882
1882
|
method = "GET"
|
1883
1883
|
operation_name = "get_work_request"
|
1884
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
1884
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/WorkRequest/GetWorkRequest"
|
1885
1885
|
|
1886
1886
|
# Don't accept unknown kwargs
|
1887
1887
|
expected_kwargs = [
|
@@ -1996,14 +1996,14 @@ class ShardedDatabaseServiceClient(object):
|
|
1996
1996
|
:rtype: :class:`~oci.response.Response`
|
1997
1997
|
|
1998
1998
|
:example:
|
1999
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1999
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/list_private_endpoints.py.html>`__ to see an example of how to use list_private_endpoints API.
|
2000
2000
|
"""
|
2001
2001
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2002
2002
|
required_arguments = ['compartmentId']
|
2003
2003
|
resource_path = "/privateEndpoints"
|
2004
2004
|
method = "GET"
|
2005
2005
|
operation_name = "list_private_endpoints"
|
2006
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2006
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpointCollection/ListPrivateEndpoints"
|
2007
2007
|
|
2008
2008
|
# Don't accept unknown kwargs
|
2009
2009
|
expected_kwargs = [
|
@@ -2146,14 +2146,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2146
2146
|
:rtype: :class:`~oci.response.Response`
|
2147
2147
|
|
2148
2148
|
:example:
|
2149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/list_sharded_databases.py.html>`__ to see an example of how to use list_sharded_databases API.
|
2150
2150
|
"""
|
2151
2151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2152
2152
|
required_arguments = ['compartmentId']
|
2153
2153
|
resource_path = "/shardedDatabases"
|
2154
2154
|
method = "GET"
|
2155
2155
|
operation_name = "list_sharded_databases"
|
2156
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2156
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabaseCollection/ListShardedDatabases"
|
2157
2157
|
|
2158
2158
|
# Don't accept unknown kwargs
|
2159
2159
|
expected_kwargs = [
|
@@ -2288,14 +2288,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2288
2288
|
:rtype: :class:`~oci.response.Response`
|
2289
2289
|
|
2290
2290
|
:example:
|
2291
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2291
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
2292
2292
|
"""
|
2293
2293
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2294
2294
|
required_arguments = ['workRequestId']
|
2295
2295
|
resource_path = "/workRequests/{workRequestId}/errors"
|
2296
2296
|
method = "GET"
|
2297
2297
|
operation_name = "list_work_request_errors"
|
2298
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2298
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/WorkRequestError/ListWorkRequestErrors"
|
2299
2299
|
|
2300
2300
|
# Don't accept unknown kwargs
|
2301
2301
|
expected_kwargs = [
|
@@ -2430,14 +2430,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2430
2430
|
:rtype: :class:`~oci.response.Response`
|
2431
2431
|
|
2432
2432
|
:example:
|
2433
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2433
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
2434
2434
|
"""
|
2435
2435
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2436
2436
|
required_arguments = ['workRequestId']
|
2437
2437
|
resource_path = "/workRequests/{workRequestId}/logs"
|
2438
2438
|
method = "GET"
|
2439
2439
|
operation_name = "list_work_request_logs"
|
2440
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2440
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/WorkRequestLogEntry/ListWorkRequestLogs"
|
2441
2441
|
|
2442
2442
|
# Don't accept unknown kwargs
|
2443
2443
|
expected_kwargs = [
|
@@ -2583,14 +2583,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2583
2583
|
:rtype: :class:`~oci.response.Response`
|
2584
2584
|
|
2585
2585
|
:example:
|
2586
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2586
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
2587
2587
|
"""
|
2588
2588
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2589
2589
|
required_arguments = ['compartmentId']
|
2590
2590
|
resource_path = "/workRequests"
|
2591
2591
|
method = "GET"
|
2592
2592
|
operation_name = "list_work_requests"
|
2593
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2593
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/WorkRequest/ListWorkRequests"
|
2594
2594
|
|
2595
2595
|
# Don't accept unknown kwargs
|
2596
2596
|
expected_kwargs = [
|
@@ -2723,14 +2723,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2723
2723
|
:rtype: :class:`~oci.response.Response`
|
2724
2724
|
|
2725
2725
|
:example:
|
2726
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2726
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/patch_sharded_database.py.html>`__ to see an example of how to use patch_sharded_database API.
|
2727
2727
|
"""
|
2728
2728
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2729
2729
|
required_arguments = ['shardedDatabaseId']
|
2730
2730
|
resource_path = "/shardedDatabases/{shardedDatabaseId}"
|
2731
2731
|
method = "PATCH"
|
2732
2732
|
operation_name = "patch_sharded_database"
|
2733
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2733
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/PatchShardedDatabase"
|
2734
2734
|
|
2735
2735
|
# Don't accept unknown kwargs
|
2736
2736
|
expected_kwargs = [
|
@@ -2833,14 +2833,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2833
2833
|
:rtype: :class:`~oci.response.Response`
|
2834
2834
|
|
2835
2835
|
:example:
|
2836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2836
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/prevalidate_sharded_database.py.html>`__ to see an example of how to use prevalidate_sharded_database API.
|
2837
2837
|
"""
|
2838
2838
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2839
2839
|
required_arguments = ['compartmentId']
|
2840
2840
|
resource_path = "/shardedDatabases/actions/prevalidate"
|
2841
2841
|
method = "POST"
|
2842
2842
|
operation_name = "prevalidate_sharded_database"
|
2843
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2843
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/PrevalidateShardedDatabase"
|
2844
2844
|
|
2845
2845
|
# Don't accept unknown kwargs
|
2846
2846
|
expected_kwargs = [
|
@@ -2945,14 +2945,14 @@ class ShardedDatabaseServiceClient(object):
|
|
2945
2945
|
:rtype: :class:`~oci.response.Response`
|
2946
2946
|
|
2947
2947
|
:example:
|
2948
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2948
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/reinstate_proxy_instance.py.html>`__ to see an example of how to use reinstate_proxy_instance API.
|
2949
2949
|
"""
|
2950
2950
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2951
2951
|
required_arguments = ['privateEndpointId']
|
2952
2952
|
resource_path = "/privateEndpoints/{privateEndpointId}/actions/reinstateProxyInstance"
|
2953
2953
|
method = "POST"
|
2954
2954
|
operation_name = "reinstate_proxy_instance"
|
2955
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
2955
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpoint/ReinstateProxyInstance"
|
2956
2956
|
|
2957
2957
|
# Don't accept unknown kwargs
|
2958
2958
|
expected_kwargs = [
|
@@ -3060,14 +3060,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3060
3060
|
:rtype: :class:`~oci.response.Response`
|
3061
3061
|
|
3062
3062
|
:example:
|
3063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/start_sharded_database.py.html>`__ to see an example of how to use start_sharded_database API.
|
3064
3064
|
"""
|
3065
3065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3066
3066
|
required_arguments = ['shardedDatabaseId']
|
3067
3067
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/startDatabase"
|
3068
3068
|
method = "POST"
|
3069
3069
|
operation_name = "start_sharded_database"
|
3070
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3070
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/StartShardedDatabase"
|
3071
3071
|
|
3072
3072
|
# Don't accept unknown kwargs
|
3073
3073
|
expected_kwargs = [
|
@@ -3175,14 +3175,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3175
3175
|
:rtype: :class:`~oci.response.Response`
|
3176
3176
|
|
3177
3177
|
:example:
|
3178
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3178
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/stop_sharded_database.py.html>`__ to see an example of how to use stop_sharded_database API.
|
3179
3179
|
"""
|
3180
3180
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3181
3181
|
required_arguments = ['shardedDatabaseId']
|
3182
3182
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/stopDatabase"
|
3183
3183
|
method = "POST"
|
3184
3184
|
operation_name = "stop_sharded_database"
|
3185
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3185
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/StopShardedDatabase"
|
3186
3186
|
|
3187
3187
|
# Don't accept unknown kwargs
|
3188
3188
|
expected_kwargs = [
|
@@ -3293,14 +3293,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3293
3293
|
:rtype: :class:`~oci.response.Response`
|
3294
3294
|
|
3295
3295
|
:example:
|
3296
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3296
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/update_private_endpoint.py.html>`__ to see an example of how to use update_private_endpoint API.
|
3297
3297
|
"""
|
3298
3298
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3299
3299
|
required_arguments = ['privateEndpointId']
|
3300
3300
|
resource_path = "/privateEndpoints/{privateEndpointId}"
|
3301
3301
|
method = "PUT"
|
3302
3302
|
operation_name = "update_private_endpoint"
|
3303
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3303
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/PrivateEndpoint/UpdatePrivateEndpoint"
|
3304
3304
|
|
3305
3305
|
# Don't accept unknown kwargs
|
3306
3306
|
expected_kwargs = [
|
@@ -3408,14 +3408,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3408
3408
|
:rtype: :class:`~oci.response.Response`
|
3409
3409
|
|
3410
3410
|
:example:
|
3411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/update_sharded_database.py.html>`__ to see an example of how to use update_sharded_database API.
|
3412
3412
|
"""
|
3413
3413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3414
3414
|
required_arguments = ['shardedDatabaseId']
|
3415
3415
|
resource_path = "/shardedDatabases/{shardedDatabaseId}"
|
3416
3416
|
method = "PUT"
|
3417
3417
|
operation_name = "update_sharded_database"
|
3418
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3418
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/UpdateShardedDatabase"
|
3419
3419
|
|
3420
3420
|
# Don't accept unknown kwargs
|
3421
3421
|
expected_kwargs = [
|
@@ -3530,14 +3530,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3530
3530
|
:rtype: :class:`~oci.response.Response`
|
3531
3531
|
|
3532
3532
|
:example:
|
3533
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3533
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/upload_signed_certificate_and_generate_wallet.py.html>`__ to see an example of how to use upload_signed_certificate_and_generate_wallet API.
|
3534
3534
|
"""
|
3535
3535
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3536
3536
|
required_arguments = ['shardedDatabaseId']
|
3537
3537
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/uploadSignedCertificateAndGenerateWallet"
|
3538
3538
|
method = "POST"
|
3539
3539
|
operation_name = "upload_signed_certificate_and_generate_wallet"
|
3540
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3540
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/UploadSignedCertificateAndGenerateWallet"
|
3541
3541
|
|
3542
3542
|
# Don't accept unknown kwargs
|
3543
3543
|
expected_kwargs = [
|
@@ -3656,14 +3656,14 @@ class ShardedDatabaseServiceClient(object):
|
|
3656
3656
|
:rtype: :class:`~oci.response.Response`
|
3657
3657
|
|
3658
3658
|
:example:
|
3659
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3659
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.1/globallydistributeddatabase/validate_network.py.html>`__ to see an example of how to use validate_network API.
|
3660
3660
|
"""
|
3661
3661
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3662
3662
|
required_arguments = ['shardedDatabaseId']
|
3663
3663
|
resource_path = "/shardedDatabases/{shardedDatabaseId}/actions/validateNetwork"
|
3664
3664
|
method = "POST"
|
3665
3665
|
operation_name = "validate_network"
|
3666
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-
|
3666
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/globally-distributed-database/20230301/ShardedDatabase/ValidateNetwork"
|
3667
3667
|
|
3668
3668
|
# Don't accept unknown kwargs
|
3669
3669
|
expected_kwargs = [
|