import * as pulumi from "@pulumi/pulumi"; /** * ForwardingProfileSourceApplication resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Basic forwarding profile source application * const exampleBasic = new scm.ForwardingProfileSourceApplication("example_basic", { * folder: "Mobile Users", * name: "example-source-app", * applications: [ * "ssl", * "web-browsing", * ], * }); * // Forwarding profile source application with description * const exampleWithDesc = new scm.ForwardingProfileSourceApplication("example_with_desc", { * folder: "Mobile Users", * name: "example-source-app-detailed", * description: "Managed by Terraform - Source application profile for mobile users", * applications: [ * "ssl", * "web-browsing", * "dns", * "ntp", * ], * }); * // Forwarding profile source application with multiple applications * const exampleMultiApps = new scm.ForwardingProfileSourceApplication("example_multi_apps", { * folder: "Mobile Users", * name: "corp-mobile-apps", * description: "Corporate mobile applications profile", * applications: [ * "ssl", * "web-browsing", * "dns", * "ssh", * "ping", * "office365-consumer-access", * "google-base", * ], * }); * ``` * * ## Import * * The following command can be used to import a resource not managed by Terraform: * * ```sh * $ pulumi import scm:index/forwardingProfileSourceApplication:ForwardingProfileSourceApplication example folder:::id * ``` * * or * * ```sh * $ pulumi import scm:index/forwardingProfileSourceApplication:ForwardingProfileSourceApplication example :snippet::id * ``` * * or * * ```sh * $ pulumi import scm:index/forwardingProfileSourceApplication:ForwardingProfileSourceApplication example ::device:id * ``` * * **Note:** Please provide just one of folder, snippet, or device for the import command. */ export declare class ForwardingProfileSourceApplication extends pulumi.CustomResource { /** * Get an existing ForwardingProfileSourceApplication resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ForwardingProfileSourceApplicationState, opts?: pulumi.CustomResourceOptions): ForwardingProfileSourceApplication; /** * Returns true if the given object is an instance of ForwardingProfileSourceApplication. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ForwardingProfileSourceApplication; /** * List of application names to be included in this source application profile */ readonly applications: pulumi.Output; /** * fowarding profile source application description */ readonly description: pulumi.Output; /** * The folder in which the resource is defined */ readonly folder: pulumi.Output; /** * The unique name identifying the source application. Must be alphanumeric with allowed characters [0-9a-zA-Z._-] */ readonly name: pulumi.Output; /** * The Terraform ID. */ readonly tfid: pulumi.Output; /** * Create a ForwardingProfileSourceApplication resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ForwardingProfileSourceApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ForwardingProfileSourceApplication resources. */ export interface ForwardingProfileSourceApplicationState { /** * List of application names to be included in this source application profile */ applications?: pulumi.Input[] | undefined>; /** * fowarding profile source application description */ description?: pulumi.Input; /** * The folder in which the resource is defined */ folder?: pulumi.Input; /** * The unique name identifying the source application. Must be alphanumeric with allowed characters [0-9a-zA-Z._-] */ name?: pulumi.Input; /** * The Terraform ID. */ tfid?: pulumi.Input; } /** * The set of arguments for constructing a ForwardingProfileSourceApplication resource. */ export interface ForwardingProfileSourceApplicationArgs { /** * List of application names to be included in this source application profile */ applications: pulumi.Input[]>; /** * fowarding profile source application description */ description?: pulumi.Input; /** * The folder in which the resource is defined */ folder?: pulumi.Input; /** * The unique name identifying the source application. Must be alphanumeric with allowed characters [0-9a-zA-Z._-] */ name?: pulumi.Input; } //# sourceMappingURL=forwardingProfileSourceApplication.d.ts.map