import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getStagingIps(args: GetStagingIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStagingIps. */ export interface GetStagingIpsArgs { /** * Alphanumeric string identifying the service. */ serviceId: string; /** * Integer identifying a service version. */ serviceVersion: number; } /** * A collection of values returned by getStagingIps. */ export interface GetStagingIpsResult { /** * List of domains with their staging IP addresses. */ readonly domains: outputs.GetStagingIpsDomain[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Alphanumeric string identifying the service. */ readonly serviceId: string; /** * Integer identifying a service version. */ readonly serviceVersion: number; } export declare function getStagingIpsOutput(args: GetStagingIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStagingIps. */ export interface GetStagingIpsOutputArgs { /** * Alphanumeric string identifying the service. */ serviceId: pulumi.Input; /** * Integer identifying a service version. */ serviceVersion: pulumi.Input; } //# sourceMappingURL=getStagingIps.d.ts.map