// 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 ExampleCreateApplication() {
	// 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.CreateApplicationRequest{CreateApplicationDetails: dataflow.CreateApplicationDetails{Arguments: []string{"EXAMPLE--Value"},
		ClassName:   common.String("EXAMPLE-className-Value"),
		Description: common.String("EXAMPLE-description-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")},
		DisplayName:   common.String("EXAMPLE-displayName-Value"),
		Execute:       common.String("EXAMPLE-execute-Value"),
		ExecutorShape: common.String("EXAMPLE-executorShape-Value"),
		FileUri:       common.String("EXAMPLE-fileUri-Value"),
		Type:          dataflow.ApplicationTypeSession,
		DefinedTags:   map[string]map[string]interface{}{"EXAMPLE_KEY_yfSX0": map[string]interface{}{"EXAMPLE_KEY_mem80": "EXAMPLE--Value"}},
		DriverShape:   common.String("EXAMPLE-driverShape-Value"),
		DriverShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(5933.7544),
			Ocpus: common.Float32(5786.02)},
		LogsBucketUri:        common.String("EXAMPLE-logsBucketUri-Value"),
		ArchiveUri:           common.String("EXAMPLE-archiveUri-Value"),
		IdleTimeoutInMinutes: common.Int64(291),
		Language:             dataflow.ApplicationLanguageScala,
		NumExecutors:         common.Int(106),
		PoolId:               common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value"),
		PrivateEndpointId:    common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value"),
		SparkVersion:         common.String("EXAMPLE-sparkVersion-Value"),
		CompartmentId:        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		Configuration:        map[string]string{"EXAMPLE_KEY_1wtvn": "EXAMPLE_VALUE_o6cf7maboQ29fB87Thui"},
		FreeformTags:         map[string]string{"EXAMPLE_KEY_c7JML": "EXAMPLE_VALUE_ZYnzCjm2GhC2CEw3kcYp"},
		MetastoreId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
		Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Name: common.String("EXAMPLE-name-Value"),
			Value: common.String("EXAMPLE-value-Value")}},
		MaxDurationInMinutes: common.Int64(512),
		WarehouseBucketUri:   common.String("EXAMPLE-warehouseBucketUri-Value"),
		ExecutorShapeConfig: &dataflow.ShapeConfig{Ocpus: common.Float32(2391.4963),
			MemoryInGBs: common.Float32(5947.5)}},
		OpcRequestId:  common.String("SUF3SHPW8QCAXXMG4VLO<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

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

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