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 Wls Domain Scan Results in Oracle Cloud Infrastructure Wlms service. * * Get all scan results for a server in a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainScanResults = oci.oci.getWlmsWlsDomainScanResults({ * wlsDomainId: testWlsDomain.id, * serverName: wlsDomainScanResultServerName, * }); * ``` */ export declare function getWlmsWlsDomainScanResults(args: GetWlmsWlsDomainScanResultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainScanResults. */ export interface GetWlmsWlsDomainScanResultsArgs { filters?: inputs.oci.GetWlmsWlsDomainScanResultsFilter[]; /** * The name of the server. */ serverName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: string; } /** * A collection of values returned by getWlmsWlsDomainScanResults. */ export interface GetWlmsWlsDomainScanResultsResult { readonly filters?: outputs.oci.GetWlmsWlsDomainScanResultsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of scan_result_collection. */ readonly scanResultCollections: outputs.oci.GetWlmsWlsDomainScanResultsScanResultCollection[]; /** * The name of the WebLogic server to which the server check belongs. */ readonly serverName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Scan Results in Oracle Cloud Infrastructure Wlms service. * * Get all scan results for a server in a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainScanResults = oci.oci.getWlmsWlsDomainScanResults({ * wlsDomainId: testWlsDomain.id, * serverName: wlsDomainScanResultServerName, * }); * ``` */ export declare function getWlmsWlsDomainScanResultsOutput(args: GetWlmsWlsDomainScanResultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainScanResults. */ export interface GetWlmsWlsDomainScanResultsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The name of the server. */ serverName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainScanResults.d.ts.map