# 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 oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
logging_client = oci.logging.LoggingManagementClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_unified_agent_configuration_response = logging_client.update_unified_agent_configuration(
    unified_agent_configuration_id="ocid1.test.oc1..<unique_ID>EXAMPLE-unifiedAgentConfigurationId-Value",
    update_unified_agent_configuration_details=oci.logging.models.UpdateUnifiedAgentConfigurationDetails(
        display_name="EXAMPLE-displayName-Value",
        is_enabled=False,
        service_configuration=oci.logging.models.UnifiedAgentLoggingConfiguration(
            configuration_type="LOGGING",
            sources=[
                oci.logging.models.UnifiedAgentCustomPluginLogSource(
                    source_type="CUSTOM_PLUGIN",
                    name="EXAMPLE-name-Value",
                    custom_plugin="EXAMPLE-customPlugin-Value")],
            destination=oci.logging.models.UnifiedAgentLoggingDestination(
                log_object_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logObjectId-Value",
                operational_metrics_configuration=oci.logging.models.OperationalMetricsConfiguration(
                    source=oci.logging.models.OperationalMetricsSource(
                        type="UMA_METRICS",
                        record_input=oci.logging.models.OperationalMetricsRecordInput(
                            namespace="EXAMPLE-namespace-Value",
                            resource_group="EXAMPLE-resourceGroup-Value"),
                        metrics=["EXAMPLE--Value"]),
                    destination=oci.logging.models.OperationalMetricsDestination(
                        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"))),
            filter=[
                oci.logging.models.UnifiedAgentParserFilter(
                    filter_type="PARSER_FILTER",
                    name="EXAMPLE-name-Value",
                    parser=oci.logging.models.UnifiedAgentMultilineGrokParser(
                        parser_type="MULTILINE_GROK",
                        patterns=[
                            oci.logging.models.GrokPattern(
                                pattern="EXAMPLE-pattern-Value",
                                name="EXAMPLE-name-Value",
                                field_time_key="EXAMPLE-fieldTimeKey-Value",
                                field_time_format="EXAMPLE-fieldTimeFormat-Value",
                                field_time_zone="EXAMPLE-fieldTimeZone-Value")],
                        field_time_key="EXAMPLE-fieldTimeKey-Value",
                        types={
                            'EXAMPLE_KEY_KxuWw': 'EXAMPLE_VALUE_QwcSgk2O24pKrPYRSeMP'},
                        null_value_pattern="EXAMPLE-nullValuePattern-Value",
                        is_null_empty_string=True,
                        is_estimate_current_event=True,
                        is_keep_time_key=False,
                        timeout_in_milliseconds=403,
                        grok_name_key="EXAMPLE-grokNameKey-Value",
                        grok_failure_key="EXAMPLE-grokFailureKey-Value",
                        multi_line_start_regexp="EXAMPLE-multiLineStartRegexp-Value"),
                    key_name="EXAMPLE-keyName-Value",
                    reserve_time=False,
                    reserve_data=False,
                    remove_key_name_field=False,
                    replace_invalid_sequence=True,
                    inject_key_prefix="EXAMPLE-injectKeyPrefix-Value",
                    hash_value_field="EXAMPLE-hashValueField-Value",
                    emit_invalid_record_to_error=True)]),
        defined_tags={
            'EXAMPLE_KEY_mOpDX': {
                'EXAMPLE_KEY_kN7do': 'EXAMPLE--Value'}},
        freeform_tags={
            'EXAMPLE_KEY_n5fuv': 'EXAMPLE_VALUE_OJH9jRasU7jwQnF5JlS7'},
        description="EXAMPLE-description-Value",
        group_association=oci.logging.models.GroupAssociationDetails(
            group_list=["EXAMPLE--Value"])),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="CQJHC9P845CWJHZOQA53<unique_ID>")

# Get the data from response
print(update_unified_agent_configuration_response.headers)