UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

60 lines (59 loc) 1.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * HttpServerProfile data source */ export declare function getHttpServerProfile(args: GetHttpServerProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetHttpServerProfileResult>; /** * A collection of arguments for invoking getHttpServerProfile. */ export interface GetHttpServerProfileArgs { /** * The UUID of the HTTP server profile */ id: string; /** * The name of the profile */ name?: string; } /** * A collection of values returned by getHttpServerProfile. */ export interface GetHttpServerProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly format: outputs.GetHttpServerProfileFormat; /** * The UUID of the HTTP server profile */ readonly id: string; /** * The name of the profile */ readonly name: string; readonly servers: outputs.GetHttpServerProfileServer[]; readonly snippet: string; readonly tagRegistration: boolean; readonly tfid: string; } /** * HttpServerProfile data source */ export declare function getHttpServerProfileOutput(args: GetHttpServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHttpServerProfileResult>; /** * A collection of arguments for invoking getHttpServerProfile. */ export interface GetHttpServerProfileOutputArgs { /** * The UUID of the HTTP server profile */ id: pulumi.Input<string>; /** * The name of the profile */ name?: pulumi.Input<string>; }