import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Wls Domain resource in Oracle Cloud Infrastructure Wlms service. * * Gets a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomain = oci.oci.getWlmsWlsDomain({ * wlsDomainId: testWlsDomainOciWlmsWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomain(args: GetWlmsWlsDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomain. */ export interface GetWlmsWlsDomainArgs { /** * 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 getWlmsWlsDomain. */ export interface GetWlmsWlsDomainResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The WebLogic domain configuration. */ readonly configurations: outputs.oci.GetWlmsWlsDomainConfiguration[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name that does not have to be unique and is changeable. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Whether or not the terms of use agreement has been accepted for the WebLogic domain. */ readonly isAcceptedTermsAndConditions: boolean; /** * A message that describes the current state of the WebLogic domain in more detail. For example, it can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * The middleware type on the administration server of the WebLogic domain. */ readonly middlewareType: string; /** * The patch readiness status of the WebLogic domain. */ readonly patchReadinessStatus: string; /** * The current state of the WebLogic service domain. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the WebLogic domain was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the WebLogic domain was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; /** * The version of the WebLogic domain. */ readonly weblogicVersion: string; readonly wlsDomainId: string; } /** * This data source provides details about a specific Wls Domain resource in Oracle Cloud Infrastructure Wlms service. * * Gets a specific WebLogic domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomain = oci.oci.getWlmsWlsDomain({ * wlsDomainId: testWlsDomainOciWlmsWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainOutput(args: GetWlmsWlsDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomain. */ export interface GetWlmsWlsDomainOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomain.d.ts.map