import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific External Cluster Instance resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external cluster instance specified by `externalClusterInstanceId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalClusterInstance = oci.databasemanagement.getExternalClusterInstance({ * externalClusterInstanceId: testExternalClusterInstanceOciDatabaseManagementExternalClusterInstance.id, * }); * ``` */ export declare function getExternalClusterInstance(args: GetExternalClusterInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalClusterInstance. */ export interface GetExternalClusterInstanceArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster instance. */ externalClusterInstanceId: string; } /** * A collection of values returned by getExternalClusterInstance. */ export interface GetExternalClusterInstanceResult { /** * The Automatic Diagnostic Repository (ADR) home directory for the cluster instance. */ readonly adrHomeDirectory: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The name of the external cluster instance. */ readonly componentName: string; /** * The Oracle base location of Cluster Ready Services (CRS). */ readonly crsBaseDirectory: string; /** * 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; }; /** * The user-friendly name for the cluster instance. The name does not have to be unique. */ readonly displayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster that the cluster instance belongs to. */ readonly externalClusterId: string; readonly externalClusterInstanceId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external connector. */ readonly externalConnectorId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB node. */ readonly externalDbNodeId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system that the cluster instance is a part of. */ readonly externalDbSystemId: string; /** * Free-form tags for this resource. Each tag is a simple 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 name of the host on which the cluster instance is running. */ readonly hostName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster instance. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The role of the cluster node. */ readonly nodeRole: string; /** * The current lifecycle state of the external cluster instance. */ readonly state: string; /** * System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the external cluster instance was created. */ readonly timeCreated: string; /** * The date and time the external cluster instance was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific External Cluster Instance resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external cluster instance specified by `externalClusterInstanceId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalClusterInstance = oci.databasemanagement.getExternalClusterInstance({ * externalClusterInstanceId: testExternalClusterInstanceOciDatabaseManagementExternalClusterInstance.id, * }); * ``` */ export declare function getExternalClusterInstanceOutput(args: GetExternalClusterInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalClusterInstance. */ export interface GetExternalClusterInstanceOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster instance. */ externalClusterInstanceId: pulumi.Input; } //# sourceMappingURL=getExternalClusterInstance.d.ts.map