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 Managed Instance Scan Results in Oracle Cloud Infrastructure Wlms service. * * Gets all the scan results for all WebLogic servers in the managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceScanResults = oci.oci.getWlmsManagedInstanceScanResults({ * managedInstanceId: testManagedInstance.id, * serverName: managedInstanceScanResultServerName, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsManagedInstanceScanResults(args: GetWlmsManagedInstanceScanResultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsManagedInstanceScanResults. */ export interface GetWlmsManagedInstanceScanResultsArgs { filters?: inputs.oci.GetWlmsManagedInstanceScanResultsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ managedInstanceId: string; /** * 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 getWlmsManagedInstanceScanResults. */ export interface GetWlmsManagedInstanceScanResultsResult { readonly filters?: outputs.oci.GetWlmsManagedInstanceScanResultsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedInstanceId: string; /** * The list of scan_result_collection. */ readonly scanResultCollections: outputs.oci.GetWlmsManagedInstanceScanResultsScanResultCollection[]; /** * 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 Managed Instance Scan Results in Oracle Cloud Infrastructure Wlms service. * * Gets all the scan results for all WebLogic servers in the managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceScanResults = oci.oci.getWlmsManagedInstanceScanResults({ * managedInstanceId: testManagedInstance.id, * serverName: managedInstanceScanResultServerName, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsManagedInstanceScanResultsOutput(args: GetWlmsManagedInstanceScanResultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsManagedInstanceScanResults. */ export interface GetWlmsManagedInstanceScanResultsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ managedInstanceId: pulumi.Input; /** * 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=getWlmsManagedInstanceScanResults.d.ts.map