# 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
create_unified_agent_configuration_response = logging_client.create_unified_agent_configuration(
    create_unified_agent_configuration_details=oci.logging.models.CreateUnifiedAgentConfigurationDetails(
        display_name="EXAMPLE-displayName-Value",
        is_enabled=True,
        service_configuration=oci.logging.models.UnifiedAgentLoggingConfiguration(
            configuration_type="LOGGING",
            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_jRasU': 'EXAMPLE_VALUE_7jwQnF5JlS7CqJHc9P84'},
                        null_value_pattern="EXAMPLE-nullValuePattern-Value",
                        is_null_empty_string=True,
                        is_estimate_current_event=True,
                        is_keep_time_key=False,
                        timeout_in_milliseconds=778,
                        time_format="EXAMPLE-timeFormat-Value",
                        rfc5424_time_format="EXAMPLE-rfc5424TimeFormat-Value",
                        message_format="RFC3164",
                        is_with_priority=True,
                        is_support_colonless_ident=True,
                        syslog_parser_type="REGEXP"),
                    advanced_options=oci.logging.models.UnifiedAgentTailSourceAdvancedOptions(
                        is_read_from_head=False))],
            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.UnifiedAgentLoggingRecordTransformerFilter(
                    filter_type="RECORD_TRANSFORMER_FILTER",
                    name="EXAMPLE-name-Value",
                    record_list=[
                        oci.logging.models.RecordTransformerPair(
                            key="EXAMPLE-key-Value",
                            value="EXAMPLE-value-Value")],
                    is_ruby_enabled=False,
                    is_auto_typecast_enabled=True,
                    is_renew_record_enabled=True,
                    renew_time_key="EXAMPLE-renewTimeKey-Value",
                    keep_keys=["EXAMPLE--Value"],
                    remove_keys=["EXAMPLE--Value"])]),
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        description="EXAMPLE-description-Value",
        defined_tags={
            'EXAMPLE_KEY_DMI3B': {
                'EXAMPLE_KEY_GGwd7': 'EXAMPLE--Value'}},
        freeform_tags={
            'EXAMPLE_KEY_gTIjb': 'EXAMPLE_VALUE_laMlvCS1wwaC19KgGd8O'},
        group_association=oci.logging.models.GroupAssociationDetails(
            group_list=["EXAMPLE--Value"])),
    opc_request_id="JA5ELS9JOOVQPSSMF4KV<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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