UNPKG

@pulumi/scm

Version:

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

96 lines (95 loc) 2.22 kB
import * as pulumi from "@pulumi/pulumi"; /** * Retrieves a config item. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const example = scm.getProfileGroup({ * id: "1234-56-789", * }); * ``` */ export declare function getProfileGroup(args: GetProfileGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileGroupResult>; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupArgs { /** * The Id param. */ id: string; } /** * A collection of values returned by getProfileGroup. */ export interface GetProfileGroupResult { /** * List of AI security profiles. */ readonly aiSecurities: string[]; /** * List of DNS security profiles. */ readonly dnsSecurities: string[]; /** * List of file blocking profiles. */ readonly fileBlockings: string[]; /** * The Id param. */ readonly id: string; /** * The name of the profile group. */ readonly name: string; /** * List of HTTP header insertion profiles. */ readonly saasSecurities: string[]; /** * List of anti-spyware profiles. */ readonly spywares: string[]; readonly tfid: string; /** * List of URL filtering profiles. */ readonly urlFilterings: string[]; /** * List of anti-virus and Wildfire analysis profiles. */ readonly virusAndWildfireAnalyses: string[]; /** * List of vulnerability protection profiles. */ readonly vulnerabilities: string[]; } /** * Retrieves a config item. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const example = scm.getProfileGroup({ * id: "1234-56-789", * }); * ``` */ export declare function getProfileGroupOutput(args: GetProfileGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileGroupResult>; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupOutputArgs { /** * The Id param. */ id: pulumi.Input<string>; }