import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Managed Database Group resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details of the Managed Database Group specified by managedDatabaseGroupId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabaseGroup = oci.databasemanagement.getManagedDatabaseGroup({ * managedDatabaseGroupId: testManagedDatabaseGroupOciDatabaseManagementManagedDatabaseGroup.id, * }); * ``` */ export declare function getManagedDatabaseGroup(args: GetManagedDatabaseGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedDatabaseGroup. */ export interface GetManagedDatabaseGroupArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group. */ managedDatabaseGroupId: string; } /** * A collection of values returned by getManagedDatabaseGroup. */ export interface GetManagedDatabaseGroupResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database resides. */ readonly compartmentId: 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 information specified by the user about the Managed Database Group. */ readonly description: 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ readonly id: string; readonly managedDatabaseGroupId: string; /** * A list of Managed Databases in the Managed Database Group. */ readonly managedDatabases: outputs.DatabaseManagement.GetManagedDatabaseGroupManagedDatabase[]; /** * The name of the Managed Database Group. */ readonly name: string; /** * The current lifecycle state of the Managed Database Group. */ 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 Managed Database Group was created. */ readonly timeCreated: string; /** * The date and time the Managed Database Group was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Managed Database Group resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details of the Managed Database Group specified by managedDatabaseGroupId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabaseGroup = oci.databasemanagement.getManagedDatabaseGroup({ * managedDatabaseGroupId: testManagedDatabaseGroupOciDatabaseManagementManagedDatabaseGroup.id, * }); * ``` */ export declare function getManagedDatabaseGroupOutput(args: GetManagedDatabaseGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedDatabaseGroup. */ export interface GetManagedDatabaseGroupOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group. */ managedDatabaseGroupId: pulumi.Input; } //# sourceMappingURL=getManagedDatabaseGroup.d.ts.map