Show / Hide Table of Contents

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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
Device
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.F5BigIP.CM
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Device : CustomResource

Constructors

View Source

Device(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 Source

ConfigsyncIp

IP address used for config sync

Declaration
public Output<string> ConfigsyncIp { get; }
Property Value
Type Description
Output<System.String>
View Source

MirrorIp

IP address used for state mirroring

Declaration
public Output<string> MirrorIp { get; }
Property Value
Type Description
Output<System.String>
View Source

MirrorSecondaryIp

Secondary IP address used for state mirroring

Declaration
public Output<string> MirrorSecondaryIp { get; }
Property Value
Type Description
Output<System.String>
View Source

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 Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.