UNPKG

@pulumi/fastly

Version:

A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4

40 lines (39 loc) 1.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getNgwafThresholds(args: GetNgwafThresholdsArgs, opts?: pulumi.InvokeOptions): Promise<GetNgwafThresholdsResult>; /** * A collection of arguments for invoking getNgwafThresholds. */ export interface GetNgwafThresholdsArgs { /** * The ID of the workspace. */ workspaceId: string; } /** * A collection of values returned by getNgwafThresholds. */ export interface GetNgwafThresholdsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of all thresholds for a given workspace. */ readonly thresholds: outputs.GetNgwafThresholdsThreshold[]; /** * The ID of the workspace. */ readonly workspaceId: string; } export declare function getNgwafThresholdsOutput(args: GetNgwafThresholdsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNgwafThresholdsResult>; /** * A collection of arguments for invoking getNgwafThresholds. */ export interface GetNgwafThresholdsOutputArgs { /** * The ID of the workspace. */ workspaceId: pulumi.Input<string>; }