import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Connection Credential Execute Grantee resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a credential execute grantee * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnectionCredentialExecuteGrantee = oci.databasetools.getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee({ * credentialKey: databaseToolsConnectionCredentialExecuteGranteeCredentialKey, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * executeGranteeKey: databaseToolsConnectionCredentialExecuteGranteeExecuteGranteeKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee(args: GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteeArgs { /** * The name of the credential */ credentialKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools connection. */ databaseToolsConnectionId: string; /** * The name of the user granted the EXECUTE privilege on the credential. */ executeGranteeKey: string; } /** * A collection of values returned by getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteeResult { readonly credentialKey: string; readonly databaseToolsConnectionId: string; readonly executeGranteeKey: string; readonly id: string; /** * The name of the user to grant the EXECUTE privilege on the credential. */ readonly key: string; } /** * This data source provides details about a specific Database Tools Connection Credential Execute Grantee resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a credential execute grantee * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnectionCredentialExecuteGrantee = oci.databasetools.getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee({ * credentialKey: databaseToolsConnectionCredentialExecuteGranteeCredentialKey, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * executeGranteeKey: databaseToolsConnectionCredentialExecuteGranteeExecuteGranteeKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsConnectionCredentialExecuteGranteeOutput(args: GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteeOutputArgs { /** * The name of the credential */ credentialKey: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools connection. */ databaseToolsConnectionId: pulumi.Input; /** * The name of the user granted the EXECUTE privilege on the credential. */ executeGranteeKey: pulumi.Input; } //# sourceMappingURL=getRuntimeDatabaseToolsConnectionCredentialExecuteGrantee.d.ts.map