@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
64 lines (63 loc) • 1.72 kB
TypeScript
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 UUID of the DNS security profile
*/
id: string;
/**
* Profile name
*/
name?: string;
}
/**
* A collection of values returned by getDosProtectionProfile.
*/
export interface GetDosProtectionProfileResult {
/**
* Description
*/
readonly description: string;
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly flood: outputs.GetDosProtectionProfileFlood;
readonly folder: string;
/**
* The UUID of the DNS security profile
*/
readonly id: string;
/**
* Profile name
*/
readonly name: string;
readonly resource: outputs.GetDosProtectionProfileResource;
readonly snippet: string;
readonly tfid: string;
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 UUID of the DNS security profile
*/
id: pulumi.Input<string>;
/**
* Profile name
*/
name?: pulumi.Input<string>;
}