1. Packages
  2. F5 BIG-IP
  3. API Docs
  4. cm
  5. Device
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

f5bigip.cm.Device

Explore with Pulumi AI

f5bigip logo
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by 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

    import * as pulumi from "@pulumi/pulumi";
    import * as f5bigip from "@pulumi/f5bigip";
    
    const myNewDevice = new f5bigip.cm.Device("myNewDevice", {
        configsyncIp: "2.2.2.2",
        mirrorIp: "10.10.10.10",
        mirrorSecondaryIp: "11.11.11.11",
        name: "bigip300.f5.com",
    });
    
    import pulumi
    import pulumi_f5bigip as f5bigip
    
    my_new_device = f5bigip.cm.Device("myNewDevice",
        configsync_ip="2.2.2.2",
        mirror_ip="10.10.10.10",
        mirror_secondary_ip="11.11.11.11",
        name="bigip300.f5.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/cm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cm.NewDevice(ctx, "myNewDevice", &cm.DeviceArgs{
    			ConfigsyncIp:      pulumi.String("2.2.2.2"),
    			MirrorIp:          pulumi.String("10.10.10.10"),
    			MirrorSecondaryIp: pulumi.String("11.11.11.11"),
    			Name:              pulumi.String("bigip300.f5.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using F5BigIP = Pulumi.F5BigIP;
    
    return await Deployment.RunAsync(() => 
    {
        var myNewDevice = new F5BigIP.CM.Device("myNewDevice", new()
        {
            ConfigsyncIp = "2.2.2.2",
            MirrorIp = "10.10.10.10",
            MirrorSecondaryIp = "11.11.11.11",
            Name = "bigip300.f5.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.f5bigip.cm.Device;
    import com.pulumi.f5bigip.cm.DeviceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myNewDevice = new Device("myNewDevice", DeviceArgs.builder()        
                .configsyncIp("2.2.2.2")
                .mirrorIp("10.10.10.10")
                .mirrorSecondaryIp("11.11.11.11")
                .name("bigip300.f5.com")
                .build());
    
        }
    }
    
    resources:
      myNewDevice:
        type: f5bigip:cm:Device
        properties:
          configsyncIp: 2.2.2.2
          mirrorIp: 10.10.10.10
          mirrorSecondaryIp: 11.11.11.11
          name: bigip300.f5.com
    

    Create Device Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Device(name: string, args: DeviceArgs, opts?: CustomResourceOptions);
    @overload
    def Device(resource_name: str,
               args: DeviceArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Device(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               configsync_ip: Optional[str] = None,
               name: Optional[str] = None,
               mirror_ip: Optional[str] = None,
               mirror_secondary_ip: Optional[str] = None)
    func NewDevice(ctx *Context, name string, args DeviceArgs, opts ...ResourceOption) (*Device, error)
    public Device(string name, DeviceArgs args, CustomResourceOptions? opts = null)
    public Device(String name, DeviceArgs args)
    public Device(String name, DeviceArgs args, CustomResourceOptions options)
    
    type: f5bigip:cm:Device
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DeviceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DeviceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var deviceResource = new F5BigIP.CM.Device("deviceResource", new()
    {
        ConfigsyncIp = "string",
        Name = "string",
        MirrorIp = "string",
        MirrorSecondaryIp = "string",
    });
    
    example, err := cm.NewDevice(ctx, "deviceResource", &cm.DeviceArgs{
    	ConfigsyncIp:      pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	MirrorIp:          pulumi.String("string"),
    	MirrorSecondaryIp: pulumi.String("string"),
    })
    
    var deviceResource = new Device("deviceResource", DeviceArgs.builder()        
        .configsyncIp("string")
        .name("string")
        .mirrorIp("string")
        .mirrorSecondaryIp("string")
        .build());
    
    device_resource = f5bigip.cm.Device("deviceResource",
        configsync_ip="string",
        name="string",
        mirror_ip="string",
        mirror_secondary_ip="string")
    
    const deviceResource = new f5bigip.cm.Device("deviceResource", {
        configsyncIp: "string",
        name: "string",
        mirrorIp: "string",
        mirrorSecondaryIp: "string",
    });
    
    type: f5bigip:cm:Device
    properties:
        configsyncIp: string
        mirrorIp: string
        mirrorSecondaryIp: string
        name: string
    

    Device Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Device resource accepts the following input properties:

    ConfigsyncIp string
    IP address used for config sync
    Name string
    Address of the Device which needs to be Deviceensed
    MirrorIp string
    IP address used for state mirroring
    MirrorSecondaryIp string
    Secondary IP address used for state mirroring
    ConfigsyncIp string
    IP address used for config sync
    Name string
    Address of the Device which needs to be Deviceensed
    MirrorIp string
    IP address used for state mirroring
    MirrorSecondaryIp string
    Secondary IP address used for state mirroring
    configsyncIp String
    IP address used for config sync
    name String
    Address of the Device which needs to be Deviceensed
    mirrorIp String
    IP address used for state mirroring
    mirrorSecondaryIp String
    Secondary IP address used for state mirroring
    configsyncIp string
    IP address used for config sync
    name string
    Address of the Device which needs to be Deviceensed
    mirrorIp string
    IP address used for state mirroring
    mirrorSecondaryIp string
    Secondary IP address used for state mirroring
    configsync_ip str
    IP address used for config sync
    name str
    Address of the Device which needs to be Deviceensed
    mirror_ip str
    IP address used for state mirroring
    mirror_secondary_ip str
    Secondary IP address used for state mirroring
    configsyncIp String
    IP address used for config sync
    name String
    Address of the Device which needs to be Deviceensed
    mirrorIp String
    IP address used for state mirroring
    mirrorSecondaryIp String
    Secondary IP address used for state mirroring

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Device resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Device Resource

    Get an existing Device resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DeviceState, opts?: CustomResourceOptions): Device
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configsync_ip: Optional[str] = None,
            mirror_ip: Optional[str] = None,
            mirror_secondary_ip: Optional[str] = None,
            name: Optional[str] = None) -> Device
    func GetDevice(ctx *Context, name string, id IDInput, state *DeviceState, opts ...ResourceOption) (*Device, error)
    public static Device Get(string name, Input<string> id, DeviceState? state, CustomResourceOptions? opts = null)
    public static Device get(String name, Output<String> id, DeviceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigsyncIp string
    IP address used for config sync
    MirrorIp string
    IP address used for state mirroring
    MirrorSecondaryIp string
    Secondary IP address used for state mirroring
    Name string
    Address of the Device which needs to be Deviceensed
    ConfigsyncIp string
    IP address used for config sync
    MirrorIp string
    IP address used for state mirroring
    MirrorSecondaryIp string
    Secondary IP address used for state mirroring
    Name string
    Address of the Device which needs to be Deviceensed
    configsyncIp String
    IP address used for config sync
    mirrorIp String
    IP address used for state mirroring
    mirrorSecondaryIp String
    Secondary IP address used for state mirroring
    name String
    Address of the Device which needs to be Deviceensed
    configsyncIp string
    IP address used for config sync
    mirrorIp string
    IP address used for state mirroring
    mirrorSecondaryIp string
    Secondary IP address used for state mirroring
    name string
    Address of the Device which needs to be Deviceensed
    configsync_ip str
    IP address used for config sync
    mirror_ip str
    IP address used for state mirroring
    mirror_secondary_ip str
    Secondary IP address used for state mirroring
    name str
    Address of the Device which needs to be Deviceensed
    configsyncIp String
    IP address used for config sync
    mirrorIp String
    IP address used for state mirroring
    mirrorSecondaryIp String
    Secondary IP address used for state mirroring
    name String
    Address of the Device which needs to be Deviceensed

    Package Details

    Repository
    f5 BIG-IP pulumi/pulumi-f5bigip
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the bigip Terraform Provider.
    f5bigip logo
    f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi