UNPKG

@pulumi/scm

Version:

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

108 lines (107 loc) 3.29 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 device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * The UUID of the HTTP server profile */ id: string; /** * The name of the profile */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getHttpServerProfile. */ export interface GetHttpServerProfileResult { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * Format */ readonly format: outputs.GetHttpServerProfileFormat; /** * The UUID of the HTTP server profile */ readonly id: string; /** * The name of the profile */ readonly name: string; /** * Server */ readonly servers: outputs.GetHttpServerProfileServer[]; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * Register tags on match */ 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 device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * The UUID of the HTTP server profile */ id: pulumi.Input<string>; /** * The name of the profile */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }