import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cloud Cluster resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud cluster specified by `cloudClusterId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudCluster = oci.databasemanagement.getCloudCluster({ * cloudClusterId: testCloudClusterOciDatabaseManagementCloudCluster.id, * }); * ``` */ export declare function getCloudCluster(args: GetCloudClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudCluster. */ export interface GetCloudClusterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud cluster. */ cloudClusterId: string; } /** * A collection of values returned by getCloudCluster. */ export interface GetCloudClusterResult { /** * The additional details of the cloud cluster defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}` */ readonly additionalDetails: { [key: string]: string; }; readonly cloudClusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector. */ readonly cloudConnectorId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the cluster is a part of. */ readonly cloudDbSystemId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The name of the cloud cluster. */ readonly componentName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) in DBaas service. */ readonly dbaasId: 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 cloud cluster. The name does not have to be unique. */ readonly displayName: 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 cloud 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 cloud cluster. */ readonly networkConfigurations: outputs.DatabaseManagement.GetCloudClusterNetworkConfiguration[]; /** * The location of the Oracle Cluster Registry (OCR). */ readonly ocrFileLocation: string; /** * The list of Single Client Access Name (SCAN) configurations of the cloud cluster. */ readonly scanConfigurations: outputs.DatabaseManagement.GetCloudClusterScanConfiguration[]; /** * The current lifecycle state of the cloud 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 cloud cluster was created. */ readonly timeCreated: string; /** * The date and time the cloud cluster was last updated. */ readonly timeUpdated: string; /** * The cluster version. */ readonly version: string; /** * The list of Virtual IP (VIP) configurations of the cloud cluster. */ readonly vipConfigurations: outputs.DatabaseManagement.GetCloudClusterVipConfiguration[]; } /** * This data source provides details about a specific Cloud Cluster resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud cluster specified by `cloudClusterId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudCluster = oci.databasemanagement.getCloudCluster({ * cloudClusterId: testCloudClusterOciDatabaseManagementCloudCluster.id, * }); * ``` */ export declare function getCloudClusterOutput(args: GetCloudClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudCluster. */ export interface GetCloudClusterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud cluster. */ cloudClusterId: pulumi.Input; } //# sourceMappingURL=getCloudCluster.d.ts.map