import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::IAM::AllowedIpAddress */ export declare function getAllowedIpAddress(args: GetAllowedIpAddressArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAllowedIpAddress. */ export interface GetAllowedIpAddressArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getAllowedIpAddress. */ export interface GetAllowedIpAddressResult { /** * Enable IP allowlist */ readonly enableIpList: boolean; /** * Uniquely identifies the resource. */ readonly id: string; /** * IP allowlist list */ readonly ipLists: outputs.iam.GetAllowedIpAddressIpList[]; /** * IP allowlist quota for current identity */ readonly quota: number; /** * Sub-user ID */ readonly userId: string; } /** * Data Source schema for Volcengine::IAM::AllowedIpAddress */ export declare function getAllowedIpAddressOutput(args: GetAllowedIpAddressOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAllowedIpAddress. */ export interface GetAllowedIpAddressOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }