# 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
create_monitored_resource_type_response = stack_monitoring_client.create_monitored_resource_type(
    create_monitored_resource_type_details=oci.stack_monitoring.models.CreateMonitoredResourceTypeDetails(
        name="EXAMPLE-name-Value",
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        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_hNeBV': ['EXAMPLE_VALUE_sOjBDYUWtwVyceJWz6aI']}),
        freeform_tags={
            'EXAMPLE_KEY_GOZM6': 'EXAMPLE_VALUE_3X554VJBcqGy6SNieSfE'},
        defined_tags={
            'EXAMPLE_KEY_pr4MH': {
                'EXAMPLE_KEY_1nro9': 'EXAMPLE--Value'}}),
    opc_request_id="MLXJLEVFTIQDVPBAQN4Q<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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