import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Path Analyzer Tests in Oracle Cloud Infrastructure Vn Monitoring service. * * Returns a list of all `PathAnalyzerTests` in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPathAnalyzerTests = oci.vnmonitoring.GetPathAnalyzerTests({ * compartmentId: compartmentId, * displayName: pathAnalyzerTestDisplayName, * state: pathAnalyzerTestState, * }); * ``` */ export declare function getPathAnalyzerTests(args: GetPathAnalyzerTestsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetPathAnalyzerTests. */ export interface GetPathAnalyzerTestsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter that returns only resources that match the entire display name given. */ displayName?: string; filters?: inputs.VnMonitoring.GetPathAnalyzerTestsFilter[]; /** * A filter that returns only resources whose `lifecycleState` matches the given `lifecycleState`. */ state?: string; } /** * A collection of values returned by GetPathAnalyzerTests. */ export interface GetPathAnalyzerTestsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `PathAnalyzerTest` resource's compartment. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.VnMonitoring.GetPathAnalyzerTestsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of path_analyzer_test_collection. */ readonly pathAnalyzerTestCollections: outputs.VnMonitoring.GetPathAnalyzerTestsPathAnalyzerTestCollection[]; /** * The current state of the `PathAnalyzerTest` resource. */ readonly state?: string; } /** * This data source provides the list of Path Analyzer Tests in Oracle Cloud Infrastructure Vn Monitoring service. * * Returns a list of all `PathAnalyzerTests` in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPathAnalyzerTests = oci.vnmonitoring.GetPathAnalyzerTests({ * compartmentId: compartmentId, * displayName: pathAnalyzerTestDisplayName, * state: pathAnalyzerTestState, * }); * ``` */ export declare function getPathAnalyzerTestsOutput(args: GetPathAnalyzerTestsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking GetPathAnalyzerTests. */ export interface GetPathAnalyzerTestsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter that returns only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter that returns only resources whose `lifecycleState` matches the given `lifecycleState`. */ state?: pulumi.Input; } //# sourceMappingURL=getPathAnalyzerTests.d.ts.map