1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystemHaPeer
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.SystemHaPeer

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Peer.

    This resource is a sub resource for variable peer of resource fortimanager.SystemHa. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemHaPeer("trname", {
        fosid: 1,
        ip: "11.11.11.5",
        serialNumber: "FMG-VM0000000003",
        status: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemHaPeer("trname",
        fosid=1,
        ip="11.11.11.5",
        serial_number="FMG-VM0000000003",
        status="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewSystemHaPeer(ctx, "trname", &fortimanager.SystemHaPeerArgs{
    			Fosid:        pulumi.Float64(1),
    			Ip:           pulumi.String("11.11.11.5"),
    			SerialNumber: pulumi.String("FMG-VM0000000003"),
    			Status:       pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.SystemHaPeer("trname", new()
        {
            Fosid = 1,
            Ip = "11.11.11.5",
            SerialNumber = "FMG-VM0000000003",
            Status = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemHaPeer;
    import com.pulumi.fortimanager.SystemHaPeerArgs;
    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 trname = new SystemHaPeer("trname", SystemHaPeerArgs.builder()
                .fosid("1")
                .ip("11.11.11.5")
                .serialNumber("FMG-VM0000000003")
                .status("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemHaPeer
        properties:
          fosid: '1'
          ip: 11.11.11.5
          serialNumber: FMG-VM0000000003
          status: enable
    

    Create SystemHaPeer Resource

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

    Constructor syntax

    new SystemHaPeer(name: string, args?: SystemHaPeerArgs, opts?: CustomResourceOptions);
    @overload
    def SystemHaPeer(resource_name: str,
                     args: Optional[SystemHaPeerInitArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemHaPeer(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     fosid: Optional[float] = None,
                     ip: Optional[str] = None,
                     ip6: Optional[str] = None,
                     serial_number: Optional[str] = None,
                     status: Optional[str] = None,
                     system_ha_peer_id: Optional[str] = None)
    func NewSystemHaPeer(ctx *Context, name string, args *SystemHaPeerArgs, opts ...ResourceOption) (*SystemHaPeer, error)
    public SystemHaPeer(string name, SystemHaPeerArgs? args = null, CustomResourceOptions? opts = null)
    public SystemHaPeer(String name, SystemHaPeerArgs args)
    public SystemHaPeer(String name, SystemHaPeerArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemHaPeer
    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 SystemHaPeerArgs
    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 SystemHaPeerInitArgs
    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 SystemHaPeerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemHaPeerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemHaPeerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var systemHaPeerResource = new Fortimanager.SystemHaPeer("systemHaPeerResource", new()
    {
        Fosid = 0,
        Ip = "string",
        Ip6 = "string",
        SerialNumber = "string",
        Status = "string",
        SystemHaPeerId = "string",
    });
    
    example, err := fortimanager.NewSystemHaPeer(ctx, "systemHaPeerResource", &fortimanager.SystemHaPeerArgs{
    Fosid: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    SerialNumber: pulumi.String("string"),
    Status: pulumi.String("string"),
    SystemHaPeerId: pulumi.String("string"),
    })
    
    var systemHaPeerResource = new SystemHaPeer("systemHaPeerResource", SystemHaPeerArgs.builder()
        .fosid(0)
        .ip("string")
        .ip6("string")
        .serialNumber("string")
        .status("string")
        .systemHaPeerId("string")
        .build());
    
    system_ha_peer_resource = fortimanager.SystemHaPeer("systemHaPeerResource",
        fosid=0,
        ip="string",
        ip6="string",
        serial_number="string",
        status="string",
        system_ha_peer_id="string")
    
    const systemHaPeerResource = new fortimanager.SystemHaPeer("systemHaPeerResource", {
        fosid: 0,
        ip: "string",
        ip6: "string",
        serialNumber: "string",
        status: "string",
        systemHaPeerId: "string",
    });
    
    type: fortimanager:SystemHaPeer
    properties:
        fosid: 0
        ip: string
        ip6: string
        serialNumber: string
        status: string
        systemHaPeerId: string
    

    SystemHaPeer Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SystemHaPeer resource accepts the following input properties:

    Fosid double
    Id.
    Ip string
    IP address of peer.
    Ip6 string
    IP address (V6) of peer.
    SerialNumber string
    Serial number of peer.
    Status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    SystemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    Fosid float64
    Id.
    Ip string
    IP address of peer.
    Ip6 string
    IP address (V6) of peer.
    SerialNumber string
    Serial number of peer.
    Status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    SystemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    fosid Double
    Id.
    ip String
    IP address of peer.
    ip6 String
    IP address (V6) of peer.
    serialNumber String
    Serial number of peer.
    status String
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId String
    an identifier for the resource with format {{fosid}}.
    fosid number
    Id.
    ip string
    IP address of peer.
    ip6 string
    IP address (V6) of peer.
    serialNumber string
    Serial number of peer.
    status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    fosid float
    Id.
    ip str
    IP address of peer.
    ip6 str
    IP address (V6) of peer.
    serial_number str
    Serial number of peer.
    status str
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    system_ha_peer_id str
    an identifier for the resource with format {{fosid}}.
    fosid Number
    Id.
    ip String
    IP address of peer.
    ip6 String
    IP address (V6) of peer.
    serialNumber String
    Serial number of peer.
    status String
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId String
    an identifier for the resource with format {{fosid}}.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystemHaPeer 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 SystemHaPeer Resource

    Get an existing SystemHaPeer 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?: SystemHaPeerState, opts?: CustomResourceOptions): SystemHaPeer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            fosid: Optional[float] = None,
            ip: Optional[str] = None,
            ip6: Optional[str] = None,
            serial_number: Optional[str] = None,
            status: Optional[str] = None,
            system_ha_peer_id: Optional[str] = None) -> SystemHaPeer
    func GetSystemHaPeer(ctx *Context, name string, id IDInput, state *SystemHaPeerState, opts ...ResourceOption) (*SystemHaPeer, error)
    public static SystemHaPeer Get(string name, Input<string> id, SystemHaPeerState? state, CustomResourceOptions? opts = null)
    public static SystemHaPeer get(String name, Output<String> id, SystemHaPeerState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemHaPeer    get:      id: ${id}
    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:
    Fosid double
    Id.
    Ip string
    IP address of peer.
    Ip6 string
    IP address (V6) of peer.
    SerialNumber string
    Serial number of peer.
    Status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    SystemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    Fosid float64
    Id.
    Ip string
    IP address of peer.
    Ip6 string
    IP address (V6) of peer.
    SerialNumber string
    Serial number of peer.
    Status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    SystemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    fosid Double
    Id.
    ip String
    IP address of peer.
    ip6 String
    IP address (V6) of peer.
    serialNumber String
    Serial number of peer.
    status String
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId String
    an identifier for the resource with format {{fosid}}.
    fosid number
    Id.
    ip string
    IP address of peer.
    ip6 string
    IP address (V6) of peer.
    serialNumber string
    Serial number of peer.
    status string
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId string
    an identifier for the resource with format {{fosid}}.
    fosid float
    Id.
    ip str
    IP address of peer.
    ip6 str
    IP address (V6) of peer.
    serial_number str
    Serial number of peer.
    status str
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    system_ha_peer_id str
    an identifier for the resource with format {{fosid}}.
    fosid Number
    Id.
    ip String
    IP address of peer.
    ip6 String
    IP address (V6) of peer.
    serialNumber String
    Serial number of peer.
    status String
    Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
    systemHaPeerId String
    an identifier for the resource with format {{fosid}}.

    Import

    System HaPeer can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemHaPeer:SystemHaPeer labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev