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

import * as loganalytics from "oci-loganalytics";
import common = require("oci-common");

// 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.

const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
    try {
     // Create a service client
     const client = new loganalytics.LogAnalyticsClient({ authenticationDetailsProvider: provider });

     // Create a request and dependent object(s).
	const  updateLookupMetadataDetails = {
		defaultMatchValue: "EXAMPLE-defaultMatchValue-Value",
		description: "EXAMPLE-description-Value",
		fields: [{
				commonFieldName: "EXAMPLE-commonFieldName-Value",
				defaultMatchValue: "EXAMPLE-defaultMatchValue-Value",
				displayName: "EXAMPLE-displayName-Value",
				isCommonField: false,
				matchOperator: "EXAMPLE-matchOperator-Value",
				name: "EXAMPLE-name-Value",
				position: 740,

				}
				],
		maxMatches: 796,
		categories: [{
				name: "EXAMPLE-name-Value",
				description: "EXAMPLE-description-Value",
				displayName: "EXAMPLE-displayName-Value",
				type: "EXAMPLE-type-Value",
				isSystem: true,

				}
				],
		freeformTags: {
			EXAMPLE_KEY_Ab2a2 :"EXAMPLE_VALUE_c5VAwyLh6tWvLHGjKs7J"
			},
		definedTags: {
			EXAMPLE_KEY_gfNiW :{
				EXAMPLE_KEY_lAD6Y :"EXAMPLE--Value"
				}
			},

		}

	const updateLookupRequest: loganalytics.requests.UpdateLookupRequest = { 
	namespaceName: "EXAMPLE-namespaceName-Value",
	lookupName: "EXAMPLE-lookupName-Value",
	updateLookupMetadataDetails: updateLookupMetadataDetails,
	opcRetryToken: "EXAMPLE-opcRetryToken-Value",
	opcRequestId: "Z4MDCEVGPL07YCWYECF5<unique_ID>",
	ifMatch: "EXAMPLE-ifMatch-Value",

		}; 


     // Send request to the Client.
     const updateLookupResponse = await client.updateLookup(updateLookupRequest);
     }
     catch (error) {
         console.log("updateLookup Failed with error  " + error);
     }
})();