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

require '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::ConfigFileLoader.load_config

# Initialize service client with default config file
logging_client = OCI::Logging::LoggingManagementClient.new(config: 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(
    OCI::Logging::Models::CreateUnifiedAgentConfigurationDetails.new(
      is_enabled: false,
      service_configuration:
        OCI::Logging::Models::UnifiedAgentLoggingConfiguration.new(
          configuration_type: 'LOGGING',
          sources: [
            OCI::Logging::Models::UnifiedAgentWindowsEventSource.new(
              source_type: 'WINDOWS_EVENT_LOG',
              name: 'EXAMPLE-name-Value',
              channels: %w[EXAMPLE--Value]
            )
          ],
          destination:
            OCI::Logging::Models::UnifiedAgentLoggingDestination.new(
              log_object_id:
                'ocid1.test.oc1..<unique_ID>EXAMPLE-logObjectId-Value',
              operational_metrics_configuration:
                OCI::Logging::Models::OperationalMetricsConfiguration.new(
                  source:
                    OCI::Logging::Models::OperationalMetricsSource.new(
                      type: 'UMA_METRICS',
                      metrics: %w[EXAMPLE--Value],
                      record_input:
                        OCI::Logging::Models::OperationalMetricsRecordInput.new(
                          namespace: 'EXAMPLE-namespace-Value',
                          resource_group: 'EXAMPLE-resourceGroup-Value'
                        )
                    ),
                  destination:
                    OCI::Logging::Models::OperationalMetricsDestination.new(
                      compartment_id:
                        'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value'
                    )
                )
            )
        ),
      compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
      display_name: 'EXAMPLE-displayName-Value',
      defined_tags: {
        'EXAMPLE_KEY_fmeFB' => { 'EXAMPLE_KEY_b8iNw' => 'EXAMPLE--Value' }
      },
      freeform_tags: {
        'EXAMPLE_KEY_PYrHk' => 'EXAMPLE_VALUE_h3xMAzWAMu2gDXbGmQkK'
      },
      description: 'EXAMPLE-description-Value',
      group_association:
        OCI::Logging::Models::GroupAssociationDetails.new(
          group_list: %w[EXAMPLE--Value]
        )
    )
  )

# Get the data from response
puts "#{create_unified_agent_configuration_response.headers}"