# 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_exadb_vm_cluster_response = database_client.update_exadb_vm_cluster(
    exadb_vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-exadbVmClusterId-Value",
    update_exadb_vm_cluster_details=oci.database.models.UpdateExadbVmClusterDetails(
        display_name="EXAMPLE-displayName-Value",
        total_e_cpu_count=509,
        enabled_e_cpu_count=396,
        vm_file_system_storage=oci.database.models.ExadbVmClusterStorageDetails(
            total_size_in_gbs=121),
        node_count=996,
        license_model="BRING_YOUR_OWN_LICENSE",
        ssh_public_keys=["EXAMPLE--Value"],
        nsg_ids=["EXAMPLE--Value"],
        backup_network_nsg_ids=["EXAMPLE--Value"],
        freeform_tags={
            'EXAMPLE_KEY_1soLA': 'EXAMPLE_VALUE_OymaAXdIgbzMrgzLiSMy'},
        defined_tags={
            'EXAMPLE_KEY_j3FCs': {
                'EXAMPLE_KEY_GHZfr': 'EXAMPLE--Value'}},
        security_attributes={
            'EXAMPLE_KEY_gEQWy': {
                'EXAMPLE_KEY_CdPLZ': 'EXAMPLE--Value'}},
        data_collection_options=oci.database.models.DataCollectionOptions(
            is_diagnostics_events_enabled=False,
            is_health_monitoring_enabled=True,
            is_incident_logs_enabled=False),
        system_version="EXAMPLE-systemVersion-Value",
        grid_image_id="ocid1.test.oc1..<unique_ID>EXAMPLE-gridImageId-Value",
        update_action="PRECHECK"),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="UCTLZSUFYYGULISGNEFJ<unique_ID>")

# Get the data from response
print(update_exadb_vm_cluster_response.data)

Was this article helpful?