import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * IkeGateway data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Data source to retrieve a single IKE Gateway by its ID. * // Replace the placeholder ID with the actual UUID of the gateway you want to fetch. * const exampleSingularIkeGatewayDs = scm.getIkeGateway({ * id: "1ba42513-2985-4783-8bdf-c83cf20d6dd1", * }); * export const ikeGatewaySingularExample = exampleSingularIkeGatewayDs; * ``` */ export declare function getIkeGateway(args: GetIkeGatewayArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIkeGateway. */ export interface GetIkeGatewayArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getIkeGateway. */ export interface GetIkeGatewayResult { readonly authentication: outputs.GetIkeGatewayAuthentication; /** * The device in which the resource is defined */ readonly device: string; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly localAddress: outputs.GetIkeGatewayLocalAddress; readonly localId: outputs.GetIkeGatewayLocalId; readonly name: string; readonly peerAddress: outputs.GetIkeGatewayPeerAddress; readonly peerId: outputs.GetIkeGatewayPeerId; readonly protocol: outputs.GetIkeGatewayProtocol; readonly protocolCommon: outputs.GetIkeGatewayProtocolCommon; readonly snippet: string; readonly tfid: string; } /** * IkeGateway data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Data source to retrieve a single IKE Gateway by its ID. * // Replace the placeholder ID with the actual UUID of the gateway you want to fetch. * const exampleSingularIkeGatewayDs = scm.getIkeGateway({ * id: "1ba42513-2985-4783-8bdf-c83cf20d6dd1", * }); * export const ikeGatewaySingularExample = exampleSingularIkeGatewayDs; * ``` */ export declare function getIkeGatewayOutput(args: GetIkeGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIkeGateway. */ export interface GetIkeGatewayOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getIkeGateway.d.ts.map