Class Device
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
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var myNewDevice = new F5BigIP.CM.Device("myNewDevice", new F5BigIP.CM.DeviceArgs
{
ConfigsyncIp = "2.2.2.2",
MirrorIp = "10.10.10.10",
MirrorSecondaryIp = "11.11.11.11",
Name = "bigip300.f5.com",
});
}
}
Inherited Members
Namespace: Pulumi.F5BigIP.CM
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Device : CustomResource
Constructors
View SourceDevice(String, DeviceArgs, CustomResourceOptions)
Create a Device resource with the given unique name, arguments, and options.
Declaration
public Device(string name, DeviceArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| DeviceArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceConfigsyncIp
IP address used for config sync
Declaration
public Output<string> ConfigsyncIp { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
MirrorIp
IP address used for state mirroring
Declaration
public Output<string> MirrorIp { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
MirrorSecondaryIp
Secondary IP address used for state mirroring
Declaration
public Output<string> MirrorSecondaryIp { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Name
Address of the Device which needs to be Deviceensed
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, DeviceState, CustomResourceOptions)
Get an existing Device resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Device Get(string name, Input<string> id, DeviceState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| DeviceState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Device |