@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
173 lines • 6.53 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## # f5bigip.GtmMonitorBigip Resource
*
* Provides a BIG-IP GTM (Global Traffic Manager) BIG-IP Monitor resource. This resource allows you to configure and manage GTM BIG-IP monitors on a BIG-IP system.
*
* ## Description
*
* A GTM BIG-IP monitor is both a health and performance monitor that acquires data captured through monitors managed by a BIG-IP Local Traffic Manager.
*
* You can monitor only the following components with a BIG-IP monitor:
*
* * Global Traffic Manager server
* * Global Traffic Manager virtual server
* * Local Traffic Manager server
* * Local Traffic Manager virtual server
*
* ## Example Usage
*
* ### Basic BIG-IP Monitor
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
*
* const example = new f5bigip.GtmMonitorBigip("example", {name: "/Common/my_bigip_monitor"});
* ```
*
* ### Full BIG-IP Monitor Configuration
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
*
* const advanced = new f5bigip.GtmMonitorBigip("advanced", {
* name: "/Common/my_bigip_monitor",
* defaultsFrom: "/Common/bigip",
* destination: "*:*",
* interval: 10,
* timeout: 30,
* ignoreDownResponse: "disabled",
* aggregationType: "average-nodes",
* });
* ```
*
* ## Import
*
* GTM BIG-IP Monitor resources can be imported using the full path name:
*
* ```sh
* $ pulumi import f5bigip:index/gtmMonitorBigip:GtmMonitorBigip example /Common/my_bigip_monitor
* ```
*/
export declare class GtmMonitorBigip extends pulumi.CustomResource {
/**
* Get an existing GtmMonitorBigip 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?: GtmMonitorBigipState, opts?: pulumi.CustomResourceOptions): GtmMonitorBigip;
/**
* Returns true if the given object is an instance of GtmMonitorBigip. 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 GtmMonitorBigip;
/**
* Specifies how the system combines monitor information for a monitored pool. The default is none
*/
readonly aggregationType: pulumi.Output<string | undefined>;
/**
* Inherit properties from this monitor
*/
readonly defaultsFrom: pulumi.Output<string | undefined>;
/**
* Specifies the IP address and service port of the resource that is the destination of this monitor. Format: ip:port. Default is "*:*"
*/
readonly destination: pulumi.Output<string | undefined>;
/**
* Specifies whether the monitor ignores a down response from the system it is monitoring
*/
readonly ignoreDownResponse: pulumi.Output<string | undefined>;
/**
* Specifies, in seconds, the frequency at which the system issues the monitor check
*/
readonly interval: pulumi.Output<number | undefined>;
/**
* Name of the GTM BIG-IP monitor
*/
readonly name: pulumi.Output<string>;
/**
* Specifies the number of seconds the target has in which to respond to the monitor request
*/
readonly timeout: pulumi.Output<number | undefined>;
/**
* Create a GtmMonitorBigip 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: GtmMonitorBigipArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering GtmMonitorBigip resources.
*/
export interface GtmMonitorBigipState {
/**
* Specifies how the system combines monitor information for a monitored pool. The default is none
*/
aggregationType?: pulumi.Input<string | undefined>;
/**
* Inherit properties from this monitor
*/
defaultsFrom?: pulumi.Input<string | undefined>;
/**
* Specifies the IP address and service port of the resource that is the destination of this monitor. Format: ip:port. Default is "*:*"
*/
destination?: pulumi.Input<string | undefined>;
/**
* Specifies whether the monitor ignores a down response from the system it is monitoring
*/
ignoreDownResponse?: pulumi.Input<string | undefined>;
/**
* Specifies, in seconds, the frequency at which the system issues the monitor check
*/
interval?: pulumi.Input<number | undefined>;
/**
* Name of the GTM BIG-IP monitor
*/
name?: pulumi.Input<string | undefined>;
/**
* Specifies the number of seconds the target has in which to respond to the monitor request
*/
timeout?: pulumi.Input<number | undefined>;
}
/**
* The set of arguments for constructing a GtmMonitorBigip resource.
*/
export interface GtmMonitorBigipArgs {
/**
* Specifies how the system combines monitor information for a monitored pool. The default is none
*/
aggregationType?: pulumi.Input<string | undefined>;
/**
* Inherit properties from this monitor
*/
defaultsFrom?: pulumi.Input<string | undefined>;
/**
* Specifies the IP address and service port of the resource that is the destination of this monitor. Format: ip:port. Default is "*:*"
*/
destination?: pulumi.Input<string | undefined>;
/**
* Specifies whether the monitor ignores a down response from the system it is monitoring
*/
ignoreDownResponse?: pulumi.Input<string | undefined>;
/**
* Specifies, in seconds, the frequency at which the system issues the monitor check
*/
interval?: pulumi.Input<number | undefined>;
/**
* Name of the GTM BIG-IP monitor
*/
name: pulumi.Input<string>;
/**
* Specifies the number of seconds the target has in which to respond to the monitor request
*/
timeout?: pulumi.Input<number | undefined>;
}
//# sourceMappingURL=gtmMonitorBigip.d.ts.map