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 Servers in Oracle Cloud Infrastructure Wlms service. * * Gets list of servers in a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServers = oci.oci.getWlmsWlsDomainServers({ * wlsDomainId: testWlsDomain.id, * name: wlsDomainServerName, * }); * ``` */ export declare function getWlmsWlsDomainServers(args: GetWlmsWlsDomainServersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainServers. */ export interface GetWlmsWlsDomainServersArgs { filters?: inputs.oci.GetWlmsWlsDomainServersFilter[]; /** * The name of the resource. */ name?: 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 getWlmsWlsDomainServers. */ export interface GetWlmsWlsDomainServersResult { readonly filters?: outputs.oci.GetWlmsWlsDomainServersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the server. */ readonly name?: string; /** * The list of server_collection. */ readonly serverCollections: outputs.oci.GetWlmsWlsDomainServersServerCollection[]; /** * The ID of the WebLogic domain to which the server belongs. */ readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Servers in Oracle Cloud Infrastructure Wlms service. * * Gets list of servers in a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServers = oci.oci.getWlmsWlsDomainServers({ * wlsDomainId: testWlsDomain.id, * name: wlsDomainServerName, * }); * ``` */ export declare function getWlmsWlsDomainServersOutput(args: GetWlmsWlsDomainServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainServers. */ export interface GetWlmsWlsDomainServersOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The name of the resource. */ name?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainServers.d.ts.map