import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Database Tools Connection Credential Execute Grantees in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a list of all execute grantees * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnectionCredentialExecuteGrantees = oci.databasetools.getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees({ * credentialKey: databaseToolsConnectionCredentialExecuteGranteeCredentialKey, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * }); * ``` */ export declare function getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees(args: GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesArgs { /** * 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; filters?: inputs.DatabaseTools.GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesFilter[]; } /** * A collection of values returned by getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesResult { /** * The list of credential_execute_grantee_collection. */ readonly credentialExecuteGranteeCollections: outputs.DatabaseTools.GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesCredentialExecuteGranteeCollection[]; readonly credentialKey: string; readonly databaseToolsConnectionId: string; readonly filters?: outputs.DatabaseTools.GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Database Tools Connection Credential Execute Grantees in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a list of all execute grantees * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsConnectionCredentialExecuteGrantees = oci.databasetools.getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees({ * credentialKey: databaseToolsConnectionCredentialExecuteGranteeCredentialKey, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * }); * ``` */ export declare function getRuntimeDatabaseToolsConnectionCredentialExecuteGranteesOutput(args: GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees. */ export interface GetRuntimeDatabaseToolsConnectionCredentialExecuteGranteesOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getRuntimeDatabaseToolsConnectionCredentialExecuteGrantees.d.ts.map