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

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/dataflow"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleCreateRun() {
	// 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.
	client, err := dataflow.NewDataFlowClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := dataflow.CreateRunRequest{OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		CreateRunDetails: dataflow.CreateRunDetails{ApplicationId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value"),
			ArchiveUri:    common.String("EXAMPLE-archiveUri-Value"),
			Configuration: map[string]string{"EXAMPLE_KEY_Lek65": "EXAMPLE_VALUE_CWFGupK9rA8gJb4XFioQ"},
			ExecutorShapeConfig: &dataflow.ShapeConfig{Ocpus: common.Float32(9231.198),
				MemoryInGBs: common.Float32(6697.9746)},
			IdleTimeoutInMinutes: common.Int64(766),
			NumExecutors:         common.Int(366),
			Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Name: common.String("EXAMPLE-name-Value"),
				Value: common.String("EXAMPLE-value-Value")}},
			PoolId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value"),
			ApplicationLogConfig: &dataflow.ApplicationLogConfig{LogId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"),
				LogGroupId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value")},
			DisplayName:        common.String("EXAMPLE-displayName-Value"),
			Execute:            common.String("EXAMPLE-execute-Value"),
			ExecutorShape:      common.String("EXAMPLE-executorShape-Value"),
			FreeformTags:       map[string]string{"EXAMPLE_KEY_anNxb": "EXAMPLE_VALUE_1aKsgJCYepGX5DyRxDZH"},
			LogsBucketUri:      common.String("EXAMPLE-logsBucketUri-Value"),
			MetastoreId:        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
			Type:               dataflow.ApplicationTypeSession,
			Arguments:          []string{"EXAMPLE--Value"},
			CompartmentId:      common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
			DriverShape:        common.String("EXAMPLE-driverShape-Value"),
			SparkVersion:       common.String("EXAMPLE-sparkVersion-Value"),
			WarehouseBucketUri: common.String("EXAMPLE-warehouseBucketUri-Value"),
			DefinedTags:        map[string]map[string]interface{}{"EXAMPLE_KEY_lb7t2": map[string]interface{}{"EXAMPLE_KEY_Eyj04": "EXAMPLE--Value"}},
			DriverShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(4402.86),
				Ocpus: common.Float32(6443.967)},
			MaxDurationInMinutes: common.Int64(920)},
		OpcParentRptUrl: common.String("EXAMPLE-opcParentRptUrl-Value"),
		OpcRequestId:    common.String("EKNBKHYJBQCLJS4VMSRT<unique_ID>")}

	// Send the request using the service client
	resp, err := client.CreateRun(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}