# 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.UnifiedAgentMonitoringConfigurationDetails(
            configuration_type="MONITORING",
            application_configurations=[
                oci.logging.models.UnifiedAgentOpenmetricsTailConfigurationDetails(
                    source_type="TAIL",
                    sources=[
                        oci.logging.models.UnifiedAgentTailLogSource(
                            source_type="LOG_TAIL",
                            name="EXAMPLE-name-Value",
                            paths=["EXAMPLE--Value"],
                            parser=oci.logging.models.UnifiedAgentSyslogParser(
                                parser_type="SYSLOG",
                                field_time_key="EXAMPLE-fieldTimeKey-Value",
                                types={
                                    'EXAMPLE_KEY_2pwNY': 'EXAMPLE_VALUE_eoGEYq3OOeKmwWi86N8t'},
                                null_value_pattern="EXAMPLE-nullValuePattern-Value",
                                is_null_empty_string=False,
                                is_estimate_current_event=True,
                                is_keep_time_key=False,
                                timeout_in_milliseconds=777,
                                time_format="EXAMPLE-timeFormat-Value",
                                rfc5424_time_format="EXAMPLE-rfc5424TimeFormat-Value",
                                message_format="RFC5424",
                                is_with_priority=False,
                                is_support_colonless_ident=False,
                                syslog_parser_type="REGEXP"),
                            advanced_options=oci.logging.models.UnifiedAgentTailSourceAdvancedOptions(
                                is_read_from_head=False))],
                    destination=oci.logging.models.UnifiedAgentMonitoringDestination(
                        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
                        metrics_namespace="EXAMPLE-metricsNamespace-Value"))]),
        defined_tags={
            'EXAMPLE_KEY_UZ6Q6': {
                'EXAMPLE_KEY_UBaz4': 'EXAMPLE--Value'}},
        freeform_tags={
            'EXAMPLE_KEY_p0QyY': 'EXAMPLE_VALUE_kY1x2M9tI2qgALXYCvg8'},
        description="EXAMPLE-description-Value",
        group_association=oci.logging.models.GroupAssociationDetails(
            group_list=["EXAMPLE--Value"])),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="6WXW7Z5ITLTF9OH0EL2I<unique_ID>")

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

Was this article helpful?