/** 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 com.oracle.bmc.ConfigFileReader;
import com.oracle.bmc.auth.AuthenticationDetailsProvider;
import com.oracle.bmc.auth.ConfigFileAuthenticationDetailsProvider;
import com.oracle.bmc.rover.RoverNodeClient;
import com.oracle.bmc.rover.model.*;
import com.oracle.bmc.rover.requests.*;
import com.oracle.bmc.rover.responses.*;
import java.math.BigDecimal;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Date;
import java.util.UUID;
import java.util.Arrays;


public class CreateRoverNodeExample {
    public static void main(String[] args) throws Exception {

        /**
         * Create a default authentication provider that uses the DEFAULT
         * profile in the configuration file.
         * Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
         */
        final ConfigFileReader.ConfigFile configFile = ConfigFileReader.parseDefault();
        final AuthenticationDetailsProvider provider = new ConfigFileAuthenticationDetailsProvider(configFile);

        /* Create a service client */
        RoverNodeClient client = RoverNodeClient.builder().build(provider);

        /* Create a request and dependent object(s). */
	CreateRoverNodeDetails createRoverNodeDetails = CreateRoverNodeDetails.builder()
		.displayName("EXAMPLE-displayName-Value")
		.compartmentId("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value")
		.shape("EXAMPLE-shape-Value")
		.customerShippingAddress(ShippingAddress.builder()
			.addressee("EXAMPLE-addressee-Value")
			.careOf("EXAMPLE-careOf-Value")
			.address1("EXAMPLE-address1-Value")
			.address2("EXAMPLE-address2-Value")
			.address3("EXAMPLE-address3-Value")
			.address4("EXAMPLE-address4-Value")
			.cityOrLocality("EXAMPLE-cityOrLocality-Value")
			.stateOrRegion("EXAMPLE-stateOrRegion-Value")
			.zipcode("EXAMPLE-zipcode-Value")
			.country("EXAMPLE-country-Value")
			.phoneNumber("EXAMPLE-phoneNumber-Value")
			.email("EXAMPLE-email-Value").build())
		.nodeWorkloads(new ArrayList<>(Arrays.asList(RoverWorkload.builder()
				.name("EXAMPLE-name-Value")
				.compartmentId("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value")
				.id("ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value")
				.size("EXAMPLE-size-Value")
				.objectCount("EXAMPLE-objectCount-Value")
				.prefix("EXAMPLE-prefix-Value")
				.rangeStart("EXAMPLE-rangeStart-Value")
				.rangeEnd("EXAMPLE-rangeEnd-Value")
				.workloadType("EXAMPLE-workloadType-Value")
				.workRequestId("ocid1.test.oc1..<unique_ID>EXAMPLE-workRequestId-Value").build())))
		.superUserPassword("EXAMPLE-superUserPassword-Value")
		.unlockPassphrase("EXAMPLE-unlockPassphrase-Value")
		.pointOfContact("EXAMPLE-pointOfContact-Value")
		.pointOfContactPhoneNumber("EXAMPLE-pointOfContactPhoneNumber-Value")
		.shippingPreference(CreateRoverNodeDetails.ShippingPreference.CustomerPickup)
		.shippingVendor("EXAMPLE-shippingVendor-Value")
		.timePickupExpected(new Date("Sun May 12 07:28:59 UTC 2019"))
		.publicKey("EXAMPLE-publicKey-Value")
		.timeReturnWindowStarts(new Date("Wed Sep 03 10:46:24 UTC 2008"))
		.timeReturnWindowEnds(new Date("Sat Jan 12 11:48:44 UTC 2036"))
		.lifecycleState(LifecycleState.Failed)
		.enclosureType(EnclosureType.NonRuggadized)
		.lifecycleStateDetails("EXAMPLE-lifecycleStateDetails-Value")
		.serialNumber("EXAMPLE-serialNumber-Value")
		.oracleShippingTrackingUrl("EXAMPLE-oracleShippingTrackingUrl-Value")
		.isImportRequested(false)
		.importCompartmentId("ocid1.test.oc1..<unique_ID>EXAMPLE-importCompartmentId-Value")
		.importFileBucket("EXAMPLE-importFileBucket-Value")
		.dataValidationCode("EXAMPLE-dataValidationCode-Value")
		.masterKeyId("ocid1.test.oc1..<unique_ID>EXAMPLE-masterKeyId-Value")
		.certificateAuthorityId("ocid1.test.oc1..<unique_ID>EXAMPLE-certificateAuthorityId-Value")
		.timeCertValidityEnd(new Date("Fri Jan 31 22:54:11 UTC 2003"))
		.commonName("EXAMPLE-commonName-Value")
		.certCompartmentId("ocid1.test.oc1..<unique_ID>EXAMPLE-certCompartmentId-Value")
		.certKeyAlgorithm(CertKeyAlgorithm.EcdsaP256)
		.certSignatureAlgorithm(CertSignatureAlgorithm.Sha256WithRsa)
		.freeformTags(new HashMap<java.lang.String, java.lang.String>() {
				{
					put("EXAMPLE_KEY_2D4L7","EXAMPLE_VALUE_7BKlHSHGgOBVADXLdN9d");
				}
 			})
		.definedTags(new HashMap<java.lang.String, java.util.Map<java.lang.String, java.lang.Object>>() {
				{
					put("EXAMPLE_KEY_teFm6",new HashMap<java.lang.String, java.lang.Object>() {
					{
						put("EXAMPLE_KEY_NTrzT","EXAMPLE--Value");
					}
 				});
				}
 			})
		.systemTags(new HashMap<java.lang.String, java.util.Map<java.lang.String, java.lang.Object>>() {
				{
					put("EXAMPLE_KEY_gHFfn",new HashMap<java.lang.String, java.lang.Object>() {
					{
						put("EXAMPLE_KEY_XViSS","EXAMPLE--Value");
					}
 				});
				}
 			}).build();

	CreateRoverNodeRequest createRoverNodeRequest = CreateRoverNodeRequest.builder()
		.createRoverNodeDetails(createRoverNodeDetails)
		.opcRetryToken("EXAMPLE-opcRetryToken-Value")
		.opcRequestId("RRCKHG9JX6NI4PKE7ORL<unique_ID>").build();

        /* Send request to the Client */
        CreateRoverNodeResponse response = client.createRoverNode(createRoverNodeRequest);
    }

    
}