UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

103 lines (102 loc) 3.35 kB
import * as pulumi from "@pulumi/pulumi"; /** * `f5bigip.cm.Device` provides details about a specific bigip * * This resource is helpful when configuring the BIG-IP device in cluster or in HA mode. * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * * const myNewDevice = new f5bigip.cm.Device("my_new_device", { * name: "bigip300.f5.com", * configsyncIp: "2.2.2.2", * mirrorIp: "10.10.10.10", * mirrorSecondaryIp: "11.11.11.11", * }); * ``` */ export declare class Device extends pulumi.CustomResource { /** * Get an existing Device 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?: DeviceState, opts?: pulumi.CustomResourceOptions): Device; /** * Returns true if the given object is an instance of Device. 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 Device; /** * IP address used for config sync */ readonly configsyncIp: pulumi.Output<string>; /** * IP address used for state mirroring */ readonly mirrorIp: pulumi.Output<string | undefined>; /** * Secondary IP address used for state mirroring */ readonly mirrorSecondaryIp: pulumi.Output<string | undefined>; /** * Address of the Device which needs to be Deviceensed */ readonly name: pulumi.Output<string>; /** * Create a Device 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: DeviceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Device resources. */ export interface DeviceState { /** * IP address used for config sync */ configsyncIp?: pulumi.Input<string>; /** * IP address used for state mirroring */ mirrorIp?: pulumi.Input<string>; /** * Secondary IP address used for state mirroring */ mirrorSecondaryIp?: pulumi.Input<string>; /** * Address of the Device which needs to be Deviceensed */ name?: pulumi.Input<string>; } /** * The set of arguments for constructing a Device resource. */ export interface DeviceArgs { /** * IP address used for config sync */ configsyncIp: pulumi.Input<string>; /** * IP address used for state mirroring */ mirrorIp?: pulumi.Input<string>; /** * Secondary IP address used for state mirroring */ mirrorSecondaryIp?: pulumi.Input<string>; /** * Address of the Device which needs to be Deviceensed */ name: pulumi.Input<string>; }