# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
database_client = oci.database.DatabaseClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_exadata_infrastructure_response = database_client.update_exadata_infrastructure(
exadata_infrastructure_id="ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInfrastructureId-Value",
update_exadata_infrastructure_details=oci.database.models.UpdateExadataInfrastructureDetails(
cloud_control_plane_server1="EXAMPLE-cloudControlPlaneServer1-Value",
cloud_control_plane_server2="EXAMPLE-cloudControlPlaneServer2-Value",
netmask="EXAMPLE-netmask-Value",
gateway="EXAMPLE-gateway-Value",
admin_network_cidr="EXAMPLE-adminNetworkCIDR-Value",
infini_band_network_cidr="EXAMPLE-infiniBandNetworkCIDR-Value",
corporate_proxy="EXAMPLE-corporateProxy-Value",
contacts=[
oci.database.models.ExadataInfrastructureContact(
name="EXAMPLE-name-Value",
email="EXAMPLE-email-Value",
is_primary=True,
phone_number="EXAMPLE-phoneNumber-Value",
is_contact_mos_validated=True)],
maintenance_window=oci.database.models.MaintenanceWindow(
preference="NO_PREFERENCE",
patching_mode="ROLLING",
is_custom_action_timeout_enabled=False,
custom_action_timeout_in_mins=79,
is_monthly_patching_enabled=False,
months=[
oci.database.models.Month(
name="JUNE")],
weeks_of_month=[2],
days_of_week=[
oci.database.models.DayOfWeek(
name="TUESDAY")],
hours_of_day=[19],
lead_time_in_weeks=3,
skip_ru=[
True,
False]),
additional_storage_count=721,
is_multi_rack_deployment=False,
multi_rack_configuration_file="i6e2Wv9upqt1knp0ZQbY",
additional_compute_count=134,
additional_compute_system_model="X8M",
dns_server=["EXAMPLE--Value"],
ntp_server=["EXAMPLE--Value"],
time_zone="EXAMPLE-timeZone-Value",
is_cps_offline_report_enabled=True,
network_bonding_mode_details=oci.database.models.NetworkBondingModeDetails(
client_network_bonding_mode="ACTIVE_BACKUP",
backup_network_bonding_mode="ACTIVE_BACKUP",
dr_network_bonding_mode="LACP"),
freeform_tags={
'EXAMPLE_KEY_oqmdS': 'EXAMPLE_VALUE_f6Y8gi8vl7QlL72HBniq'},
defined_tags={
'EXAMPLE_KEY_eI3lX': {
'EXAMPLE_KEY_luHzJ': 'EXAMPLE--Value'}}),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="KJIZTIO4YOQEO77DCANN<unique_ID>")
# Get the data from response
print(update_exadata_infrastructure_response.data)