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
@@ -30,6 +30,10 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
30
30
|
The value to assign to the master_node_host_memory_gb property of this ResizeOpensearchClusterVerticalDetails.
|
31
31
|
:type master_node_host_memory_gb: int
|
32
32
|
|
33
|
+
:param master_node_host_shape:
|
34
|
+
The value to assign to the master_node_host_shape property of this ResizeOpensearchClusterVerticalDetails.
|
35
|
+
:type master_node_host_shape: str
|
36
|
+
|
33
37
|
:param data_node_host_ocpu_count:
|
34
38
|
The value to assign to the data_node_host_ocpu_count property of this ResizeOpensearchClusterVerticalDetails.
|
35
39
|
:type data_node_host_ocpu_count: int
|
@@ -42,6 +46,10 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
42
46
|
The value to assign to the data_node_storage_gb property of this ResizeOpensearchClusterVerticalDetails.
|
43
47
|
:type data_node_storage_gb: int
|
44
48
|
|
49
|
+
:param data_node_host_shape:
|
50
|
+
The value to assign to the data_node_host_shape property of this ResizeOpensearchClusterVerticalDetails.
|
51
|
+
:type data_node_host_shape: str
|
52
|
+
|
45
53
|
:param opendashboard_node_host_ocpu_count:
|
46
54
|
The value to assign to the opendashboard_node_host_ocpu_count property of this ResizeOpensearchClusterVerticalDetails.
|
47
55
|
:type opendashboard_node_host_ocpu_count: int
|
@@ -50,6 +58,26 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
50
58
|
The value to assign to the opendashboard_node_host_memory_gb property of this ResizeOpensearchClusterVerticalDetails.
|
51
59
|
:type opendashboard_node_host_memory_gb: int
|
52
60
|
|
61
|
+
:param opendashboard_node_host_shape:
|
62
|
+
The value to assign to the opendashboard_node_host_shape property of this ResizeOpensearchClusterVerticalDetails.
|
63
|
+
:type opendashboard_node_host_shape: str
|
64
|
+
|
65
|
+
:param search_node_host_shape:
|
66
|
+
The value to assign to the search_node_host_shape property of this ResizeOpensearchClusterVerticalDetails.
|
67
|
+
:type search_node_host_shape: str
|
68
|
+
|
69
|
+
:param search_node_host_ocpu_count:
|
70
|
+
The value to assign to the search_node_host_ocpu_count property of this ResizeOpensearchClusterVerticalDetails.
|
71
|
+
:type search_node_host_ocpu_count: int
|
72
|
+
|
73
|
+
:param search_node_host_memory_gb:
|
74
|
+
The value to assign to the search_node_host_memory_gb property of this ResizeOpensearchClusterVerticalDetails.
|
75
|
+
:type search_node_host_memory_gb: int
|
76
|
+
|
77
|
+
:param search_node_storage_gb:
|
78
|
+
The value to assign to the search_node_storage_gb property of this ResizeOpensearchClusterVerticalDetails.
|
79
|
+
:type search_node_storage_gb: int
|
80
|
+
|
53
81
|
:param freeform_tags:
|
54
82
|
The value to assign to the freeform_tags property of this ResizeOpensearchClusterVerticalDetails.
|
55
83
|
:type freeform_tags: dict(str, str)
|
@@ -62,32 +90,53 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
62
90
|
self.swagger_types = {
|
63
91
|
'master_node_host_ocpu_count': 'int',
|
64
92
|
'master_node_host_memory_gb': 'int',
|
93
|
+
'master_node_host_shape': 'str',
|
65
94
|
'data_node_host_ocpu_count': 'int',
|
66
95
|
'data_node_host_memory_gb': 'int',
|
67
96
|
'data_node_storage_gb': 'int',
|
97
|
+
'data_node_host_shape': 'str',
|
68
98
|
'opendashboard_node_host_ocpu_count': 'int',
|
69
99
|
'opendashboard_node_host_memory_gb': 'int',
|
100
|
+
'opendashboard_node_host_shape': 'str',
|
101
|
+
'search_node_host_shape': 'str',
|
102
|
+
'search_node_host_ocpu_count': 'int',
|
103
|
+
'search_node_host_memory_gb': 'int',
|
104
|
+
'search_node_storage_gb': 'int',
|
70
105
|
'freeform_tags': 'dict(str, str)',
|
71
106
|
'defined_tags': 'dict(str, dict(str, object))'
|
72
107
|
}
|
73
108
|
self.attribute_map = {
|
74
109
|
'master_node_host_ocpu_count': 'masterNodeHostOcpuCount',
|
75
110
|
'master_node_host_memory_gb': 'masterNodeHostMemoryGB',
|
111
|
+
'master_node_host_shape': 'masterNodeHostShape',
|
76
112
|
'data_node_host_ocpu_count': 'dataNodeHostOcpuCount',
|
77
113
|
'data_node_host_memory_gb': 'dataNodeHostMemoryGB',
|
78
114
|
'data_node_storage_gb': 'dataNodeStorageGB',
|
115
|
+
'data_node_host_shape': 'dataNodeHostShape',
|
79
116
|
'opendashboard_node_host_ocpu_count': 'opendashboardNodeHostOcpuCount',
|
80
117
|
'opendashboard_node_host_memory_gb': 'opendashboardNodeHostMemoryGB',
|
118
|
+
'opendashboard_node_host_shape': 'opendashboardNodeHostShape',
|
119
|
+
'search_node_host_shape': 'searchNodeHostShape',
|
120
|
+
'search_node_host_ocpu_count': 'searchNodeHostOcpuCount',
|
121
|
+
'search_node_host_memory_gb': 'searchNodeHostMemoryGB',
|
122
|
+
'search_node_storage_gb': 'searchNodeStorageGB',
|
81
123
|
'freeform_tags': 'freeformTags',
|
82
124
|
'defined_tags': 'definedTags'
|
83
125
|
}
|
84
126
|
self._master_node_host_ocpu_count = None
|
85
127
|
self._master_node_host_memory_gb = None
|
128
|
+
self._master_node_host_shape = None
|
86
129
|
self._data_node_host_ocpu_count = None
|
87
130
|
self._data_node_host_memory_gb = None
|
88
131
|
self._data_node_storage_gb = None
|
132
|
+
self._data_node_host_shape = None
|
89
133
|
self._opendashboard_node_host_ocpu_count = None
|
90
134
|
self._opendashboard_node_host_memory_gb = None
|
135
|
+
self._opendashboard_node_host_shape = None
|
136
|
+
self._search_node_host_shape = None
|
137
|
+
self._search_node_host_ocpu_count = None
|
138
|
+
self._search_node_host_memory_gb = None
|
139
|
+
self._search_node_storage_gb = None
|
91
140
|
self._freeform_tags = None
|
92
141
|
self._defined_tags = None
|
93
142
|
|
@@ -139,6 +188,30 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
139
188
|
"""
|
140
189
|
self._master_node_host_memory_gb = master_node_host_memory_gb
|
141
190
|
|
191
|
+
@property
|
192
|
+
def master_node_host_shape(self):
|
193
|
+
"""
|
194
|
+
Gets the master_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
195
|
+
The node shape for the cluster's master nodes.
|
196
|
+
|
197
|
+
|
198
|
+
:return: The master_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
199
|
+
:rtype: str
|
200
|
+
"""
|
201
|
+
return self._master_node_host_shape
|
202
|
+
|
203
|
+
@master_node_host_shape.setter
|
204
|
+
def master_node_host_shape(self, master_node_host_shape):
|
205
|
+
"""
|
206
|
+
Sets the master_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
207
|
+
The node shape for the cluster's master nodes.
|
208
|
+
|
209
|
+
|
210
|
+
:param master_node_host_shape: The master_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
211
|
+
:type: str
|
212
|
+
"""
|
213
|
+
self._master_node_host_shape = master_node_host_shape
|
214
|
+
|
142
215
|
@property
|
143
216
|
def data_node_host_ocpu_count(self):
|
144
217
|
"""
|
@@ -211,6 +284,30 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
211
284
|
"""
|
212
285
|
self._data_node_storage_gb = data_node_storage_gb
|
213
286
|
|
287
|
+
@property
|
288
|
+
def data_node_host_shape(self):
|
289
|
+
"""
|
290
|
+
Gets the data_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
291
|
+
The node shape for the cluster's data nodes.
|
292
|
+
|
293
|
+
|
294
|
+
:return: The data_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
295
|
+
:rtype: str
|
296
|
+
"""
|
297
|
+
return self._data_node_host_shape
|
298
|
+
|
299
|
+
@data_node_host_shape.setter
|
300
|
+
def data_node_host_shape(self, data_node_host_shape):
|
301
|
+
"""
|
302
|
+
Sets the data_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
303
|
+
The node shape for the cluster's data nodes.
|
304
|
+
|
305
|
+
|
306
|
+
:param data_node_host_shape: The data_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
307
|
+
:type: str
|
308
|
+
"""
|
309
|
+
self._data_node_host_shape = data_node_host_shape
|
310
|
+
|
214
311
|
@property
|
215
312
|
def opendashboard_node_host_ocpu_count(self):
|
216
313
|
"""
|
@@ -259,6 +356,126 @@ class ResizeOpensearchClusterVerticalDetails(object):
|
|
259
356
|
"""
|
260
357
|
self._opendashboard_node_host_memory_gb = opendashboard_node_host_memory_gb
|
261
358
|
|
359
|
+
@property
|
360
|
+
def opendashboard_node_host_shape(self):
|
361
|
+
"""
|
362
|
+
Gets the opendashboard_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
363
|
+
The node shape for the cluster's OpenSearch Dashboard nodes.
|
364
|
+
|
365
|
+
|
366
|
+
:return: The opendashboard_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
367
|
+
:rtype: str
|
368
|
+
"""
|
369
|
+
return self._opendashboard_node_host_shape
|
370
|
+
|
371
|
+
@opendashboard_node_host_shape.setter
|
372
|
+
def opendashboard_node_host_shape(self, opendashboard_node_host_shape):
|
373
|
+
"""
|
374
|
+
Sets the opendashboard_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
375
|
+
The node shape for the cluster's OpenSearch Dashboard nodes.
|
376
|
+
|
377
|
+
|
378
|
+
:param opendashboard_node_host_shape: The opendashboard_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
379
|
+
:type: str
|
380
|
+
"""
|
381
|
+
self._opendashboard_node_host_shape = opendashboard_node_host_shape
|
382
|
+
|
383
|
+
@property
|
384
|
+
def search_node_host_shape(self):
|
385
|
+
"""
|
386
|
+
Gets the search_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
387
|
+
The node shape for the cluster's search nodes.
|
388
|
+
|
389
|
+
|
390
|
+
:return: The search_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
391
|
+
:rtype: str
|
392
|
+
"""
|
393
|
+
return self._search_node_host_shape
|
394
|
+
|
395
|
+
@search_node_host_shape.setter
|
396
|
+
def search_node_host_shape(self, search_node_host_shape):
|
397
|
+
"""
|
398
|
+
Sets the search_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
399
|
+
The node shape for the cluster's search nodes.
|
400
|
+
|
401
|
+
|
402
|
+
:param search_node_host_shape: The search_node_host_shape of this ResizeOpensearchClusterVerticalDetails.
|
403
|
+
:type: str
|
404
|
+
"""
|
405
|
+
self._search_node_host_shape = search_node_host_shape
|
406
|
+
|
407
|
+
@property
|
408
|
+
def search_node_host_ocpu_count(self):
|
409
|
+
"""
|
410
|
+
Gets the search_node_host_ocpu_count of this ResizeOpensearchClusterVerticalDetails.
|
411
|
+
The number of OCPUs configured for the cluster's search nodes.
|
412
|
+
|
413
|
+
|
414
|
+
:return: The search_node_host_ocpu_count of this ResizeOpensearchClusterVerticalDetails.
|
415
|
+
:rtype: int
|
416
|
+
"""
|
417
|
+
return self._search_node_host_ocpu_count
|
418
|
+
|
419
|
+
@search_node_host_ocpu_count.setter
|
420
|
+
def search_node_host_ocpu_count(self, search_node_host_ocpu_count):
|
421
|
+
"""
|
422
|
+
Sets the search_node_host_ocpu_count of this ResizeOpensearchClusterVerticalDetails.
|
423
|
+
The number of OCPUs configured for the cluster's search nodes.
|
424
|
+
|
425
|
+
|
426
|
+
:param search_node_host_ocpu_count: The search_node_host_ocpu_count of this ResizeOpensearchClusterVerticalDetails.
|
427
|
+
:type: int
|
428
|
+
"""
|
429
|
+
self._search_node_host_ocpu_count = search_node_host_ocpu_count
|
430
|
+
|
431
|
+
@property
|
432
|
+
def search_node_host_memory_gb(self):
|
433
|
+
"""
|
434
|
+
Gets the search_node_host_memory_gb of this ResizeOpensearchClusterVerticalDetails.
|
435
|
+
The amount of memory in GB, for the cluster's search nodes.
|
436
|
+
|
437
|
+
|
438
|
+
:return: The search_node_host_memory_gb of this ResizeOpensearchClusterVerticalDetails.
|
439
|
+
:rtype: int
|
440
|
+
"""
|
441
|
+
return self._search_node_host_memory_gb
|
442
|
+
|
443
|
+
@search_node_host_memory_gb.setter
|
444
|
+
def search_node_host_memory_gb(self, search_node_host_memory_gb):
|
445
|
+
"""
|
446
|
+
Sets the search_node_host_memory_gb of this ResizeOpensearchClusterVerticalDetails.
|
447
|
+
The amount of memory in GB, for the cluster's search nodes.
|
448
|
+
|
449
|
+
|
450
|
+
:param search_node_host_memory_gb: The search_node_host_memory_gb of this ResizeOpensearchClusterVerticalDetails.
|
451
|
+
:type: int
|
452
|
+
"""
|
453
|
+
self._search_node_host_memory_gb = search_node_host_memory_gb
|
454
|
+
|
455
|
+
@property
|
456
|
+
def search_node_storage_gb(self):
|
457
|
+
"""
|
458
|
+
Gets the search_node_storage_gb of this ResizeOpensearchClusterVerticalDetails.
|
459
|
+
The amount of storage in GB, to configure per node for the cluster's search nodes.
|
460
|
+
|
461
|
+
|
462
|
+
:return: The search_node_storage_gb of this ResizeOpensearchClusterVerticalDetails.
|
463
|
+
:rtype: int
|
464
|
+
"""
|
465
|
+
return self._search_node_storage_gb
|
466
|
+
|
467
|
+
@search_node_storage_gb.setter
|
468
|
+
def search_node_storage_gb(self, search_node_storage_gb):
|
469
|
+
"""
|
470
|
+
Sets the search_node_storage_gb of this ResizeOpensearchClusterVerticalDetails.
|
471
|
+
The amount of storage in GB, to configure per node for the cluster's search nodes.
|
472
|
+
|
473
|
+
|
474
|
+
:param search_node_storage_gb: The search_node_storage_gb of this ResizeOpensearchClusterVerticalDetails.
|
475
|
+
:type: int
|
476
|
+
"""
|
477
|
+
self._search_node_storage_gb = search_node_storage_gb
|
478
|
+
|
262
479
|
@property
|
263
480
|
def freeform_tags(self):
|
264
481
|
"""
|
@@ -0,0 +1,70 @@
|
|
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: 20180828
|
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 ShapesDetails(object):
|
14
|
+
"""
|
15
|
+
Shapes for OpenSearch Cluster.
|
16
|
+
"""
|
17
|
+
|
18
|
+
def __init__(self, **kwargs):
|
19
|
+
"""
|
20
|
+
Initializes a new ShapesDetails object with values from keyword arguments.
|
21
|
+
The following keyword arguments are supported (corresponding to the getters/setters of this class):
|
22
|
+
|
23
|
+
:param shapes:
|
24
|
+
The value to assign to the shapes property of this ShapesDetails.
|
25
|
+
:type shapes: list[str]
|
26
|
+
|
27
|
+
"""
|
28
|
+
self.swagger_types = {
|
29
|
+
'shapes': 'list[str]'
|
30
|
+
}
|
31
|
+
self.attribute_map = {
|
32
|
+
'shapes': 'shapes'
|
33
|
+
}
|
34
|
+
self._shapes = None
|
35
|
+
|
36
|
+
@property
|
37
|
+
def shapes(self):
|
38
|
+
"""
|
39
|
+
Gets the shapes of this ShapesDetails.
|
40
|
+
List of Shapes.
|
41
|
+
|
42
|
+
|
43
|
+
:return: The shapes of this ShapesDetails.
|
44
|
+
:rtype: list[str]
|
45
|
+
"""
|
46
|
+
return self._shapes
|
47
|
+
|
48
|
+
@shapes.setter
|
49
|
+
def shapes(self, shapes):
|
50
|
+
"""
|
51
|
+
Sets the shapes of this ShapesDetails.
|
52
|
+
List of Shapes.
|
53
|
+
|
54
|
+
|
55
|
+
:param shapes: The shapes of this ShapesDetails.
|
56
|
+
:type: list[str]
|
57
|
+
"""
|
58
|
+
self._shapes = shapes
|
59
|
+
|
60
|
+
def __repr__(self):
|
61
|
+
return formatted_flat_dict(self)
|
62
|
+
|
63
|
+
def __eq__(self, other):
|
64
|
+
if other is None:
|
65
|
+
return False
|
66
|
+
|
67
|
+
return self.__dict__ == other.__dict__
|
68
|
+
|
69
|
+
def __ne__(self, other):
|
70
|
+
return not self == other
|
@@ -32,6 +32,10 @@ class UpdateClusterSpecsDetails(object):
|
|
32
32
|
The value to assign to the master_node_host_memory_gb property of this UpdateClusterSpecsDetails.
|
33
33
|
:type master_node_host_memory_gb: int
|
34
34
|
|
35
|
+
:param master_node_host_shape:
|
36
|
+
The value to assign to the master_node_host_shape property of this UpdateClusterSpecsDetails.
|
37
|
+
:type master_node_host_shape: str
|
38
|
+
|
35
39
|
:param data_node_host_ocpu_count:
|
36
40
|
The value to assign to the data_node_host_ocpu_count property of this UpdateClusterSpecsDetails.
|
37
41
|
:type data_node_host_ocpu_count: int
|
@@ -40,6 +44,22 @@ class UpdateClusterSpecsDetails(object):
|
|
40
44
|
The value to assign to the data_node_host_memory_gb property of this UpdateClusterSpecsDetails.
|
41
45
|
:type data_node_host_memory_gb: int
|
42
46
|
|
47
|
+
:param data_node_host_shape:
|
48
|
+
The value to assign to the data_node_host_shape property of this UpdateClusterSpecsDetails.
|
49
|
+
:type data_node_host_shape: str
|
50
|
+
|
51
|
+
:param search_node_host_shape:
|
52
|
+
The value to assign to the search_node_host_shape property of this UpdateClusterSpecsDetails.
|
53
|
+
:type search_node_host_shape: str
|
54
|
+
|
55
|
+
:param search_node_host_ocpu_count:
|
56
|
+
The value to assign to the search_node_host_ocpu_count property of this UpdateClusterSpecsDetails.
|
57
|
+
:type search_node_host_ocpu_count: int
|
58
|
+
|
59
|
+
:param search_node_host_memory_gb:
|
60
|
+
The value to assign to the search_node_host_memory_gb property of this UpdateClusterSpecsDetails.
|
61
|
+
:type search_node_host_memory_gb: int
|
62
|
+
|
43
63
|
:param software_version:
|
44
64
|
The value to assign to the software_version property of this UpdateClusterSpecsDetails.
|
45
65
|
:type software_version: str
|
@@ -48,6 +68,10 @@ class UpdateClusterSpecsDetails(object):
|
|
48
68
|
The value to assign to the dashboard_software_version property of this UpdateClusterSpecsDetails.
|
49
69
|
:type dashboard_software_version: str
|
50
70
|
|
71
|
+
:param opendashboard_node_host_shape:
|
72
|
+
The value to assign to the opendashboard_node_host_shape property of this UpdateClusterSpecsDetails.
|
73
|
+
:type opendashboard_node_host_shape: str
|
74
|
+
|
51
75
|
:param cluster_private_endpoint:
|
52
76
|
The value to assign to the cluster_private_endpoint property of this UpdateClusterSpecsDetails.
|
53
77
|
:type cluster_private_endpoint: str
|
@@ -57,29 +81,47 @@ class UpdateClusterSpecsDetails(object):
|
|
57
81
|
'cluster_id': 'str',
|
58
82
|
'master_node_host_ocpu_count': 'int',
|
59
83
|
'master_node_host_memory_gb': 'int',
|
84
|
+
'master_node_host_shape': 'str',
|
60
85
|
'data_node_host_ocpu_count': 'int',
|
61
86
|
'data_node_host_memory_gb': 'int',
|
87
|
+
'data_node_host_shape': 'str',
|
88
|
+
'search_node_host_shape': 'str',
|
89
|
+
'search_node_host_ocpu_count': 'int',
|
90
|
+
'search_node_host_memory_gb': 'int',
|
62
91
|
'software_version': 'str',
|
63
92
|
'dashboard_software_version': 'str',
|
93
|
+
'opendashboard_node_host_shape': 'str',
|
64
94
|
'cluster_private_endpoint': 'str'
|
65
95
|
}
|
66
96
|
self.attribute_map = {
|
67
97
|
'cluster_id': 'clusterId',
|
68
98
|
'master_node_host_ocpu_count': 'masterNodeHostOcpuCount',
|
69
99
|
'master_node_host_memory_gb': 'masterNodeHostMemoryGB',
|
100
|
+
'master_node_host_shape': 'masterNodeHostShape',
|
70
101
|
'data_node_host_ocpu_count': 'dataNodeHostOcpuCount',
|
71
102
|
'data_node_host_memory_gb': 'dataNodeHostMemoryGB',
|
103
|
+
'data_node_host_shape': 'dataNodeHostShape',
|
104
|
+
'search_node_host_shape': 'searchNodeHostShape',
|
105
|
+
'search_node_host_ocpu_count': 'searchNodeHostOcpuCount',
|
106
|
+
'search_node_host_memory_gb': 'searchNodeHostMemoryGB',
|
72
107
|
'software_version': 'softwareVersion',
|
73
108
|
'dashboard_software_version': 'dashboardSoftwareVersion',
|
109
|
+
'opendashboard_node_host_shape': 'opendashboardNodeHostShape',
|
74
110
|
'cluster_private_endpoint': 'clusterPrivateEndpoint'
|
75
111
|
}
|
76
112
|
self._cluster_id = None
|
77
113
|
self._master_node_host_ocpu_count = None
|
78
114
|
self._master_node_host_memory_gb = None
|
115
|
+
self._master_node_host_shape = None
|
79
116
|
self._data_node_host_ocpu_count = None
|
80
117
|
self._data_node_host_memory_gb = None
|
118
|
+
self._data_node_host_shape = None
|
119
|
+
self._search_node_host_shape = None
|
120
|
+
self._search_node_host_ocpu_count = None
|
121
|
+
self._search_node_host_memory_gb = None
|
81
122
|
self._software_version = None
|
82
123
|
self._dashboard_software_version = None
|
124
|
+
self._opendashboard_node_host_shape = None
|
83
125
|
self._cluster_private_endpoint = None
|
84
126
|
|
85
127
|
@property
|
@@ -154,6 +196,30 @@ class UpdateClusterSpecsDetails(object):
|
|
154
196
|
"""
|
155
197
|
self._master_node_host_memory_gb = master_node_host_memory_gb
|
156
198
|
|
199
|
+
@property
|
200
|
+
def master_node_host_shape(self):
|
201
|
+
"""
|
202
|
+
Gets the master_node_host_shape of this UpdateClusterSpecsDetails.
|
203
|
+
The node shape for the cluster's master nodes.
|
204
|
+
|
205
|
+
|
206
|
+
:return: The master_node_host_shape of this UpdateClusterSpecsDetails.
|
207
|
+
:rtype: str
|
208
|
+
"""
|
209
|
+
return self._master_node_host_shape
|
210
|
+
|
211
|
+
@master_node_host_shape.setter
|
212
|
+
def master_node_host_shape(self, master_node_host_shape):
|
213
|
+
"""
|
214
|
+
Sets the master_node_host_shape of this UpdateClusterSpecsDetails.
|
215
|
+
The node shape for the cluster's master nodes.
|
216
|
+
|
217
|
+
|
218
|
+
:param master_node_host_shape: The master_node_host_shape of this UpdateClusterSpecsDetails.
|
219
|
+
:type: str
|
220
|
+
"""
|
221
|
+
self._master_node_host_shape = master_node_host_shape
|
222
|
+
|
157
223
|
@property
|
158
224
|
def data_node_host_ocpu_count(self):
|
159
225
|
"""
|
@@ -202,6 +268,102 @@ class UpdateClusterSpecsDetails(object):
|
|
202
268
|
"""
|
203
269
|
self._data_node_host_memory_gb = data_node_host_memory_gb
|
204
270
|
|
271
|
+
@property
|
272
|
+
def data_node_host_shape(self):
|
273
|
+
"""
|
274
|
+
Gets the data_node_host_shape of this UpdateClusterSpecsDetails.
|
275
|
+
The node shape for the cluster's data nodes.
|
276
|
+
|
277
|
+
|
278
|
+
:return: The data_node_host_shape of this UpdateClusterSpecsDetails.
|
279
|
+
:rtype: str
|
280
|
+
"""
|
281
|
+
return self._data_node_host_shape
|
282
|
+
|
283
|
+
@data_node_host_shape.setter
|
284
|
+
def data_node_host_shape(self, data_node_host_shape):
|
285
|
+
"""
|
286
|
+
Sets the data_node_host_shape of this UpdateClusterSpecsDetails.
|
287
|
+
The node shape for the cluster's data nodes.
|
288
|
+
|
289
|
+
|
290
|
+
:param data_node_host_shape: The data_node_host_shape of this UpdateClusterSpecsDetails.
|
291
|
+
:type: str
|
292
|
+
"""
|
293
|
+
self._data_node_host_shape = data_node_host_shape
|
294
|
+
|
295
|
+
@property
|
296
|
+
def search_node_host_shape(self):
|
297
|
+
"""
|
298
|
+
Gets the search_node_host_shape of this UpdateClusterSpecsDetails.
|
299
|
+
The node shape for the cluster's search nodes.
|
300
|
+
|
301
|
+
|
302
|
+
:return: The search_node_host_shape of this UpdateClusterSpecsDetails.
|
303
|
+
:rtype: str
|
304
|
+
"""
|
305
|
+
return self._search_node_host_shape
|
306
|
+
|
307
|
+
@search_node_host_shape.setter
|
308
|
+
def search_node_host_shape(self, search_node_host_shape):
|
309
|
+
"""
|
310
|
+
Sets the search_node_host_shape of this UpdateClusterSpecsDetails.
|
311
|
+
The node shape for the cluster's search nodes.
|
312
|
+
|
313
|
+
|
314
|
+
:param search_node_host_shape: The search_node_host_shape of this UpdateClusterSpecsDetails.
|
315
|
+
:type: str
|
316
|
+
"""
|
317
|
+
self._search_node_host_shape = search_node_host_shape
|
318
|
+
|
319
|
+
@property
|
320
|
+
def search_node_host_ocpu_count(self):
|
321
|
+
"""
|
322
|
+
Gets the search_node_host_ocpu_count of this UpdateClusterSpecsDetails.
|
323
|
+
The number of OCPUs configured for the cluster's search nodes.
|
324
|
+
|
325
|
+
|
326
|
+
:return: The search_node_host_ocpu_count of this UpdateClusterSpecsDetails.
|
327
|
+
:rtype: int
|
328
|
+
"""
|
329
|
+
return self._search_node_host_ocpu_count
|
330
|
+
|
331
|
+
@search_node_host_ocpu_count.setter
|
332
|
+
def search_node_host_ocpu_count(self, search_node_host_ocpu_count):
|
333
|
+
"""
|
334
|
+
Sets the search_node_host_ocpu_count of this UpdateClusterSpecsDetails.
|
335
|
+
The number of OCPUs configured for the cluster's search nodes.
|
336
|
+
|
337
|
+
|
338
|
+
:param search_node_host_ocpu_count: The search_node_host_ocpu_count of this UpdateClusterSpecsDetails.
|
339
|
+
:type: int
|
340
|
+
"""
|
341
|
+
self._search_node_host_ocpu_count = search_node_host_ocpu_count
|
342
|
+
|
343
|
+
@property
|
344
|
+
def search_node_host_memory_gb(self):
|
345
|
+
"""
|
346
|
+
Gets the search_node_host_memory_gb of this UpdateClusterSpecsDetails.
|
347
|
+
The amount of memory in GB, for the cluster's search nodes.
|
348
|
+
|
349
|
+
|
350
|
+
:return: The search_node_host_memory_gb of this UpdateClusterSpecsDetails.
|
351
|
+
:rtype: int
|
352
|
+
"""
|
353
|
+
return self._search_node_host_memory_gb
|
354
|
+
|
355
|
+
@search_node_host_memory_gb.setter
|
356
|
+
def search_node_host_memory_gb(self, search_node_host_memory_gb):
|
357
|
+
"""
|
358
|
+
Sets the search_node_host_memory_gb of this UpdateClusterSpecsDetails.
|
359
|
+
The amount of memory in GB, for the cluster's search nodes.
|
360
|
+
|
361
|
+
|
362
|
+
:param search_node_host_memory_gb: The search_node_host_memory_gb of this UpdateClusterSpecsDetails.
|
363
|
+
:type: int
|
364
|
+
"""
|
365
|
+
self._search_node_host_memory_gb = search_node_host_memory_gb
|
366
|
+
|
205
367
|
@property
|
206
368
|
def software_version(self):
|
207
369
|
"""
|
@@ -250,6 +412,30 @@ class UpdateClusterSpecsDetails(object):
|
|
250
412
|
"""
|
251
413
|
self._dashboard_software_version = dashboard_software_version
|
252
414
|
|
415
|
+
@property
|
416
|
+
def opendashboard_node_host_shape(self):
|
417
|
+
"""
|
418
|
+
Gets the opendashboard_node_host_shape of this UpdateClusterSpecsDetails.
|
419
|
+
The shape node for the cluster's OpenSearch Dashboard nodes.
|
420
|
+
|
421
|
+
|
422
|
+
:return: The opendashboard_node_host_shape of this UpdateClusterSpecsDetails.
|
423
|
+
:rtype: str
|
424
|
+
"""
|
425
|
+
return self._opendashboard_node_host_shape
|
426
|
+
|
427
|
+
@opendashboard_node_host_shape.setter
|
428
|
+
def opendashboard_node_host_shape(self, opendashboard_node_host_shape):
|
429
|
+
"""
|
430
|
+
Sets the opendashboard_node_host_shape of this UpdateClusterSpecsDetails.
|
431
|
+
The shape node for the cluster's OpenSearch Dashboard nodes.
|
432
|
+
|
433
|
+
|
434
|
+
:param opendashboard_node_host_shape: The opendashboard_node_host_shape of this UpdateClusterSpecsDetails.
|
435
|
+
:type: str
|
436
|
+
"""
|
437
|
+
self._opendashboard_node_host_shape = opendashboard_node_host_shape
|
438
|
+
|
253
439
|
@property
|
254
440
|
def cluster_private_endpoint(self):
|
255
441
|
"""
|
@@ -36,6 +36,10 @@ class UpdateOpensearchClusterPipelineDetails(object):
|
|
36
36
|
The value to assign to the node_count property of this UpdateOpensearchClusterPipelineDetails.
|
37
37
|
:type node_count: int
|
38
38
|
|
39
|
+
:param node_shape:
|
40
|
+
The value to assign to the node_shape property of this UpdateOpensearchClusterPipelineDetails.
|
41
|
+
:type node_shape: str
|
42
|
+
|
39
43
|
:param pipeline_configuration_body:
|
40
44
|
The value to assign to the pipeline_configuration_body property of this UpdateOpensearchClusterPipelineDetails.
|
41
45
|
:type pipeline_configuration_body: str
|
@@ -82,6 +86,7 @@ class UpdateOpensearchClusterPipelineDetails(object):
|
|
82
86
|
'ocpu_count': 'int',
|
83
87
|
'memory_gb': 'int',
|
84
88
|
'node_count': 'int',
|
89
|
+
'node_shape': 'str',
|
85
90
|
'pipeline_configuration_body': 'str',
|
86
91
|
'data_prepper_configuration_body': 'str',
|
87
92
|
'vcn_id': 'str',
|
@@ -98,6 +103,7 @@ class UpdateOpensearchClusterPipelineDetails(object):
|
|
98
103
|
'ocpu_count': 'ocpuCount',
|
99
104
|
'memory_gb': 'memoryGB',
|
100
105
|
'node_count': 'nodeCount',
|
106
|
+
'node_shape': 'nodeShape',
|
101
107
|
'pipeline_configuration_body': 'pipelineConfigurationBody',
|
102
108
|
'data_prepper_configuration_body': 'dataPrepperConfigurationBody',
|
103
109
|
'vcn_id': 'vcnId',
|
@@ -113,6 +119,7 @@ class UpdateOpensearchClusterPipelineDetails(object):
|
|
113
119
|
self._ocpu_count = None
|
114
120
|
self._memory_gb = None
|
115
121
|
self._node_count = None
|
122
|
+
self._node_shape = None
|
116
123
|
self._pipeline_configuration_body = None
|
117
124
|
self._data_prepper_configuration_body = None
|
118
125
|
self._vcn_id = None
|
@@ -220,6 +227,30 @@ class UpdateOpensearchClusterPipelineDetails(object):
|
|
220
227
|
"""
|
221
228
|
self._node_count = node_count
|
222
229
|
|
230
|
+
@property
|
231
|
+
def node_shape(self):
|
232
|
+
"""
|
233
|
+
Gets the node_shape of this UpdateOpensearchClusterPipelineDetails.
|
234
|
+
The pipeline node shape.
|
235
|
+
|
236
|
+
|
237
|
+
:return: The node_shape of this UpdateOpensearchClusterPipelineDetails.
|
238
|
+
:rtype: str
|
239
|
+
"""
|
240
|
+
return self._node_shape
|
241
|
+
|
242
|
+
@node_shape.setter
|
243
|
+
def node_shape(self, node_shape):
|
244
|
+
"""
|
245
|
+
Sets the node_shape of this UpdateOpensearchClusterPipelineDetails.
|
246
|
+
The pipeline node shape.
|
247
|
+
|
248
|
+
|
249
|
+
:param node_shape: The node_shape of this UpdateOpensearchClusterPipelineDetails.
|
250
|
+
:type: str
|
251
|
+
"""
|
252
|
+
self._node_shape = node_shape
|
253
|
+
|
223
254
|
@property
|
224
255
|
def pipeline_configuration_body(self):
|
225
256
|
"""
|