UNPKG

@pulumi/scm

Version:

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

80 lines (79 loc) 2.1 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DosProtectionRule data source */ export declare function getDosProtectionRule(args: GetDosProtectionRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetDosProtectionRuleResult>; /** * A collection of arguments for invoking getDosProtectionRule. */ export interface GetDosProtectionRuleArgs { /** * The UUID of the DNS security profile */ id: string; /** * Rule name */ name?: string; } /** * A collection of values returned by getDosProtectionRule. */ export interface GetDosProtectionRuleResult { /** * The action to take on rule match */ readonly action: outputs.GetDosProtectionRuleAction; /** * Description */ readonly description: string; /** * List of destination addresses */ readonly destinations: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly disabled: boolean; readonly folder: string; readonly froms: string[]; /** * The UUID of the DNS security profile */ readonly id: string; readonly logSetting: string; /** * Rule name */ readonly name: string; readonly position: string; readonly protection: outputs.GetDosProtectionRuleProtection; readonly schedule: string; readonly services: string[]; readonly snippet: string; readonly sourceUsers: string[]; readonly sources: string[]; readonly tags: string[]; readonly tfid: string; readonly tos: string[]; } /** * DosProtectionRule data source */ export declare function getDosProtectionRuleOutput(args: GetDosProtectionRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDosProtectionRuleResult>; /** * A collection of arguments for invoking getDosProtectionRule. */ export interface GetDosProtectionRuleOutputArgs { /** * The UUID of the DNS security profile */ id: pulumi.Input<string>; /** * Rule name */ name?: pulumi.Input<string>; }