// 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 ExampleUpdateApplication() {
	// 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.UpdateApplicationRequest{ApplicationId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value"),
		IfMatch:      common.String("EXAMPLE-ifMatch-Value"),
		OpcRequestId: common.String("G0U0RLB6QBGMPAP8VCX3<unique_ID>"),
		UpdateApplicationDetails: dataflow.UpdateApplicationDetails{DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_z3fL3": map[string]interface{}{"EXAMPLE_KEY_utgYG": "EXAMPLE--Value"}},
			Description:          common.String("EXAMPLE-description-Value"),
			FileUri:              common.String("EXAMPLE-fileUri-Value"),
			FreeformTags:         map[string]string{"EXAMPLE_KEY_kTeM7": "EXAMPLE_VALUE_3scoYVbDp57WejXVZaLg"},
			Language:             dataflow.ApplicationLanguageSql,
			NumExecutors:         common.Int(117),
			Configuration:        map[string]string{"EXAMPLE_KEY_AGYI8": "EXAMPLE_VALUE_CjnzVroiih40TVRQCvhj"},
			DriverShape:          common.String("EXAMPLE-driverShape-Value"),
			IdleTimeoutInMinutes: common.Int64(462),
			Parameters: []dataflow.ApplicationParameter{dataflow.ApplicationParameter{Value: common.String("EXAMPLE-value-Value"),
				Name: common.String("EXAMPLE-name-Value")}},
			PrivateEndpointId:  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value"),
			SparkVersion:       common.String("EXAMPLE-sparkVersion-Value"),
			WarehouseBucketUri: common.String("EXAMPLE-warehouseBucketUri-Value"),
			ArchiveUri:         common.String("EXAMPLE-archiveUri-Value"),
			ExecutorShape:      common.String("EXAMPLE-executorShape-Value"),
			PoolId:             common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-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"),
			DriverShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(2768.2598),
				Ocpus: common.Float32(351.23645)},
			Execute: common.String("EXAMPLE-execute-Value"),
			ExecutorShapeConfig: &dataflow.ShapeConfig{MemoryInGBs: common.Float32(6875.88),
				Ocpus: common.Float32(3268.7747)},
			LogsBucketUri:        common.String("EXAMPLE-logsBucketUri-Value"),
			MaxDurationInMinutes: common.Int64(20),
			MetastoreId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value"),
			Arguments:            []string{"EXAMPLE--Value"},
			ClassName:            common.String("EXAMPLE-className-Value")}}

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

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