import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Gets information about the Database Instance network Access Control List. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myAcl = scaleway.getRdbAcl({ * instanceId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getRdbAcl(args: GetRdbAclArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRdbAcl. */ export interface GetRdbAclArgs { /** * The RDB instance ID. */ instanceId: string; /** * `region`) The region in which the Database Instance should be created. */ region?: string; } /** * A collection of values returned by getRdbAcl. */ export interface GetRdbAclResult { /** * A list of ACLs rules (structure is described below) */ readonly aclRules: outputs.GetRdbAclAclRule[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly instanceId: string; readonly region?: string; } /** * Gets information about the Database Instance network Access Control List. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myAcl = scaleway.getRdbAcl({ * instanceId: "11111111-1111-1111-1111-111111111111", * }); * ``` */ export declare function getRdbAclOutput(args: GetRdbAclOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRdbAcl. */ export interface GetRdbAclOutputArgs { /** * The RDB instance ID. */ instanceId: pulumi.Input; /** * `region`) The region in which the Database Instance should be created. */ region?: pulumi.Input; }