import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific External Db Node resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external DB node specified by `externalDbNodeId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbNode = oci.databasemanagement.getExternalDbNode({ * externalDbNodeId: testExternalDbNodeOciDatabaseManagementExternalDbNode.id, * }); * ``` */ export declare function getExternalDbNode(args: GetExternalDbNodeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalDbNode. */ export interface GetExternalDbNodeArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database node. */ externalDbNodeId: string; } /** * A collection of values returned by getExternalDbNode. */ export interface GetExternalDbNodeResult { /** * The additional details of the external DB node 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 DB node. */ readonly componentName: string; /** * The number of CPU cores available on the DB node. */ readonly cpuCoreCount: number; /** * 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 DB node. The name does not have to be unique. */ readonly displayName: string; /** * Name of the domain. */ readonly domainName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external connector. */ readonly externalConnectorId: string; readonly externalDbNodeId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system that the DB node 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 host name for the DB node. */ readonly hostName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB node. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The total memory in gigabytes (GB) on the DB node. */ readonly memorySizeInGbs: number; /** * The current lifecycle state of the external DB node. */ 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 DB node was created. */ readonly timeCreated: string; /** * The date and time the external DB node was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific External Db Node resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the external DB node specified by `externalDbNodeId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbNode = oci.databasemanagement.getExternalDbNode({ * externalDbNodeId: testExternalDbNodeOciDatabaseManagementExternalDbNode.id, * }); * ``` */ export declare function getExternalDbNodeOutput(args: GetExternalDbNodeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalDbNode. */ export interface GetExternalDbNodeOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database node. */ externalDbNodeId: pulumi.Input; } //# sourceMappingURL=getExternalDbNode.d.ts.map