import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Target Database Group Group Member resource in Oracle Cloud Infrastructure Data Safe service. * * Retrieves the members of the target database group with the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetDatabaseGroupGroupMember = oci.datasafe.getTargetDatabaseGroupGroupMember({ * targetDatabaseGroupId: testTargetDatabaseGroup.id, * targetDatabaseId: testTargetDatabase.id, * }); * ``` */ export declare function getTargetDatabaseGroupGroupMember(args: GetTargetDatabaseGroupGroupMemberArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTargetDatabaseGroupGroupMember. */ export interface GetTargetDatabaseGroupGroupMemberArgs { /** * The OCID of the specified target database group. */ targetDatabaseGroupId: string; /** * A filter to return the target database only if it is a member of the target database group. */ targetDatabaseId?: string; } /** * A collection of values returned by getTargetDatabaseGroupGroupMember. */ export interface GetTargetDatabaseGroupGroupMemberResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly targetDatabaseGroupId: string; readonly targetDatabaseId?: string; /** * List of the OCIDs of the target databases which are members of the target database group. */ readonly targetDatabases: string[]; } /** * This data source provides details about a specific Target Database Group Group Member resource in Oracle Cloud Infrastructure Data Safe service. * * Retrieves the members of the target database group with the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetDatabaseGroupGroupMember = oci.datasafe.getTargetDatabaseGroupGroupMember({ * targetDatabaseGroupId: testTargetDatabaseGroup.id, * targetDatabaseId: testTargetDatabase.id, * }); * ``` */ export declare function getTargetDatabaseGroupGroupMemberOutput(args: GetTargetDatabaseGroupGroupMemberOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTargetDatabaseGroupGroupMember. */ export interface GetTargetDatabaseGroupGroupMemberOutputArgs { /** * The OCID of the specified target database group. */ targetDatabaseGroupId: pulumi.Input; /** * A filter to return the target database only if it is a member of the target database group. */ targetDatabaseId?: pulumi.Input; } //# sourceMappingURL=getTargetDatabaseGroupGroupMember.d.ts.map