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
@@ -0,0 +1,799 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
|
3
|
+
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
4
|
+
|
5
|
+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20250101
|
6
|
+
|
7
|
+
|
8
|
+
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
|
9
|
+
from oci.decorators import init_model_state_from_kwargs
|
10
|
+
|
11
|
+
|
12
|
+
@init_model_state_from_kwargs
|
13
|
+
class CreateDistributedAutonomousDatabaseDetails(object):
|
14
|
+
"""
|
15
|
+
Details required for creation of the Globally distributed autonomous database.
|
16
|
+
"""
|
17
|
+
|
18
|
+
#: A constant which can be used with the sharding_method property of a CreateDistributedAutonomousDatabaseDetails.
|
19
|
+
#: This constant has a value of "USER"
|
20
|
+
SHARDING_METHOD_USER = "USER"
|
21
|
+
|
22
|
+
#: A constant which can be used with the sharding_method property of a CreateDistributedAutonomousDatabaseDetails.
|
23
|
+
#: This constant has a value of "SYSTEM"
|
24
|
+
SHARDING_METHOD_SYSTEM = "SYSTEM"
|
25
|
+
|
26
|
+
#: A constant which can be used with the db_workload property of a CreateDistributedAutonomousDatabaseDetails.
|
27
|
+
#: This constant has a value of "OLTP"
|
28
|
+
DB_WORKLOAD_OLTP = "OLTP"
|
29
|
+
|
30
|
+
#: A constant which can be used with the db_workload property of a CreateDistributedAutonomousDatabaseDetails.
|
31
|
+
#: This constant has a value of "DW"
|
32
|
+
DB_WORKLOAD_DW = "DW"
|
33
|
+
|
34
|
+
#: A constant which can be used with the replication_method property of a CreateDistributedAutonomousDatabaseDetails.
|
35
|
+
#: This constant has a value of "RAFT"
|
36
|
+
REPLICATION_METHOD_RAFT = "RAFT"
|
37
|
+
|
38
|
+
#: A constant which can be used with the replication_method property of a CreateDistributedAutonomousDatabaseDetails.
|
39
|
+
#: This constant has a value of "DG"
|
40
|
+
REPLICATION_METHOD_DG = "DG"
|
41
|
+
|
42
|
+
#: A constant which can be used with the db_deployment_type property of a CreateDistributedAutonomousDatabaseDetails.
|
43
|
+
#: This constant has a value of "ADB_D"
|
44
|
+
DB_DEPLOYMENT_TYPE_ADB_D = "ADB_D"
|
45
|
+
|
46
|
+
def __init__(self, **kwargs):
|
47
|
+
"""
|
48
|
+
Initializes a new CreateDistributedAutonomousDatabaseDetails object with values from keyword arguments.
|
49
|
+
The following keyword arguments are supported (corresponding to the getters/setters of this class):
|
50
|
+
|
51
|
+
:param compartment_id:
|
52
|
+
The value to assign to the compartment_id property of this CreateDistributedAutonomousDatabaseDetails.
|
53
|
+
:type compartment_id: str
|
54
|
+
|
55
|
+
:param display_name:
|
56
|
+
The value to assign to the display_name property of this CreateDistributedAutonomousDatabaseDetails.
|
57
|
+
:type display_name: str
|
58
|
+
|
59
|
+
:param database_version:
|
60
|
+
The value to assign to the database_version property of this CreateDistributedAutonomousDatabaseDetails.
|
61
|
+
:type database_version: str
|
62
|
+
|
63
|
+
:param prefix:
|
64
|
+
The value to assign to the prefix property of this CreateDistributedAutonomousDatabaseDetails.
|
65
|
+
:type prefix: str
|
66
|
+
|
67
|
+
:param private_endpoint_ids:
|
68
|
+
The value to assign to the private_endpoint_ids property of this CreateDistributedAutonomousDatabaseDetails.
|
69
|
+
:type private_endpoint_ids: list[str]
|
70
|
+
|
71
|
+
:param sharding_method:
|
72
|
+
The value to assign to the sharding_method property of this CreateDistributedAutonomousDatabaseDetails.
|
73
|
+
Allowed values for this property are: "USER", "SYSTEM"
|
74
|
+
:type sharding_method: str
|
75
|
+
|
76
|
+
:param db_workload:
|
77
|
+
The value to assign to the db_workload property of this CreateDistributedAutonomousDatabaseDetails.
|
78
|
+
Allowed values for this property are: "OLTP", "DW"
|
79
|
+
:type db_workload: str
|
80
|
+
|
81
|
+
:param character_set:
|
82
|
+
The value to assign to the character_set property of this CreateDistributedAutonomousDatabaseDetails.
|
83
|
+
:type character_set: str
|
84
|
+
|
85
|
+
:param ncharacter_set:
|
86
|
+
The value to assign to the ncharacter_set property of this CreateDistributedAutonomousDatabaseDetails.
|
87
|
+
:type ncharacter_set: str
|
88
|
+
|
89
|
+
:param chunks:
|
90
|
+
The value to assign to the chunks property of this CreateDistributedAutonomousDatabaseDetails.
|
91
|
+
:type chunks: int
|
92
|
+
|
93
|
+
:param listener_port:
|
94
|
+
The value to assign to the listener_port property of this CreateDistributedAutonomousDatabaseDetails.
|
95
|
+
:type listener_port: int
|
96
|
+
|
97
|
+
:param listener_port_tls:
|
98
|
+
The value to assign to the listener_port_tls property of this CreateDistributedAutonomousDatabaseDetails.
|
99
|
+
:type listener_port_tls: int
|
100
|
+
|
101
|
+
:param ons_port_local:
|
102
|
+
The value to assign to the ons_port_local property of this CreateDistributedAutonomousDatabaseDetails.
|
103
|
+
:type ons_port_local: int
|
104
|
+
|
105
|
+
:param ons_port_remote:
|
106
|
+
The value to assign to the ons_port_remote property of this CreateDistributedAutonomousDatabaseDetails.
|
107
|
+
:type ons_port_remote: int
|
108
|
+
|
109
|
+
:param replication_method:
|
110
|
+
The value to assign to the replication_method property of this CreateDistributedAutonomousDatabaseDetails.
|
111
|
+
Allowed values for this property are: "RAFT", "DG"
|
112
|
+
:type replication_method: str
|
113
|
+
|
114
|
+
:param replication_factor:
|
115
|
+
The value to assign to the replication_factor property of this CreateDistributedAutonomousDatabaseDetails.
|
116
|
+
:type replication_factor: int
|
117
|
+
|
118
|
+
:param replication_unit:
|
119
|
+
The value to assign to the replication_unit property of this CreateDistributedAutonomousDatabaseDetails.
|
120
|
+
:type replication_unit: int
|
121
|
+
|
122
|
+
:param db_deployment_type:
|
123
|
+
The value to assign to the db_deployment_type property of this CreateDistributedAutonomousDatabaseDetails.
|
124
|
+
Allowed values for this property are: "ADB_D"
|
125
|
+
:type db_deployment_type: str
|
126
|
+
|
127
|
+
:param shard_details:
|
128
|
+
The value to assign to the shard_details property of this CreateDistributedAutonomousDatabaseDetails.
|
129
|
+
:type shard_details: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseShardDetails]
|
130
|
+
|
131
|
+
:param catalog_details:
|
132
|
+
The value to assign to the catalog_details property of this CreateDistributedAutonomousDatabaseDetails.
|
133
|
+
:type catalog_details: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseCatalogDetails]
|
134
|
+
|
135
|
+
:param freeform_tags:
|
136
|
+
The value to assign to the freeform_tags property of this CreateDistributedAutonomousDatabaseDetails.
|
137
|
+
:type freeform_tags: dict(str, str)
|
138
|
+
|
139
|
+
:param defined_tags:
|
140
|
+
The value to assign to the defined_tags property of this CreateDistributedAutonomousDatabaseDetails.
|
141
|
+
:type defined_tags: dict(str, dict(str, object))
|
142
|
+
|
143
|
+
"""
|
144
|
+
self.swagger_types = {
|
145
|
+
'compartment_id': 'str',
|
146
|
+
'display_name': 'str',
|
147
|
+
'database_version': 'str',
|
148
|
+
'prefix': 'str',
|
149
|
+
'private_endpoint_ids': 'list[str]',
|
150
|
+
'sharding_method': 'str',
|
151
|
+
'db_workload': 'str',
|
152
|
+
'character_set': 'str',
|
153
|
+
'ncharacter_set': 'str',
|
154
|
+
'chunks': 'int',
|
155
|
+
'listener_port': 'int',
|
156
|
+
'listener_port_tls': 'int',
|
157
|
+
'ons_port_local': 'int',
|
158
|
+
'ons_port_remote': 'int',
|
159
|
+
'replication_method': 'str',
|
160
|
+
'replication_factor': 'int',
|
161
|
+
'replication_unit': 'int',
|
162
|
+
'db_deployment_type': 'str',
|
163
|
+
'shard_details': 'list[CreateDistributedAutonomousDatabaseShardDetails]',
|
164
|
+
'catalog_details': 'list[CreateDistributedAutonomousDatabaseCatalogDetails]',
|
165
|
+
'freeform_tags': 'dict(str, str)',
|
166
|
+
'defined_tags': 'dict(str, dict(str, object))'
|
167
|
+
}
|
168
|
+
self.attribute_map = {
|
169
|
+
'compartment_id': 'compartmentId',
|
170
|
+
'display_name': 'displayName',
|
171
|
+
'database_version': 'databaseVersion',
|
172
|
+
'prefix': 'prefix',
|
173
|
+
'private_endpoint_ids': 'privateEndpointIds',
|
174
|
+
'sharding_method': 'shardingMethod',
|
175
|
+
'db_workload': 'dbWorkload',
|
176
|
+
'character_set': 'characterSet',
|
177
|
+
'ncharacter_set': 'ncharacterSet',
|
178
|
+
'chunks': 'chunks',
|
179
|
+
'listener_port': 'listenerPort',
|
180
|
+
'listener_port_tls': 'listenerPortTls',
|
181
|
+
'ons_port_local': 'onsPortLocal',
|
182
|
+
'ons_port_remote': 'onsPortRemote',
|
183
|
+
'replication_method': 'replicationMethod',
|
184
|
+
'replication_factor': 'replicationFactor',
|
185
|
+
'replication_unit': 'replicationUnit',
|
186
|
+
'db_deployment_type': 'dbDeploymentType',
|
187
|
+
'shard_details': 'shardDetails',
|
188
|
+
'catalog_details': 'catalogDetails',
|
189
|
+
'freeform_tags': 'freeformTags',
|
190
|
+
'defined_tags': 'definedTags'
|
191
|
+
}
|
192
|
+
self._compartment_id = None
|
193
|
+
self._display_name = None
|
194
|
+
self._database_version = None
|
195
|
+
self._prefix = None
|
196
|
+
self._private_endpoint_ids = None
|
197
|
+
self._sharding_method = None
|
198
|
+
self._db_workload = None
|
199
|
+
self._character_set = None
|
200
|
+
self._ncharacter_set = None
|
201
|
+
self._chunks = None
|
202
|
+
self._listener_port = None
|
203
|
+
self._listener_port_tls = None
|
204
|
+
self._ons_port_local = None
|
205
|
+
self._ons_port_remote = None
|
206
|
+
self._replication_method = None
|
207
|
+
self._replication_factor = None
|
208
|
+
self._replication_unit = None
|
209
|
+
self._db_deployment_type = None
|
210
|
+
self._shard_details = None
|
211
|
+
self._catalog_details = None
|
212
|
+
self._freeform_tags = None
|
213
|
+
self._defined_tags = None
|
214
|
+
|
215
|
+
@property
|
216
|
+
def compartment_id(self):
|
217
|
+
"""
|
218
|
+
**[Required]** Gets the compartment_id of this CreateDistributedAutonomousDatabaseDetails.
|
219
|
+
The `OCID`__ of the Globally distributed autonomous database compartment.
|
220
|
+
|
221
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
222
|
+
|
223
|
+
|
224
|
+
:return: The compartment_id of this CreateDistributedAutonomousDatabaseDetails.
|
225
|
+
:rtype: str
|
226
|
+
"""
|
227
|
+
return self._compartment_id
|
228
|
+
|
229
|
+
@compartment_id.setter
|
230
|
+
def compartment_id(self, compartment_id):
|
231
|
+
"""
|
232
|
+
Sets the compartment_id of this CreateDistributedAutonomousDatabaseDetails.
|
233
|
+
The `OCID`__ of the Globally distributed autonomous database compartment.
|
234
|
+
|
235
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
236
|
+
|
237
|
+
|
238
|
+
:param compartment_id: The compartment_id of this CreateDistributedAutonomousDatabaseDetails.
|
239
|
+
:type: str
|
240
|
+
"""
|
241
|
+
self._compartment_id = compartment_id
|
242
|
+
|
243
|
+
@property
|
244
|
+
def display_name(self):
|
245
|
+
"""
|
246
|
+
**[Required]** Gets the display_name of this CreateDistributedAutonomousDatabaseDetails.
|
247
|
+
The display name of the Globally distributed autonomous database.
|
248
|
+
|
249
|
+
|
250
|
+
:return: The display_name of this CreateDistributedAutonomousDatabaseDetails.
|
251
|
+
:rtype: str
|
252
|
+
"""
|
253
|
+
return self._display_name
|
254
|
+
|
255
|
+
@display_name.setter
|
256
|
+
def display_name(self, display_name):
|
257
|
+
"""
|
258
|
+
Sets the display_name of this CreateDistributedAutonomousDatabaseDetails.
|
259
|
+
The display name of the Globally distributed autonomous database.
|
260
|
+
|
261
|
+
|
262
|
+
:param display_name: The display_name of this CreateDistributedAutonomousDatabaseDetails.
|
263
|
+
:type: str
|
264
|
+
"""
|
265
|
+
self._display_name = display_name
|
266
|
+
|
267
|
+
@property
|
268
|
+
def database_version(self):
|
269
|
+
"""
|
270
|
+
**[Required]** Gets the database_version of this CreateDistributedAutonomousDatabaseDetails.
|
271
|
+
Oracle Database version for the shards and catalog used in Globally distributed autonomous database.
|
272
|
+
|
273
|
+
|
274
|
+
:return: The database_version of this CreateDistributedAutonomousDatabaseDetails.
|
275
|
+
:rtype: str
|
276
|
+
"""
|
277
|
+
return self._database_version
|
278
|
+
|
279
|
+
@database_version.setter
|
280
|
+
def database_version(self, database_version):
|
281
|
+
"""
|
282
|
+
Sets the database_version of this CreateDistributedAutonomousDatabaseDetails.
|
283
|
+
Oracle Database version for the shards and catalog used in Globally distributed autonomous database.
|
284
|
+
|
285
|
+
|
286
|
+
:param database_version: The database_version of this CreateDistributedAutonomousDatabaseDetails.
|
287
|
+
:type: str
|
288
|
+
"""
|
289
|
+
self._database_version = database_version
|
290
|
+
|
291
|
+
@property
|
292
|
+
def prefix(self):
|
293
|
+
"""
|
294
|
+
**[Required]** Gets the prefix of this CreateDistributedAutonomousDatabaseDetails.
|
295
|
+
Unique name prefix for the Globally distributed autonomous databases. Only alpha-numeric values are allowed. First character
|
296
|
+
has to be a letter followed by any combination of letter and number.
|
297
|
+
|
298
|
+
|
299
|
+
:return: The prefix of this CreateDistributedAutonomousDatabaseDetails.
|
300
|
+
:rtype: str
|
301
|
+
"""
|
302
|
+
return self._prefix
|
303
|
+
|
304
|
+
@prefix.setter
|
305
|
+
def prefix(self, prefix):
|
306
|
+
"""
|
307
|
+
Sets the prefix of this CreateDistributedAutonomousDatabaseDetails.
|
308
|
+
Unique name prefix for the Globally distributed autonomous databases. Only alpha-numeric values are allowed. First character
|
309
|
+
has to be a letter followed by any combination of letter and number.
|
310
|
+
|
311
|
+
|
312
|
+
:param prefix: The prefix of this CreateDistributedAutonomousDatabaseDetails.
|
313
|
+
:type: str
|
314
|
+
"""
|
315
|
+
self._prefix = prefix
|
316
|
+
|
317
|
+
@property
|
318
|
+
def private_endpoint_ids(self):
|
319
|
+
"""
|
320
|
+
**[Required]** Gets the private_endpoint_ids of this CreateDistributedAutonomousDatabaseDetails.
|
321
|
+
The collection of `OCID`__ of the private endpoint associated with Globally distributed autonomous database.
|
322
|
+
|
323
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
324
|
+
|
325
|
+
|
326
|
+
:return: The private_endpoint_ids of this CreateDistributedAutonomousDatabaseDetails.
|
327
|
+
:rtype: list[str]
|
328
|
+
"""
|
329
|
+
return self._private_endpoint_ids
|
330
|
+
|
331
|
+
@private_endpoint_ids.setter
|
332
|
+
def private_endpoint_ids(self, private_endpoint_ids):
|
333
|
+
"""
|
334
|
+
Sets the private_endpoint_ids of this CreateDistributedAutonomousDatabaseDetails.
|
335
|
+
The collection of `OCID`__ of the private endpoint associated with Globally distributed autonomous database.
|
336
|
+
|
337
|
+
__ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
|
338
|
+
|
339
|
+
|
340
|
+
:param private_endpoint_ids: The private_endpoint_ids of this CreateDistributedAutonomousDatabaseDetails.
|
341
|
+
:type: list[str]
|
342
|
+
"""
|
343
|
+
self._private_endpoint_ids = private_endpoint_ids
|
344
|
+
|
345
|
+
@property
|
346
|
+
def sharding_method(self):
|
347
|
+
"""
|
348
|
+
**[Required]** Gets the sharding_method of this CreateDistributedAutonomousDatabaseDetails.
|
349
|
+
Sharding Methods for the Globally distributed autonomous database.
|
350
|
+
|
351
|
+
Allowed values for this property are: "USER", "SYSTEM"
|
352
|
+
|
353
|
+
|
354
|
+
:return: The sharding_method of this CreateDistributedAutonomousDatabaseDetails.
|
355
|
+
:rtype: str
|
356
|
+
"""
|
357
|
+
return self._sharding_method
|
358
|
+
|
359
|
+
@sharding_method.setter
|
360
|
+
def sharding_method(self, sharding_method):
|
361
|
+
"""
|
362
|
+
Sets the sharding_method of this CreateDistributedAutonomousDatabaseDetails.
|
363
|
+
Sharding Methods for the Globally distributed autonomous database.
|
364
|
+
|
365
|
+
|
366
|
+
:param sharding_method: The sharding_method of this CreateDistributedAutonomousDatabaseDetails.
|
367
|
+
:type: str
|
368
|
+
"""
|
369
|
+
allowed_values = ["USER", "SYSTEM"]
|
370
|
+
if not value_allowed_none_or_none_sentinel(sharding_method, allowed_values):
|
371
|
+
raise ValueError(
|
372
|
+
f"Invalid value for `sharding_method`, must be None or one of {allowed_values}"
|
373
|
+
)
|
374
|
+
self._sharding_method = sharding_method
|
375
|
+
|
376
|
+
@property
|
377
|
+
def db_workload(self):
|
378
|
+
"""
|
379
|
+
**[Required]** Gets the db_workload of this CreateDistributedAutonomousDatabaseDetails.
|
380
|
+
Possible workload types.
|
381
|
+
|
382
|
+
Allowed values for this property are: "OLTP", "DW"
|
383
|
+
|
384
|
+
|
385
|
+
:return: The db_workload of this CreateDistributedAutonomousDatabaseDetails.
|
386
|
+
:rtype: str
|
387
|
+
"""
|
388
|
+
return self._db_workload
|
389
|
+
|
390
|
+
@db_workload.setter
|
391
|
+
def db_workload(self, db_workload):
|
392
|
+
"""
|
393
|
+
Sets the db_workload of this CreateDistributedAutonomousDatabaseDetails.
|
394
|
+
Possible workload types.
|
395
|
+
|
396
|
+
|
397
|
+
:param db_workload: The db_workload of this CreateDistributedAutonomousDatabaseDetails.
|
398
|
+
:type: str
|
399
|
+
"""
|
400
|
+
allowed_values = ["OLTP", "DW"]
|
401
|
+
if not value_allowed_none_or_none_sentinel(db_workload, allowed_values):
|
402
|
+
raise ValueError(
|
403
|
+
f"Invalid value for `db_workload`, must be None or one of {allowed_values}"
|
404
|
+
)
|
405
|
+
self._db_workload = db_workload
|
406
|
+
|
407
|
+
@property
|
408
|
+
def character_set(self):
|
409
|
+
"""
|
410
|
+
**[Required]** Gets the character_set of this CreateDistributedAutonomousDatabaseDetails.
|
411
|
+
The character set for the database.
|
412
|
+
|
413
|
+
|
414
|
+
:return: The character_set of this CreateDistributedAutonomousDatabaseDetails.
|
415
|
+
:rtype: str
|
416
|
+
"""
|
417
|
+
return self._character_set
|
418
|
+
|
419
|
+
@character_set.setter
|
420
|
+
def character_set(self, character_set):
|
421
|
+
"""
|
422
|
+
Sets the character_set of this CreateDistributedAutonomousDatabaseDetails.
|
423
|
+
The character set for the database.
|
424
|
+
|
425
|
+
|
426
|
+
:param character_set: The character_set of this CreateDistributedAutonomousDatabaseDetails.
|
427
|
+
:type: str
|
428
|
+
"""
|
429
|
+
self._character_set = character_set
|
430
|
+
|
431
|
+
@property
|
432
|
+
def ncharacter_set(self):
|
433
|
+
"""
|
434
|
+
**[Required]** Gets the ncharacter_set of this CreateDistributedAutonomousDatabaseDetails.
|
435
|
+
The national character set for the database.
|
436
|
+
|
437
|
+
|
438
|
+
:return: The ncharacter_set of this CreateDistributedAutonomousDatabaseDetails.
|
439
|
+
:rtype: str
|
440
|
+
"""
|
441
|
+
return self._ncharacter_set
|
442
|
+
|
443
|
+
@ncharacter_set.setter
|
444
|
+
def ncharacter_set(self, ncharacter_set):
|
445
|
+
"""
|
446
|
+
Sets the ncharacter_set of this CreateDistributedAutonomousDatabaseDetails.
|
447
|
+
The national character set for the database.
|
448
|
+
|
449
|
+
|
450
|
+
:param ncharacter_set: The ncharacter_set of this CreateDistributedAutonomousDatabaseDetails.
|
451
|
+
:type: str
|
452
|
+
"""
|
453
|
+
self._ncharacter_set = ncharacter_set
|
454
|
+
|
455
|
+
@property
|
456
|
+
def chunks(self):
|
457
|
+
"""
|
458
|
+
Gets the chunks of this CreateDistributedAutonomousDatabaseDetails.
|
459
|
+
The default number of unique chunks in a shardspace. The value of chunks must be
|
460
|
+
greater than 2 times the size of the largest shardgroup in any shardspace.
|
461
|
+
|
462
|
+
|
463
|
+
:return: The chunks of this CreateDistributedAutonomousDatabaseDetails.
|
464
|
+
:rtype: int
|
465
|
+
"""
|
466
|
+
return self._chunks
|
467
|
+
|
468
|
+
@chunks.setter
|
469
|
+
def chunks(self, chunks):
|
470
|
+
"""
|
471
|
+
Sets the chunks of this CreateDistributedAutonomousDatabaseDetails.
|
472
|
+
The default number of unique chunks in a shardspace. The value of chunks must be
|
473
|
+
greater than 2 times the size of the largest shardgroup in any shardspace.
|
474
|
+
|
475
|
+
|
476
|
+
:param chunks: The chunks of this CreateDistributedAutonomousDatabaseDetails.
|
477
|
+
:type: int
|
478
|
+
"""
|
479
|
+
self._chunks = chunks
|
480
|
+
|
481
|
+
@property
|
482
|
+
def listener_port(self):
|
483
|
+
"""
|
484
|
+
**[Required]** Gets the listener_port of this CreateDistributedAutonomousDatabaseDetails.
|
485
|
+
The listener port number for the Globally distributed autonomous database.
|
486
|
+
|
487
|
+
|
488
|
+
:return: The listener_port of this CreateDistributedAutonomousDatabaseDetails.
|
489
|
+
:rtype: int
|
490
|
+
"""
|
491
|
+
return self._listener_port
|
492
|
+
|
493
|
+
@listener_port.setter
|
494
|
+
def listener_port(self, listener_port):
|
495
|
+
"""
|
496
|
+
Sets the listener_port of this CreateDistributedAutonomousDatabaseDetails.
|
497
|
+
The listener port number for the Globally distributed autonomous database.
|
498
|
+
|
499
|
+
|
500
|
+
:param listener_port: The listener_port of this CreateDistributedAutonomousDatabaseDetails.
|
501
|
+
:type: int
|
502
|
+
"""
|
503
|
+
self._listener_port = listener_port
|
504
|
+
|
505
|
+
@property
|
506
|
+
def listener_port_tls(self):
|
507
|
+
"""
|
508
|
+
Gets the listener_port_tls of this CreateDistributedAutonomousDatabaseDetails.
|
509
|
+
The TLS listener port number for Globally distributed autonomous database.
|
510
|
+
|
511
|
+
|
512
|
+
:return: The listener_port_tls of this CreateDistributedAutonomousDatabaseDetails.
|
513
|
+
:rtype: int
|
514
|
+
"""
|
515
|
+
return self._listener_port_tls
|
516
|
+
|
517
|
+
@listener_port_tls.setter
|
518
|
+
def listener_port_tls(self, listener_port_tls):
|
519
|
+
"""
|
520
|
+
Sets the listener_port_tls of this CreateDistributedAutonomousDatabaseDetails.
|
521
|
+
The TLS listener port number for Globally distributed autonomous database.
|
522
|
+
|
523
|
+
|
524
|
+
:param listener_port_tls: The listener_port_tls of this CreateDistributedAutonomousDatabaseDetails.
|
525
|
+
:type: int
|
526
|
+
"""
|
527
|
+
self._listener_port_tls = listener_port_tls
|
528
|
+
|
529
|
+
@property
|
530
|
+
def ons_port_local(self):
|
531
|
+
"""
|
532
|
+
**[Required]** Gets the ons_port_local of this CreateDistributedAutonomousDatabaseDetails.
|
533
|
+
Ons local port number.
|
534
|
+
|
535
|
+
|
536
|
+
:return: The ons_port_local of this CreateDistributedAutonomousDatabaseDetails.
|
537
|
+
:rtype: int
|
538
|
+
"""
|
539
|
+
return self._ons_port_local
|
540
|
+
|
541
|
+
@ons_port_local.setter
|
542
|
+
def ons_port_local(self, ons_port_local):
|
543
|
+
"""
|
544
|
+
Sets the ons_port_local of this CreateDistributedAutonomousDatabaseDetails.
|
545
|
+
Ons local port number.
|
546
|
+
|
547
|
+
|
548
|
+
:param ons_port_local: The ons_port_local of this CreateDistributedAutonomousDatabaseDetails.
|
549
|
+
:type: int
|
550
|
+
"""
|
551
|
+
self._ons_port_local = ons_port_local
|
552
|
+
|
553
|
+
@property
|
554
|
+
def ons_port_remote(self):
|
555
|
+
"""
|
556
|
+
**[Required]** Gets the ons_port_remote of this CreateDistributedAutonomousDatabaseDetails.
|
557
|
+
Ons remote port number.
|
558
|
+
|
559
|
+
|
560
|
+
:return: The ons_port_remote of this CreateDistributedAutonomousDatabaseDetails.
|
561
|
+
:rtype: int
|
562
|
+
"""
|
563
|
+
return self._ons_port_remote
|
564
|
+
|
565
|
+
@ons_port_remote.setter
|
566
|
+
def ons_port_remote(self, ons_port_remote):
|
567
|
+
"""
|
568
|
+
Sets the ons_port_remote of this CreateDistributedAutonomousDatabaseDetails.
|
569
|
+
Ons remote port number.
|
570
|
+
|
571
|
+
|
572
|
+
:param ons_port_remote: The ons_port_remote of this CreateDistributedAutonomousDatabaseDetails.
|
573
|
+
:type: int
|
574
|
+
"""
|
575
|
+
self._ons_port_remote = ons_port_remote
|
576
|
+
|
577
|
+
@property
|
578
|
+
def replication_method(self):
|
579
|
+
"""
|
580
|
+
Gets the replication_method of this CreateDistributedAutonomousDatabaseDetails.
|
581
|
+
The Replication method for Globally distributed autonomous database. Use RAFT for Raft replication, and DG for
|
582
|
+
DataGuard. If replicationMethod is not provided, it defaults to DG.
|
583
|
+
|
584
|
+
Allowed values for this property are: "RAFT", "DG"
|
585
|
+
|
586
|
+
|
587
|
+
:return: The replication_method of this CreateDistributedAutonomousDatabaseDetails.
|
588
|
+
:rtype: str
|
589
|
+
"""
|
590
|
+
return self._replication_method
|
591
|
+
|
592
|
+
@replication_method.setter
|
593
|
+
def replication_method(self, replication_method):
|
594
|
+
"""
|
595
|
+
Sets the replication_method of this CreateDistributedAutonomousDatabaseDetails.
|
596
|
+
The Replication method for Globally distributed autonomous database. Use RAFT for Raft replication, and DG for
|
597
|
+
DataGuard. If replicationMethod is not provided, it defaults to DG.
|
598
|
+
|
599
|
+
|
600
|
+
:param replication_method: The replication_method of this CreateDistributedAutonomousDatabaseDetails.
|
601
|
+
:type: str
|
602
|
+
"""
|
603
|
+
allowed_values = ["RAFT", "DG"]
|
604
|
+
if not value_allowed_none_or_none_sentinel(replication_method, allowed_values):
|
605
|
+
raise ValueError(
|
606
|
+
f"Invalid value for `replication_method`, must be None or one of {allowed_values}"
|
607
|
+
)
|
608
|
+
self._replication_method = replication_method
|
609
|
+
|
610
|
+
@property
|
611
|
+
def replication_factor(self):
|
612
|
+
"""
|
613
|
+
Gets the replication_factor of this CreateDistributedAutonomousDatabaseDetails.
|
614
|
+
The Replication factor for RAFT replication based Globally distributed autonomous database. Currently supported values are 3, 5 and 7.
|
615
|
+
|
616
|
+
|
617
|
+
:return: The replication_factor of this CreateDistributedAutonomousDatabaseDetails.
|
618
|
+
:rtype: int
|
619
|
+
"""
|
620
|
+
return self._replication_factor
|
621
|
+
|
622
|
+
@replication_factor.setter
|
623
|
+
def replication_factor(self, replication_factor):
|
624
|
+
"""
|
625
|
+
Sets the replication_factor of this CreateDistributedAutonomousDatabaseDetails.
|
626
|
+
The Replication factor for RAFT replication based Globally distributed autonomous database. Currently supported values are 3, 5 and 7.
|
627
|
+
|
628
|
+
|
629
|
+
:param replication_factor: The replication_factor of this CreateDistributedAutonomousDatabaseDetails.
|
630
|
+
:type: int
|
631
|
+
"""
|
632
|
+
self._replication_factor = replication_factor
|
633
|
+
|
634
|
+
@property
|
635
|
+
def replication_unit(self):
|
636
|
+
"""
|
637
|
+
Gets the replication_unit of this CreateDistributedAutonomousDatabaseDetails.
|
638
|
+
For RAFT replication based Globally distributed autonomous database, the value should be atleast twice the number of shards.
|
639
|
+
|
640
|
+
|
641
|
+
:return: The replication_unit of this CreateDistributedAutonomousDatabaseDetails.
|
642
|
+
:rtype: int
|
643
|
+
"""
|
644
|
+
return self._replication_unit
|
645
|
+
|
646
|
+
@replication_unit.setter
|
647
|
+
def replication_unit(self, replication_unit):
|
648
|
+
"""
|
649
|
+
Sets the replication_unit of this CreateDistributedAutonomousDatabaseDetails.
|
650
|
+
For RAFT replication based Globally distributed autonomous database, the value should be atleast twice the number of shards.
|
651
|
+
|
652
|
+
|
653
|
+
:param replication_unit: The replication_unit of this CreateDistributedAutonomousDatabaseDetails.
|
654
|
+
:type: int
|
655
|
+
"""
|
656
|
+
self._replication_unit = replication_unit
|
657
|
+
|
658
|
+
@property
|
659
|
+
def db_deployment_type(self):
|
660
|
+
"""
|
661
|
+
**[Required]** Gets the db_deployment_type of this CreateDistributedAutonomousDatabaseDetails.
|
662
|
+
The distributed autonomous database deployment type.
|
663
|
+
|
664
|
+
Allowed values for this property are: "ADB_D"
|
665
|
+
|
666
|
+
|
667
|
+
:return: The db_deployment_type of this CreateDistributedAutonomousDatabaseDetails.
|
668
|
+
:rtype: str
|
669
|
+
"""
|
670
|
+
return self._db_deployment_type
|
671
|
+
|
672
|
+
@db_deployment_type.setter
|
673
|
+
def db_deployment_type(self, db_deployment_type):
|
674
|
+
"""
|
675
|
+
Sets the db_deployment_type of this CreateDistributedAutonomousDatabaseDetails.
|
676
|
+
The distributed autonomous database deployment type.
|
677
|
+
|
678
|
+
|
679
|
+
:param db_deployment_type: The db_deployment_type of this CreateDistributedAutonomousDatabaseDetails.
|
680
|
+
:type: str
|
681
|
+
"""
|
682
|
+
allowed_values = ["ADB_D"]
|
683
|
+
if not value_allowed_none_or_none_sentinel(db_deployment_type, allowed_values):
|
684
|
+
raise ValueError(
|
685
|
+
f"Invalid value for `db_deployment_type`, must be None or one of {allowed_values}"
|
686
|
+
)
|
687
|
+
self._db_deployment_type = db_deployment_type
|
688
|
+
|
689
|
+
@property
|
690
|
+
def shard_details(self):
|
691
|
+
"""
|
692
|
+
**[Required]** Gets the shard_details of this CreateDistributedAutonomousDatabaseDetails.
|
693
|
+
Collection of shards for the Globally distributed autonomous database.
|
694
|
+
|
695
|
+
|
696
|
+
:return: The shard_details of this CreateDistributedAutonomousDatabaseDetails.
|
697
|
+
:rtype: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseShardDetails]
|
698
|
+
"""
|
699
|
+
return self._shard_details
|
700
|
+
|
701
|
+
@shard_details.setter
|
702
|
+
def shard_details(self, shard_details):
|
703
|
+
"""
|
704
|
+
Sets the shard_details of this CreateDistributedAutonomousDatabaseDetails.
|
705
|
+
Collection of shards for the Globally distributed autonomous database.
|
706
|
+
|
707
|
+
|
708
|
+
:param shard_details: The shard_details of this CreateDistributedAutonomousDatabaseDetails.
|
709
|
+
:type: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseShardDetails]
|
710
|
+
"""
|
711
|
+
self._shard_details = shard_details
|
712
|
+
|
713
|
+
@property
|
714
|
+
def catalog_details(self):
|
715
|
+
"""
|
716
|
+
**[Required]** Gets the catalog_details of this CreateDistributedAutonomousDatabaseDetails.
|
717
|
+
Collection of catalog for the Globally distributed autonomous database.
|
718
|
+
|
719
|
+
|
720
|
+
:return: The catalog_details of this CreateDistributedAutonomousDatabaseDetails.
|
721
|
+
:rtype: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseCatalogDetails]
|
722
|
+
"""
|
723
|
+
return self._catalog_details
|
724
|
+
|
725
|
+
@catalog_details.setter
|
726
|
+
def catalog_details(self, catalog_details):
|
727
|
+
"""
|
728
|
+
Sets the catalog_details of this CreateDistributedAutonomousDatabaseDetails.
|
729
|
+
Collection of catalog for the Globally distributed autonomous database.
|
730
|
+
|
731
|
+
|
732
|
+
:param catalog_details: The catalog_details of this CreateDistributedAutonomousDatabaseDetails.
|
733
|
+
:type: list[oci.distributed_database.models.CreateDistributedAutonomousDatabaseCatalogDetails]
|
734
|
+
"""
|
735
|
+
self._catalog_details = catalog_details
|
736
|
+
|
737
|
+
@property
|
738
|
+
def freeform_tags(self):
|
739
|
+
"""
|
740
|
+
Gets the freeform_tags of this CreateDistributedAutonomousDatabaseDetails.
|
741
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
742
|
+
Example: `{\"bar-key\": \"value\"}`
|
743
|
+
|
744
|
+
|
745
|
+
:return: The freeform_tags of this CreateDistributedAutonomousDatabaseDetails.
|
746
|
+
:rtype: dict(str, str)
|
747
|
+
"""
|
748
|
+
return self._freeform_tags
|
749
|
+
|
750
|
+
@freeform_tags.setter
|
751
|
+
def freeform_tags(self, freeform_tags):
|
752
|
+
"""
|
753
|
+
Sets the freeform_tags of this CreateDistributedAutonomousDatabaseDetails.
|
754
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
755
|
+
Example: `{\"bar-key\": \"value\"}`
|
756
|
+
|
757
|
+
|
758
|
+
:param freeform_tags: The freeform_tags of this CreateDistributedAutonomousDatabaseDetails.
|
759
|
+
:type: dict(str, str)
|
760
|
+
"""
|
761
|
+
self._freeform_tags = freeform_tags
|
762
|
+
|
763
|
+
@property
|
764
|
+
def defined_tags(self):
|
765
|
+
"""
|
766
|
+
Gets the defined_tags of this CreateDistributedAutonomousDatabaseDetails.
|
767
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
768
|
+
Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
|
769
|
+
|
770
|
+
|
771
|
+
:return: The defined_tags of this CreateDistributedAutonomousDatabaseDetails.
|
772
|
+
:rtype: dict(str, dict(str, object))
|
773
|
+
"""
|
774
|
+
return self._defined_tags
|
775
|
+
|
776
|
+
@defined_tags.setter
|
777
|
+
def defined_tags(self, defined_tags):
|
778
|
+
"""
|
779
|
+
Sets the defined_tags of this CreateDistributedAutonomousDatabaseDetails.
|
780
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
781
|
+
Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
|
782
|
+
|
783
|
+
|
784
|
+
:param defined_tags: The defined_tags of this CreateDistributedAutonomousDatabaseDetails.
|
785
|
+
:type: dict(str, dict(str, object))
|
786
|
+
"""
|
787
|
+
self._defined_tags = defined_tags
|
788
|
+
|
789
|
+
def __repr__(self):
|
790
|
+
return formatted_flat_dict(self)
|
791
|
+
|
792
|
+
def __eq__(self, other):
|
793
|
+
if other is None:
|
794
|
+
return False
|
795
|
+
|
796
|
+
return self.__dict__ == other.__dict__
|
797
|
+
|
798
|
+
def __ne__(self, other):
|
799
|
+
return not self == other
|