import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Cloud Db Home resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud DB home specified by `cloudDbHomeId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbHome = oci.databasemanagement.getCloudDbHome({ * cloudDbHomeId: testCloudDbHomeOciDatabaseManagementCloudDbHome.id, * }); * ``` */ export declare function getCloudDbHome(args: GetCloudDbHomeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudDbHome. */ export interface GetCloudDbHomeArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home. */ cloudDbHomeId: string; } /** * A collection of values returned by getCloudDbHome. */ export interface GetCloudDbHomeResult { /** * The additional details of the DB home defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}` */ readonly additionalDetails: { [key: string]: string; }; readonly cloudDbHomeId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB home 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 DB home. */ readonly componentName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home 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 DB home. 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 location of the DB home. */ readonly homeDirectory: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The current lifecycle state of the cloud DB home. */ 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 DB home was created. */ readonly timeCreated: string; /** * The date and time the cloud DB home was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Cloud Db Home resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud DB home specified by `cloudDbHomeId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbHome = oci.databasemanagement.getCloudDbHome({ * cloudDbHomeId: testCloudDbHomeOciDatabaseManagementCloudDbHome.id, * }); * ``` */ export declare function getCloudDbHomeOutput(args: GetCloudDbHomeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudDbHome. */ export interface GetCloudDbHomeOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home. */ cloudDbHomeId: pulumi.Input; } //# sourceMappingURL=getCloudDbHome.d.ts.map