// 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{CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		Description:          common.String("EXAMPLE-description-Value"),
		PrivateEndpointId:    common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value"),
		WarehouseBucketUri:   common.String("EXAMPLE-warehouseBucketUri-Value"),
		Configuration:        map[string]string{"EXAMPLE_KEY_K3CEB": "EXAMPLE_VALUE_USqBVDagX1jFOrdLjW0O"},
		DisplayName:          common.String("EXAMPLE-displayName-Value"),
		FreeformTags:         map[string]string{"EXAMPLE_KEY_RNt0K": "EXAMPLE_VALUE_KdReeTEoobE3XLPvXX8s"},
		MaxDurationInMinutes: common.Int64(184),
		DriverShape:          common.String("EXAMPLE-driverShape-Value"),
		IdleTimeoutInMinutes: common.Int64(895),
		Language:             dataflow.ApplicationLanguageSql,
		Type:                 dataflow.ApplicationTypeBatch,
		MetastoreId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
		SparkVersion:         common.String("EXAMPLE-sparkVersion-Value"),
		ArchiveUri:           common.String("EXAMPLE-archiveUri-Value"),
		Arguments:            []string{"EXAMPLE--Value"},
		DefinedTags:          map[string]map[string]interface{}{"EXAMPLE_KEY_ioPRG": map[string]interface{}{"EXAMPLE_KEY_N9Vzh": "EXAMPLE--Value"}},
		PoolId:               common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value"),
		Execute:              common.String("EXAMPLE-execute-Value"),
		FileUri:              common.String("EXAMPLE-fileUri-Value"),
		Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Name: common.String("EXAMPLE-name-Value"),
			Value: common.String("EXAMPLE-value-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")},
		ExecutorShape: common.String("EXAMPLE-executorShape-Value"),
		ExecutorShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(3490.1082),
			Ocpus: common.Float32(3319.0828)},
		LogsBucketUri: common.String("EXAMPLE-logsBucketUri-Value"),
		ClassName:     common.String("EXAMPLE-className-Value"),
		DriverShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(8391.501),
			Ocpus: common.Float32(3391.8464)},
		NumExecutors: common.Int(994)},
		OpcRequestId:  common.String("TMPT8AK5KV2GAQR8D0JA<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)
}