// 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 logging from "oci-logging";
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 logging.LoggingManagementClient({ authenticationDetailsProvider: provider });

     // Create a request and dependent object(s).
	const  updateUnifiedAgentConfigurationDetails = {
		displayName: "EXAMPLE-displayName-Value",
		isEnabled: true,
		definedTags: {
			EXAMPLE_KEY_Yflpy :{
				EXAMPLE_KEY_fOaYI :"EXAMPLE--Value"
				}
			},
		freeformTags: {
			EXAMPLE_KEY_Ehu2A :"EXAMPLE_VALUE_Ol6bD80RzmGDbnia1JPY"
			},
		description: "EXAMPLE-description-Value",
		serviceConfiguration: {
			configurationType: "MONITORING",			applicationConfigurations: [{
					sourceType: "KUBERNETES",					source: {
						name: "EXAMPLE-name-Value",
						scrapeTargets: [{
								resourceType: logging.models.UnifiedAgentKubernetesScrapeTarget.ResourceType.Services,
								k8sNamespace: "EXAMPLE-k8sNamespace-Value",
								serviceName: "EXAMPLE-serviceName-Value",
								resourceGroup: "EXAMPLE-resourceGroup-Value",

								}
								],

						}
,
					filter: {
						filterType: "KUBERNETES_FILTER",						allowList: ["EXAMPLE--Value"								],
						denyList: ["EXAMPLE--Value"								],
						name: "EXAMPLE-name-Value"

						}
,
					destination: {
						compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
						metricsNamespace: "EXAMPLE-metricsNamespace-Value",

						}


					}
					]

			}
,
		groupAssociation: {
			groupList: ["EXAMPLE--Value"					],

			}
,

		}

	const updateUnifiedAgentConfigurationRequest: logging.requests.UpdateUnifiedAgentConfigurationRequest = { 
	unifiedAgentConfigurationId: "ocid1.test.oc1..<unique_ID>EXAMPLE-unifiedAgentConfigurationId-Value",
	updateUnifiedAgentConfigurationDetails: updateUnifiedAgentConfigurationDetails,
	ifMatch: "EXAMPLE-ifMatch-Value",
	opcRequestId: "7UVTAMWEY0YUHCFQUOSH<unique_ID>",

		}; 


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