# 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
stack_monitoring_client = oci.stack_monitoring.StackMonitoringClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_monitored_resource_type_response = stack_monitoring_client.update_monitored_resource_type(
    monitored_resource_type_id="ocid1.test.oc1..<unique_ID>EXAMPLE-monitoredResourceTypeId-Value",
    update_monitored_resource_type_details=oci.stack_monitoring.models.UpdateMonitoredResourceTypeDetails(
        display_name="EXAMPLE-displayName-Value",
        description="EXAMPLE-description-Value",
        metric_namespace="EXAMPLE-metricNamespace-Value",
        source_type="PROMETHEUS",
        resource_category="UNKNOWN",
        metadata=oci.stack_monitoring.models.SystemFormatResourceTypeMetadataDetails(
            format="SYSTEM_FORMAT",
            required_properties=["EXAMPLE--Value"],
            agent_properties=["EXAMPLE--Value"],
            valid_properties_for_create=["EXAMPLE--Value"],
            valid_properties_for_update=["EXAMPLE--Value"],
            unique_property_sets=[
                oci.stack_monitoring.models.UniquePropertySet(
                    properties=["EXAMPLE--Value"])],
            valid_property_values={
                'EXAMPLE_KEY_Q71k9': ['EXAMPLE_VALUE_f4mw1SXJodHxpBQTgs6z']}),
        freeform_tags={
            'EXAMPLE_KEY_gRkjc': 'EXAMPLE_VALUE_hk3RGD8SF3upLFj3f9hR'},
        defined_tags={
            'EXAMPLE_KEY_eXjxR': {
                'EXAMPLE_KEY_oOspZ': 'EXAMPLE--Value'}}),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="KFRYJYHREUDIZ1CMRSG0<unique_ID>")

# Get the data from response
print(update_monitored_resource_type_response.data)