// 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{CreateRunDetails: dataflow.CreateRunDetails{CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		Execute:              common.String("EXAMPLE-execute-Value"),
		IdleTimeoutInMinutes: common.Int64(910),
		MaxDurationInMinutes: common.Int64(789),
		MetastoreId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
		ApplicationLogConfig: &dataflow.ApplicationLogConfig{LogGroupId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value"),
			LogId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value")},
		ArchiveUri: common.String("EXAMPLE-archiveUri-Value"),
		DriverShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(2392.571),
			Ocpus: common.Float32(2474.8333)},
		ExecutorShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(805.56274),
			Ocpus: common.Float32(7419.739)},
		Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Name: common.String("EXAMPLE-name-Value"),
			Value: common.String("EXAMPLE-value-Value")}},
		SparkVersion:       common.String("EXAMPLE-sparkVersion-Value"),
		Configuration:      map[string]string{"EXAMPLE_KEY_a83xY": "EXAMPLE_VALUE_TmvmcGEsO8DpAsQIFrbA"},
		DefinedTags:        map[string]map[string]interface{}{"EXAMPLE_KEY_pQAc4": map[string]interface{}{"EXAMPLE_KEY_gTqIU": "EXAMPLE--Value"}},
		DriverShape:        common.String("EXAMPLE-driverShape-Value"),
		ExecutorShape:      common.String("EXAMPLE-executorShape-Value"),
		FreeformTags:       map[string]string{"EXAMPLE_KEY_vxYgn": "EXAMPLE_VALUE_HNBCX60D2omHJLzka6g3"},
		LogsBucketUri:      common.String("EXAMPLE-logsBucketUri-Value"),
		NumExecutors:       common.Int(802),
		PoolId:             common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value"),
		ApplicationId:      common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value"),
		Arguments:          []string{"EXAMPLE--Value"},
		DisplayName:        common.String("EXAMPLE-displayName-Value"),
		Type:               dataflow.ApplicationTypeStreaming,
		WarehouseBucketUri: common.String("EXAMPLE-warehouseBucketUri-Value")},
		OpcParentRptUrl: common.String("EXAMPLE-opcParentRptUrl-Value"),
		OpcRequestId:    common.String("XRIF0QCMMSNWPMLQN8ZS<unique_ID>"),
		OpcRetryToken:   common.String("EXAMPLE-opcRetryToken-Value")}

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