import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * InterfaceManagementProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const singleProfileById = scm.getInterfaceManagementProfile({ * id: "f4358615-daba-4b71-a0ea-bd3ebb412fe3", * }); * export const fetchedProfileName = singleProfileById.then(singleProfileById => singleProfileById.name); * export const fetchedProfile = singleProfileById; * ``` */ export declare function getInterfaceManagementProfile(args: GetInterfaceManagementProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfaceManagementProfile. */ export interface GetInterfaceManagementProfileArgs { /** * 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 getInterfaceManagementProfile. */ export interface GetInterfaceManagementProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly http: boolean; readonly httpOcsp: boolean; readonly https: boolean; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly permittedIps: outputs.GetInterfaceManagementProfilePermittedIp[]; readonly ping: boolean; readonly responsePages: boolean; readonly snippet: string; readonly ssh: boolean; readonly telnet: boolean; readonly tfid: string; readonly useridService: boolean; readonly useridSyslogListenerSsl: boolean; readonly useridSyslogListenerUdp: boolean; } /** * InterfaceManagementProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const singleProfileById = scm.getInterfaceManagementProfile({ * id: "f4358615-daba-4b71-a0ea-bd3ebb412fe3", * }); * export const fetchedProfileName = singleProfileById.then(singleProfileById => singleProfileById.name); * export const fetchedProfile = singleProfileById; * ``` */ export declare function getInterfaceManagementProfileOutput(args: GetInterfaceManagementProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfaceManagementProfile. */ export interface GetInterfaceManagementProfileOutputArgs { /** * 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=getInterfaceManagementProfile.d.ts.map