UNPKG

@pulumi/scm

Version:

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

131 lines (130 loc) 3.61 kB
import * as pulumi from "@pulumi/pulumi"; /** * ProfileGroup data source */ export declare function getProfileGroup(args: GetProfileGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileGroupResult>; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupArgs { /** * 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 profile group */ id: string; /** * The name of the profile group */ 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 getProfileGroup. */ export interface GetProfileGroupResult { /** * Ai security */ readonly aiSecurities: string[]; /** * Data filtering */ readonly dataFilterings: string[]; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * Dns security */ readonly dnsSecurities: string[]; /** * File blocking */ readonly fileBlockings: string[]; /** * 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 profile group */ readonly id: string; /** * The name of the profile group */ readonly name: string; /** * Saas security */ readonly saasSecurities: string[]; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * Spyware */ readonly spywares: string[]; readonly tfid: string; /** * Url filtering */ readonly urlFilterings: string[]; /** * Virus and wildfire analysis */ readonly virusAndWildfireAnalyses: string[]; /** * Vulnerability */ readonly vulnerabilities: string[]; } /** * ProfileGroup data source */ export declare function getProfileGroupOutput(args: GetProfileGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileGroupResult>; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupOutputArgs { /** * 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 profile group */ id: pulumi.Input<string>; /** * The name of the profile group */ 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>; }