UNPKG

@pulumi/sumologic

Version:

A Pulumi package for creating and managing sumologic cloud resources.

98 lines (97 loc) 2.98 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a Sumologic_App. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sumologic from "@pulumi/sumologic"; * * const exampleApp = new sumologic.App("example_app", { * uuid: "ceb7fac5-1127-4a04-a5b8-2e49190be3d5", * version: "1.0.1", * parameters: { * k1: "v1", * k2: "v2", * }, * }); * ``` */ export declare class App extends pulumi.CustomResource { /** * Get an existing App 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<pulumi.ID>, state?: AppState, opts?: pulumi.CustomResourceOptions): App; /** * Returns true if the given object is an instance of App. 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 App; /** * Map of additional parameters for the app installation. */ readonly parameters: pulumi.Output<{ [key: string]: string; } | undefined>; /** * UUID of the app to install/uninstall/upgrade. */ readonly uuid: pulumi.Output<string>; /** * Version of the app to install. */ readonly version: pulumi.Output<string>; /** * Create a App 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: AppArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering App resources. */ export interface AppState { /** * Map of additional parameters for the app installation. */ parameters?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * UUID of the app to install/uninstall/upgrade. */ uuid?: pulumi.Input<string>; /** * Version of the app to install. */ version?: pulumi.Input<string>; } /** * The set of arguments for constructing a App resource. */ export interface AppArgs { /** * Map of additional parameters for the app installation. */ parameters?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * UUID of the app to install/uninstall/upgrade. */ uuid: pulumi.Input<string>; /** * Version of the app to install. */ version: pulumi.Input<string>; }