import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Metric Extensions Test Management resource in Oracle Cloud Infrastructure Stack Monitoring service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/stack-monitoring/latest/MetricExtensionsTestManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/stack_monitoring * * Performs test of Metric Extension on a specific resource Id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMetricExtensionsTestManagement = new oci.stackmonitoring.MetricExtensionsTestManagement("test_metric_extensions_test_management", { * metricExtensionId: testMetricExtension.id, * resourceIds: metricExtensionsTestManagementResourceIds[0], * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class MetricExtensionsTestManagement extends pulumi.CustomResource { /** * Get an existing MetricExtensionsTestManagement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: MetricExtensionsTestManagementState, opts?: pulumi.CustomResourceOptions): MetricExtensionsTestManagement; /** * Returns true if the given object is an instance of MetricExtensionsTestManagement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MetricExtensionsTestManagement; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the metric extension resource. */ readonly metricExtensionId: pulumi.Output; /** * List of Resource IDs [OCID]. Currently, supports only one resource id per request. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly resourceIds: pulumi.Output; /** * Test Run Id */ readonly testRunId: pulumi.Output; /** * Test Run Metric Suffix */ readonly testRunMetricSuffix: pulumi.Output; /** * Test Run Namespace name */ readonly testRunNamespaceName: pulumi.Output; /** * Test Run Resource Group name */ readonly testRunResourceGroupName: pulumi.Output; /** * Create a MetricExtensionsTestManagement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MetricExtensionsTestManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MetricExtensionsTestManagement resources. */ export interface MetricExtensionsTestManagementState { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the metric extension resource. */ metricExtensionId?: pulumi.Input; /** * List of Resource IDs [OCID]. Currently, supports only one resource id per request. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ resourceIds?: pulumi.Input; /** * Test Run Id */ testRunId?: pulumi.Input; /** * Test Run Metric Suffix */ testRunMetricSuffix?: pulumi.Input; /** * Test Run Namespace name */ testRunNamespaceName?: pulumi.Input; /** * Test Run Resource Group name */ testRunResourceGroupName?: pulumi.Input; } /** * The set of arguments for constructing a MetricExtensionsTestManagement resource. */ export interface MetricExtensionsTestManagementArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the metric extension resource. */ metricExtensionId: pulumi.Input; /** * List of Resource IDs [OCID]. Currently, supports only one resource id per request. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ resourceIds: pulumi.Input; } //# sourceMappingURL=metricExtensionsTestManagement.d.ts.map