// 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{OpcRequestId: common.String("B3WVJ9KOFMVAT7KOIF19<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		CreateRunDetails: dataflow.CreateRunDetails{MetastoreId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
			SparkVersion: common.String("EXAMPLE-sparkVersion-Value"),
			Type:         dataflow.ApplicationTypeBatch,
			DriverShape:  common.String("EXAMPLE-driverShape-Value"),
			Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Name: common.String("EXAMPLE-name-Value"),
				Value: common.String("EXAMPLE-value-Value")}},
			ApplicationId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value"),
			DefinedTags:   map[string]map[string]interface{}{"EXAMPLE_KEY_obE3X": map[string]interface{}{"EXAMPLE_KEY_eeTEo": "EXAMPLE--Value"}},
			DisplayName:   common.String("EXAMPLE-displayName-Value"),
			DriverShapeConfig: &dataflow.ShapeConfig{Ocpus: common.Float32(4268.0107),
				MemoryInGBs: common.Float32(5929.8896)},
			ExecutorShape: common.String("EXAMPLE-executorShape-Value"),
			NumExecutors:  common.Int(373),
			PoolId:        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value"),
			Arguments:     []string{"EXAMPLE--Value"},
			CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
			Execute:       common.String("EXAMPLE-execute-Value"),
			ExecutorShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(6795.224),
				Ocpus: common.Float32(8878.075)},
			FreeformTags:         map[string]string{"EXAMPLE_KEY_X8sa0": "EXAMPLE_VALUE_Nx1TMPt8aK5KV2GaQr8d"},
			IdleTimeoutInMinutes: common.Int64(772),
			MaxDurationInMinutes: common.Int64(898),
			WarehouseBucketUri:   common.String("EXAMPLE-warehouseBucketUri-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"),
			Configuration: map[string]string{"EXAMPLE_KEY_W0ON9": "EXAMPLE_VALUE_VzhioPRGAYnORNt0KKdR"},
			LogsBucketUri: common.String("EXAMPLE-logsBucketUri-Value")},
		OpcParentRptUrl: common.String("EXAMPLE-opcParentRptUrl-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)
}