import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * AggregateInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up aggregate interface by its ID. * const scmAggregateInterfaceDs = scm.getAggregateInterface({ * id: "ddad1e64-0b64-41a4-b361-c6199761a8f1", * }); * export const aggregateInterfaceDataSourceResults = { * id: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.id), * name: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.name), * comment: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.comment), * layer3: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.layer3), * folder: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.folder), * }; * ``` */ export declare function getAggregateInterface(args: GetAggregateInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAggregateInterface. */ export interface GetAggregateInterfaceArgs { /** * 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 getAggregateInterface. */ export interface GetAggregateInterfaceResult { readonly comment: string; readonly defaultValue: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly layer2: outputs.GetAggregateInterfaceLayer2; readonly layer3: outputs.GetAggregateInterfaceLayer3; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * AggregateInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up aggregate interface by its ID. * const scmAggregateInterfaceDs = scm.getAggregateInterface({ * id: "ddad1e64-0b64-41a4-b361-c6199761a8f1", * }); * export const aggregateInterfaceDataSourceResults = { * id: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.id), * name: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.name), * comment: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.comment), * layer3: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.layer3), * folder: scmAggregateInterfaceDs.then(scmAggregateInterfaceDs => scmAggregateInterfaceDs.folder), * }; * ``` */ export declare function getAggregateInterfaceOutput(args: GetAggregateInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAggregateInterface. */ export interface GetAggregateInterfaceOutputArgs { /** * 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=getAggregateInterface.d.ts.map