UNPKG

@pulumi/scm

Version:

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

62 lines (61 loc) 1.71 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * HttpHeaderProfile data source */ export declare function getHttpHeaderProfile(args: GetHttpHeaderProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetHttpHeaderProfileResult>; /** * A collection of arguments for invoking getHttpHeaderProfile. */ export interface GetHttpHeaderProfileArgs { /** * The UUID of the HTTP header profile */ id: string; /** * The name of the HTTP header profile */ name?: string; } /** * A collection of values returned by getHttpHeaderProfile. */ export interface GetHttpHeaderProfileResult { /** * The description of the HTTP header profile */ readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly httpHeaderInsertions: outputs.GetHttpHeaderProfileHttpHeaderInsertion[]; /** * The UUID of the HTTP header profile */ readonly id: string; /** * The name of the HTTP header profile */ readonly name: string; readonly snippet: string; readonly tfid: string; } /** * HttpHeaderProfile data source */ export declare function getHttpHeaderProfileOutput(args: GetHttpHeaderProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHttpHeaderProfileResult>; /** * A collection of arguments for invoking getHttpHeaderProfile. */ export interface GetHttpHeaderProfileOutputArgs { /** * The UUID of the HTTP header profile */ id: pulumi.Input<string>; /** * The name of the HTTP header profile */ name?: pulumi.Input<string>; }