UNPKG

@pulumi/scm

Version:

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

112 lines (111 loc) 3.35 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DosProtectionProfile data source */ export declare function getDosProtectionProfile(args: GetDosProtectionProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetDosProtectionProfileResult>; /** * A collection of arguments for invoking getDosProtectionProfile. */ export interface GetDosProtectionProfileArgs { /** * 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 DNS security profile */ id: string; /** * Profile name */ 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 getDosProtectionProfile. */ export interface GetDosProtectionProfileResult { /** * Description */ readonly description: string; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * Flood */ readonly flood: outputs.GetDosProtectionProfileFlood; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * The UUID of the DNS security profile */ readonly id: string; /** * Profile name */ readonly name: string; /** * Resource */ readonly resource: outputs.GetDosProtectionProfileResource; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; readonly tfid: string; /** * Type */ readonly type: string; } /** * DosProtectionProfile data source */ export declare function getDosProtectionProfileOutput(args: GetDosProtectionProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDosProtectionProfileResult>; /** * A collection of arguments for invoking getDosProtectionProfile. */ export interface GetDosProtectionProfileOutputArgs { /** * 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 DNS security profile */ id: pulumi.Input<string>; /** * Profile name */ 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>; }