import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External Cluster resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external cluster specified by `externalClusterId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalCluster = oci.databasemanagement.getExternalCluster({ * externalClusterId: testExternalClusterOciDatabaseManagementExternalCluster.id, * }); * ``` */ export declare function getExternalCluster(args: GetExternalClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalCluster. */ export interface GetExternalClusterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster. */ externalClusterId: string; } /** * A collection of values returned by getExternalCluster. */ export interface GetExternalClusterResult { /** * The additional details of the external cluster defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}` */ readonly additionalDetails: { [key: string]: 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. */ readonly componentName: 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 external cluster. The name does not have to be unique. */ readonly displayName: string; readonly externalClusterId: 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 system that the cluster 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 directory in which Oracle Grid Infrastructure is installed. */ readonly gridHome: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster. */ readonly id: string; /** * Indicates whether the cluster is Oracle Flex Cluster or not. */ readonly isFlexCluster: boolean; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The list of network address configurations of the external cluster. */ readonly networkConfigurations: outputs.DatabaseManagement.GetExternalClusterNetworkConfiguration[]; /** * The location of the Oracle Cluster Registry (OCR). */ readonly ocrFileLocation: string; /** * The list of Single Client Access Name (SCAN) configurations of the external cluster. */ readonly scanConfigurations: outputs.DatabaseManagement.GetExternalClusterScanConfiguration[]; /** * The current lifecycle state of the external cluster. */ 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 was created. */ readonly timeCreated: string; /** * The date and time the external cluster was last updated. */ readonly timeUpdated: string; /** * The cluster version. */ readonly version: string; /** * The list of Virtual IP (VIP) configurations of the external cluster. */ readonly vipConfigurations: outputs.DatabaseManagement.GetExternalClusterVipConfiguration[]; } /** * This data source provides details about a specific External Cluster resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external cluster specified by `externalClusterId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalCluster = oci.databasemanagement.getExternalCluster({ * externalClusterId: testExternalClusterOciDatabaseManagementExternalCluster.id, * }); * ``` */ export declare function getExternalClusterOutput(args: GetExternalClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalCluster. */ export interface GetExternalClusterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster. */ externalClusterId: pulumi.Input; } //# sourceMappingURL=getExternalCluster.d.ts.map