UNPKG

@pulumi/scm

Version:

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

71 lines (70 loc) 1.8 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 UUID of the profile group */ id: string; /** * The name of the profile group */ name?: 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 */ readonly device: string; readonly dnsSecurities: string[]; readonly fileBlockings: string[]; readonly folder: string; /** * The UUID of the profile group */ readonly id: string; /** * The name of the profile group */ readonly name: string; readonly saasSecurities: string[]; readonly snippet: string; readonly spywares: string[]; readonly tfid: string; readonly urlFilterings: string[]; readonly virusAndWildfireAnalyses: string[]; 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 UUID of the profile group */ id: pulumi.Input<string>; /** * The name of the profile group */ name?: pulumi.Input<string>; }