UNPKG

@pulumi/scm

Version:

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

51 lines (50 loc) 1.69 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Retrieves a listing of config items. */ export declare function getZoneProtectionProfileList(args?: GetZoneProtectionProfileListArgs, opts?: pulumi.InvokeOptions): Promise<GetZoneProtectionProfileListResult>; /** * A collection of arguments for invoking getZoneProtectionProfileList. */ export interface GetZoneProtectionProfileListArgs { device?: string; folder?: string; limit?: number; name?: string; offset?: number; snippet?: string; } /** * A collection of values returned by getZoneProtectionProfileList. */ export interface GetZoneProtectionProfileListResult { readonly datas: outputs.GetZoneProtectionProfileListData[]; readonly device?: string; readonly folder?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly limit?: number; readonly name?: string; readonly offset?: number; readonly snippet?: string; readonly tfid: string; readonly total: number; } /** * Retrieves a listing of config items. */ export declare function getZoneProtectionProfileListOutput(args?: GetZoneProtectionProfileListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetZoneProtectionProfileListResult>; /** * A collection of arguments for invoking getZoneProtectionProfileList. */ export interface GetZoneProtectionProfileListOutputArgs { device?: pulumi.Input<string>; folder?: pulumi.Input<string>; limit?: pulumi.Input<number>; name?: pulumi.Input<string>; offset?: pulumi.Input<number>; snippet?: pulumi.Input<string>; }