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.67 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * SdwanErrorCorrectionProfile data source */ export declare function getSdwanErrorCorrectionProfile(args: GetSdwanErrorCorrectionProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetSdwanErrorCorrectionProfileResult>; /** * A collection of arguments for invoking getSdwanErrorCorrectionProfile. */ export interface GetSdwanErrorCorrectionProfileArgs { /** * UUID of the resource */ id: string; /** * Name */ name?: string; } /** * A collection of values returned by getSdwanErrorCorrectionProfile. */ export interface GetSdwanErrorCorrectionProfileResult { /** * Activation threshold */ readonly activationThreshold: number; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly mode: outputs.GetSdwanErrorCorrectionProfileMode; /** * Name */ readonly name: string; readonly snippet: string; readonly tfid: string; } /** * SdwanErrorCorrectionProfile data source */ export declare function getSdwanErrorCorrectionProfileOutput(args: GetSdwanErrorCorrectionProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSdwanErrorCorrectionProfileResult>; /** * A collection of arguments for invoking getSdwanErrorCorrectionProfile. */ export interface GetSdwanErrorCorrectionProfileOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * Name */ name?: pulumi.Input<string>; }