UNPKG

@pulumi/scm

Version:

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

192 lines (191 loc) 5.14 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ApplicationFilter data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const scmApplicationFilterDs = scm.getApplicationFilter({ * id: "52ee6475-a99c-42d7-be0a-e251c05e805b", * }); * export const applicationFiltersDataSourceResults = scmApplicationFilterDs; * ``` */ export declare function getApplicationFilter(args: GetApplicationFilterArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationFilterResult>; /** * A collection of arguments for invoking getApplicationFilter. */ export interface GetApplicationFilterArgs { /** * 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; /** * UUID of the resource */ id: string; /** * Alphanumeric string [ 0-9a-zA-Z._-] */ 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 getApplicationFilter. */ export interface GetApplicationFilterResult { /** * Category */ readonly categories: string[]; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * only True is a valid value */ readonly evasive: boolean; /** * only True is a valid value */ readonly excessiveBandwidthUse: boolean; /** * Exclude */ readonly excludes: string[]; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * only True is a valid value */ readonly hasKnownVulnerabilities: boolean; /** * UUID of the resource */ readonly id: string; /** * only True is a valid value */ readonly isSaas: boolean; /** * Alphanumeric string [ 0-9a-zA-Z._-] */ readonly name: string; /** * only True is a valid value */ readonly newAppid: boolean; /** * only True is a valid value */ readonly pervasive: boolean; /** * only True is a valid value */ readonly proneToMisuse: boolean; /** * Risk */ readonly risks: number[]; /** * Saas certifications */ readonly saasCertifications: string[]; /** * Saas risk */ readonly saasRisks: string[]; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * Subcategory */ readonly subcategories: string[]; /** * Tagging */ readonly tagging: outputs.GetApplicationFilterTagging; /** * Technology */ readonly technologies: string[]; readonly tfid: string; /** * only True is a valid value */ readonly transfersFiles: boolean; /** * only True is a valid value */ readonly tunnelsOtherApps: boolean; /** * only True is a valid value */ readonly usedByMalware: boolean; } /** * ApplicationFilter data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const scmApplicationFilterDs = scm.getApplicationFilter({ * id: "52ee6475-a99c-42d7-be0a-e251c05e805b", * }); * export const applicationFiltersDataSourceResults = scmApplicationFilterDs; * ``` */ export declare function getApplicationFilterOutput(args: GetApplicationFilterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationFilterResult>; /** * A collection of arguments for invoking getApplicationFilter. */ export interface GetApplicationFilterOutputArgs { /** * 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>; /** * UUID of the resource */ id: pulumi.Input<string>; /** * Alphanumeric string [ 0-9a-zA-Z._-] */ 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>; }