@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
103 lines (102 loc) • 3.9 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* `f5bigip.FastApplication` This resource will create and manage FAST applications on BIG-IP from provided JSON declaration.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
* import * as std from "@pulumi/std";
*
* const foo_app = new f5bigip.FastApplication("foo-app", {
* template: "examples/simple_http",
* fastJson: std.file({
* input: "new_fast_app.json",
* }).then(invoke => invoke.result),
* });
* ```
*/
export declare class FastApplication extends pulumi.CustomResource {
/**
* Get an existing FastApplication 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?: FastApplicationState, opts?: pulumi.CustomResourceOptions): FastApplication;
/**
* Returns true if the given object is an instance of FastApplication. 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 FastApplication;
/**
* A FAST application name.
*
*
*
* * `FAST documentation` - https://clouddocs.f5.com/products/extensions/f5-appsvcs-templates/latest/
*/
readonly application: pulumi.Output<string>;
/**
* Path/Filename of Declarative FAST JSON which is a json file used with builtin ```file``` function
*/
readonly fastJson: pulumi.Output<string>;
/**
* Name of installed FAST template used to create FAST application. This parameter is required when creating new resource.
*/
readonly template: pulumi.Output<string | undefined>;
/**
* A FAST tenant name on which you want to manage application.
*/
readonly tenant: pulumi.Output<string>;
/**
* Create a FastApplication 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: FastApplicationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering FastApplication resources.
*/
export interface FastApplicationState {
/**
* A FAST application name.
*
*
*
* * `FAST documentation` - https://clouddocs.f5.com/products/extensions/f5-appsvcs-templates/latest/
*/
application?: pulumi.Input<string>;
/**
* Path/Filename of Declarative FAST JSON which is a json file used with builtin ```file``` function
*/
fastJson?: pulumi.Input<string>;
/**
* Name of installed FAST template used to create FAST application. This parameter is required when creating new resource.
*/
template?: pulumi.Input<string>;
/**
* A FAST tenant name on which you want to manage application.
*/
tenant?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a FastApplication resource.
*/
export interface FastApplicationArgs {
/**
* Path/Filename of Declarative FAST JSON which is a json file used with builtin ```file``` function
*/
fastJson: pulumi.Input<string>;
/**
* Name of installed FAST template used to create FAST application. This parameter is required when creating new resource.
*/
template?: pulumi.Input<string>;
}