UNPKG

@pulumi/cloudngfwaws

Version:

A Pulumi package for creating and managing Cloud NGFW for AWS resources.

103 lines (102 loc) 2.34 kB
import * as pulumi from "@pulumi/pulumi"; /** * Data source to retrieve information on a given AppId version. * * ## Admin Permission Type * * * `Rulestack` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudngfwaws from "@pulumi/cloudngfwaws"; * * const example = cloudngfwaws.getAppIdVersion({ * version: "123-456", * }); * ``` */ export declare function getAppIdVersion(args: GetAppIdVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetAppIdVersionResult>; /** * A collection of arguments for invoking getAppIdVersion. */ export interface GetAppIdVersionArgs { /** * Max results. Defaults to `100`. */ maxResults?: number; /** * Pagination token. */ token?: string; /** * The AppId version. */ version: string; } /** * A collection of values returned by getAppIdVersion. */ export interface GetAppIdVersionResult { /** * List of applications. */ readonly applications: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Max results. Defaults to `100`. */ readonly maxResults?: number; /** * Token for the next page of results. */ readonly nextToken: string; /** * Pagination token. */ readonly token?: string; /** * The AppId version. */ readonly version: string; } /** * Data source to retrieve information on a given AppId version. * * ## Admin Permission Type * * * `Rulestack` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudngfwaws from "@pulumi/cloudngfwaws"; * * const example = cloudngfwaws.getAppIdVersion({ * version: "123-456", * }); * ``` */ export declare function getAppIdVersionOutput(args: GetAppIdVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppIdVersionResult>; /** * A collection of arguments for invoking getAppIdVersion. */ export interface GetAppIdVersionOutputArgs { /** * Max results. Defaults to `100`. */ maxResults?: pulumi.Input<number>; /** * Pagination token. */ token?: pulumi.Input<string>; /** * The AppId version. */ version: pulumi.Input<string>; }