# 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).

require '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::ConfigFileLoader.load_config

# Initialize service client with default config file
ocvp_client = OCI::Ocvp::ClusterClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
update_cluster_response =
  ocvp_client.update_cluster(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-clusterId-Value',
    OCI::Ocvp::Models::UpdateClusterDetails.new(
      display_name: 'EXAMPLE-displayName-Value',
      network_configuration:
        OCI::Ocvp::Models::NetworkConfiguration.new(
          provisioning_subnet_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-provisioningSubnetId-Value',
          vmotion_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-vmotionVlanId-Value',
          vsan_vlan_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-vsanVlanId-Value',
          nsx_v_tep_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-nsxVTepVlanId-Value',
          nsx_edge_v_tep_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-nsxEdgeVTepVlanId-Value',
          vsphere_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-vsphereVlanId-Value',
          nsx_edge_uplink1_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-nsxEdgeUplink1VlanId-Value',
          nsx_edge_uplink2_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-nsxEdgeUplink2VlanId-Value',
          replication_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-replicationVlanId-Value',
          provisioning_vlan_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-provisioningVlanId-Value',
          hcx_vlan_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-hcxVlanId-Value'
        ),
      vmware_software_version: 'EXAMPLE-vmwareSoftwareVersion-Value',
      esxi_software_version: 'EXAMPLE-esxiSoftwareVersion-Value',
      freeform_tags: {
        'EXAMPLE_KEY_rybnn' => 'EXAMPLE_VALUE_4i8vS9iHagxza5lI4Fkd'
      },
      defined_tags: {
        'EXAMPLE_KEY_Fnsqt' => { 'EXAMPLE_KEY_gbk83' => 'EXAMPLE--Value' }
      }
    )
  )

# Get the data from response
puts "#{update_cluster_response.data}"