1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. RemoteNetwork
Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi

scm.RemoteNetwork

Explore with Pulumi AI

Retrieves a config item.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";

const example = new scm.RemoteNetwork("example", {});
Copy
import pulumi
import pulumi_scm as scm

example = scm.RemoteNetwork("example")
Copy
package main

import (
	"github.com/pulumi/pulumi-scm/sdk/go/scm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := scm.NewRemoteNetwork(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;

return await Deployment.RunAsync(() => 
{
    var example = new Scm.RemoteNetwork("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.RemoteNetwork;
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 example = new RemoteNetwork("example");

    }
}
Copy
resources:
  example:
    type: scm:RemoteNetwork
Copy

Create RemoteNetwork Resource

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

Constructor syntax

new RemoteNetwork(name: string, args: RemoteNetworkArgs, opts?: CustomResourceOptions);
@overload
def RemoteNetwork(resource_name: str,
                  args: RemoteNetworkArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def RemoteNetwork(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  region: Optional[str] = None,
                  ecmp_load_balancing: Optional[str] = None,
                  ecmp_tunnels: Optional[Sequence[RemoteNetworkEcmpTunnelArgs]] = None,
                  folder: Optional[str] = None,
                  ipsec_tunnel: Optional[str] = None,
                  license_type: Optional[str] = None,
                  name: Optional[str] = None,
                  protocol: Optional[RemoteNetworkProtocolArgs] = None,
                  secondary_ipsec_tunnel: Optional[str] = None,
                  spn_name: Optional[str] = None,
                  subnets: Optional[Sequence[str]] = None)
func NewRemoteNetwork(ctx *Context, name string, args RemoteNetworkArgs, opts ...ResourceOption) (*RemoteNetwork, error)
public RemoteNetwork(string name, RemoteNetworkArgs args, CustomResourceOptions? opts = null)
public RemoteNetwork(String name, RemoteNetworkArgs args)
public RemoteNetwork(String name, RemoteNetworkArgs args, CustomResourceOptions options)
type: scm:RemoteNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RemoteNetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RemoteNetworkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RemoteNetworkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RemoteNetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RemoteNetworkArgs
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 remoteNetworkResource = new Scm.RemoteNetwork("remoteNetworkResource", new()
{
    Region = "string",
    EcmpLoadBalancing = "string",
    EcmpTunnels = new[]
    {
        new Scm.Inputs.RemoteNetworkEcmpTunnelArgs
        {
            IpsecTunnel = "string",
            Name = "string",
            Protocol = new Scm.Inputs.RemoteNetworkEcmpTunnelProtocolArgs
            {
                Bgp = new Scm.Inputs.RemoteNetworkEcmpTunnelProtocolBgpArgs
                {
                    DoNotExportRoutes = false,
                    Enable = false,
                    LocalIpAddress = "string",
                    OriginateDefaultRoute = false,
                    PeerAs = "string",
                    PeerIpAddress = "string",
                    PeeringType = "string",
                    Secret = "string",
                    SummarizeMobileUserRoutes = false,
                },
            },
        },
    },
    Folder = "string",
    IpsecTunnel = "string",
    LicenseType = "string",
    Name = "string",
    Protocol = new Scm.Inputs.RemoteNetworkProtocolArgs
    {
        Bgp = new Scm.Inputs.RemoteNetworkProtocolBgpArgs
        {
            DoNotExportRoutes = false,
            Enable = false,
            LocalIpAddress = "string",
            OriginateDefaultRoute = false,
            PeerAs = "string",
            PeerIpAddress = "string",
            PeeringType = "string",
            Secret = "string",
            SummarizeMobileUserRoutes = false,
        },
        BgpPeer = new Scm.Inputs.RemoteNetworkProtocolBgpPeerArgs
        {
            LocalIpAddress = "string",
            PeerIpAddress = "string",
            SameAsPrimary = false,
            Secret = "string",
        },
    },
    SecondaryIpsecTunnel = "string",
    SpnName = "string",
    Subnets = new[]
    {
        "string",
    },
});
Copy
example, err := scm.NewRemoteNetwork(ctx, "remoteNetworkResource", &scm.RemoteNetworkArgs{
	Region:            pulumi.String("string"),
	EcmpLoadBalancing: pulumi.String("string"),
	EcmpTunnels: scm.RemoteNetworkEcmpTunnelArray{
		&scm.RemoteNetworkEcmpTunnelArgs{
			IpsecTunnel: pulumi.String("string"),
			Name:        pulumi.String("string"),
			Protocol: &scm.RemoteNetworkEcmpTunnelProtocolArgs{
				Bgp: &scm.RemoteNetworkEcmpTunnelProtocolBgpArgs{
					DoNotExportRoutes:         pulumi.Bool(false),
					Enable:                    pulumi.Bool(false),
					LocalIpAddress:            pulumi.String("string"),
					OriginateDefaultRoute:     pulumi.Bool(false),
					PeerAs:                    pulumi.String("string"),
					PeerIpAddress:             pulumi.String("string"),
					PeeringType:               pulumi.String("string"),
					Secret:                    pulumi.String("string"),
					SummarizeMobileUserRoutes: pulumi.Bool(false),
				},
			},
		},
	},
	Folder:      pulumi.String("string"),
	IpsecTunnel: pulumi.String("string"),
	LicenseType: pulumi.String("string"),
	Name:        pulumi.String("string"),
	Protocol: &scm.RemoteNetworkProtocolArgs{
		Bgp: &scm.RemoteNetworkProtocolBgpArgs{
			DoNotExportRoutes:         pulumi.Bool(false),
			Enable:                    pulumi.Bool(false),
			LocalIpAddress:            pulumi.String("string"),
			OriginateDefaultRoute:     pulumi.Bool(false),
			PeerAs:                    pulumi.String("string"),
			PeerIpAddress:             pulumi.String("string"),
			PeeringType:               pulumi.String("string"),
			Secret:                    pulumi.String("string"),
			SummarizeMobileUserRoutes: pulumi.Bool(false),
		},
		BgpPeer: &scm.RemoteNetworkProtocolBgpPeerArgs{
			LocalIpAddress: pulumi.String("string"),
			PeerIpAddress:  pulumi.String("string"),
			SameAsPrimary:  pulumi.Bool(false),
			Secret:         pulumi.String("string"),
		},
	},
	SecondaryIpsecTunnel: pulumi.String("string"),
	SpnName:              pulumi.String("string"),
	Subnets: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var remoteNetworkResource = new RemoteNetwork("remoteNetworkResource", RemoteNetworkArgs.builder()
    .region("string")
    .ecmpLoadBalancing("string")
    .ecmpTunnels(RemoteNetworkEcmpTunnelArgs.builder()
        .ipsecTunnel("string")
        .name("string")
        .protocol(RemoteNetworkEcmpTunnelProtocolArgs.builder()
            .bgp(RemoteNetworkEcmpTunnelProtocolBgpArgs.builder()
                .doNotExportRoutes(false)
                .enable(false)
                .localIpAddress("string")
                .originateDefaultRoute(false)
                .peerAs("string")
                .peerIpAddress("string")
                .peeringType("string")
                .secret("string")
                .summarizeMobileUserRoutes(false)
                .build())
            .build())
        .build())
    .folder("string")
    .ipsecTunnel("string")
    .licenseType("string")
    .name("string")
    .protocol(RemoteNetworkProtocolArgs.builder()
        .bgp(RemoteNetworkProtocolBgpArgs.builder()
            .doNotExportRoutes(false)
            .enable(false)
            .localIpAddress("string")
            .originateDefaultRoute(false)
            .peerAs("string")
            .peerIpAddress("string")
            .peeringType("string")
            .secret("string")
            .summarizeMobileUserRoutes(false)
            .build())
        .bgpPeer(RemoteNetworkProtocolBgpPeerArgs.builder()
            .localIpAddress("string")
            .peerIpAddress("string")
            .sameAsPrimary(false)
            .secret("string")
            .build())
        .build())
    .secondaryIpsecTunnel("string")
    .spnName("string")
    .subnets("string")
    .build());
Copy
remote_network_resource = scm.RemoteNetwork("remoteNetworkResource",
    region="string",
    ecmp_load_balancing="string",
    ecmp_tunnels=[{
        "ipsec_tunnel": "string",
        "name": "string",
        "protocol": {
            "bgp": {
                "do_not_export_routes": False,
                "enable": False,
                "local_ip_address": "string",
                "originate_default_route": False,
                "peer_as": "string",
                "peer_ip_address": "string",
                "peering_type": "string",
                "secret": "string",
                "summarize_mobile_user_routes": False,
            },
        },
    }],
    folder="string",
    ipsec_tunnel="string",
    license_type="string",
    name="string",
    protocol={
        "bgp": {
            "do_not_export_routes": False,
            "enable": False,
            "local_ip_address": "string",
            "originate_default_route": False,
            "peer_as": "string",
            "peer_ip_address": "string",
            "peering_type": "string",
            "secret": "string",
            "summarize_mobile_user_routes": False,
        },
        "bgp_peer": {
            "local_ip_address": "string",
            "peer_ip_address": "string",
            "same_as_primary": False,
            "secret": "string",
        },
    },
    secondary_ipsec_tunnel="string",
    spn_name="string",
    subnets=["string"])
Copy
const remoteNetworkResource = new scm.RemoteNetwork("remoteNetworkResource", {
    region: "string",
    ecmpLoadBalancing: "string",
    ecmpTunnels: [{
        ipsecTunnel: "string",
        name: "string",
        protocol: {
            bgp: {
                doNotExportRoutes: false,
                enable: false,
                localIpAddress: "string",
                originateDefaultRoute: false,
                peerAs: "string",
                peerIpAddress: "string",
                peeringType: "string",
                secret: "string",
                summarizeMobileUserRoutes: false,
            },
        },
    }],
    folder: "string",
    ipsecTunnel: "string",
    licenseType: "string",
    name: "string",
    protocol: {
        bgp: {
            doNotExportRoutes: false,
            enable: false,
            localIpAddress: "string",
            originateDefaultRoute: false,
            peerAs: "string",
            peerIpAddress: "string",
            peeringType: "string",
            secret: "string",
            summarizeMobileUserRoutes: false,
        },
        bgpPeer: {
            localIpAddress: "string",
            peerIpAddress: "string",
            sameAsPrimary: false,
            secret: "string",
        },
    },
    secondaryIpsecTunnel: "string",
    spnName: "string",
    subnets: ["string"],
});
Copy
type: scm:RemoteNetwork
properties:
    ecmpLoadBalancing: string
    ecmpTunnels:
        - ipsecTunnel: string
          name: string
          protocol:
            bgp:
                doNotExportRoutes: false
                enable: false
                localIpAddress: string
                originateDefaultRoute: false
                peerAs: string
                peerIpAddress: string
                peeringType: string
                secret: string
                summarizeMobileUserRoutes: false
    folder: string
    ipsecTunnel: string
    licenseType: string
    name: string
    protocol:
        bgp:
            doNotExportRoutes: false
            enable: false
            localIpAddress: string
            originateDefaultRoute: false
            peerAs: string
            peerIpAddress: string
            peeringType: string
            secret: string
            summarizeMobileUserRoutes: false
        bgpPeer:
            localIpAddress: string
            peerIpAddress: string
            sameAsPrimary: false
            secret: string
    region: string
    secondaryIpsecTunnel: string
    spnName: string
    subnets:
        - string
Copy

RemoteNetwork 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 RemoteNetwork resource accepts the following input properties:

Region This property is required. string
The Region param. String length must exceed 1 characters.
EcmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
EcmpTunnels List<RemoteNetworkEcmpTunnel>
ecmptunnels is required when ecmpload*balancing is enable.
Folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
IpsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
LicenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
Protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
SecondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
SpnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
Subnets List<string>
The Subnets param.
Region This property is required. string
The Region param. String length must exceed 1 characters.
EcmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
EcmpTunnels []RemoteNetworkEcmpTunnelArgs
ecmptunnels is required when ecmpload*balancing is enable.
Folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
IpsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
LicenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
Protocol RemoteNetworkProtocolArgs
setup the protocol when ecmploadbalancing is disable.
SecondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
SpnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
Subnets []string
The Subnets param.
region This property is required. String
The Region param. String length must exceed 1 characters.
ecmpLoadBalancing String
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels List<RemoteNetworkEcmpTunnel>
ecmptunnels is required when ecmpload*balancing is enable.
folder String
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel String
ipsectunnel is required when ecmpload_balancing is disable.
licenseType String
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
secondaryIpsecTunnel String
specify secondary ipsec_tunnel if needed.
spnName String
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets List<String>
The Subnets param.
region This property is required. string
The Region param. String length must exceed 1 characters.
ecmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels RemoteNetworkEcmpTunnel[]
ecmptunnels is required when ecmpload*balancing is enable.
folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
licenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
secondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
spnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets string[]
The Subnets param.
region This property is required. str
The Region param. String length must exceed 1 characters.
ecmp_load_balancing str
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmp_tunnels Sequence[RemoteNetworkEcmpTunnelArgs]
ecmptunnels is required when ecmpload*balancing is enable.
folder str
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsec_tunnel str
ipsectunnel is required when ecmpload_balancing is disable.
license_type str
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name str
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocolArgs
setup the protocol when ecmploadbalancing is disable.
secondary_ipsec_tunnel str
specify secondary ipsec_tunnel if needed.
spn_name str
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets Sequence[str]
The Subnets param.
region This property is required. String
The Region param. String length must exceed 1 characters.
ecmpLoadBalancing String
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels List<Property Map>
ecmptunnels is required when ecmpload*balancing is enable.
folder String
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel String
ipsectunnel is required when ecmpload_balancing is disable.
licenseType String
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol Property Map
setup the protocol when ecmploadbalancing is disable.
secondaryIpsecTunnel String
specify secondary ipsec_tunnel if needed.
spnName String
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets List<String>
The Subnets param.

Outputs

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

EncryptedValues Dictionary<string, string>
(Internal use) Encrypted values returned from the API.
Id string
The provider-assigned unique ID for this managed resource.
Tfid string
EncryptedValues map[string]string
(Internal use) Encrypted values returned from the API.
Id string
The provider-assigned unique ID for this managed resource.
Tfid string
encryptedValues Map<String,String>
(Internal use) Encrypted values returned from the API.
id String
The provider-assigned unique ID for this managed resource.
tfid String
encryptedValues {[key: string]: string}
(Internal use) Encrypted values returned from the API.
id string
The provider-assigned unique ID for this managed resource.
tfid string
encrypted_values Mapping[str, str]
(Internal use) Encrypted values returned from the API.
id str
The provider-assigned unique ID for this managed resource.
tfid str
encryptedValues Map<String>
(Internal use) Encrypted values returned from the API.
id String
The provider-assigned unique ID for this managed resource.
tfid String

Look up Existing RemoteNetwork Resource

Get an existing RemoteNetwork 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?: RemoteNetworkState, opts?: CustomResourceOptions): RemoteNetwork
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ecmp_load_balancing: Optional[str] = None,
        ecmp_tunnels: Optional[Sequence[RemoteNetworkEcmpTunnelArgs]] = None,
        encrypted_values: Optional[Mapping[str, str]] = None,
        folder: Optional[str] = None,
        ipsec_tunnel: Optional[str] = None,
        license_type: Optional[str] = None,
        name: Optional[str] = None,
        protocol: Optional[RemoteNetworkProtocolArgs] = None,
        region: Optional[str] = None,
        secondary_ipsec_tunnel: Optional[str] = None,
        spn_name: Optional[str] = None,
        subnets: Optional[Sequence[str]] = None,
        tfid: Optional[str] = None) -> RemoteNetwork
func GetRemoteNetwork(ctx *Context, name string, id IDInput, state *RemoteNetworkState, opts ...ResourceOption) (*RemoteNetwork, error)
public static RemoteNetwork Get(string name, Input<string> id, RemoteNetworkState? state, CustomResourceOptions? opts = null)
public static RemoteNetwork get(String name, Output<String> id, RemoteNetworkState state, CustomResourceOptions options)
resources:  _:    type: scm:RemoteNetwork    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
EcmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
EcmpTunnels List<RemoteNetworkEcmpTunnel>
ecmptunnels is required when ecmpload*balancing is enable.
EncryptedValues Dictionary<string, string>
(Internal use) Encrypted values returned from the API.
Folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
IpsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
LicenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
Protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
Region string
The Region param. String length must exceed 1 characters.
SecondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
SpnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
Subnets List<string>
The Subnets param.
Tfid string
EcmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
EcmpTunnels []RemoteNetworkEcmpTunnelArgs
ecmptunnels is required when ecmpload*balancing is enable.
EncryptedValues map[string]string
(Internal use) Encrypted values returned from the API.
Folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
IpsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
LicenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
Name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
Protocol RemoteNetworkProtocolArgs
setup the protocol when ecmploadbalancing is disable.
Region string
The Region param. String length must exceed 1 characters.
SecondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
SpnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
Subnets []string
The Subnets param.
Tfid string
ecmpLoadBalancing String
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels List<RemoteNetworkEcmpTunnel>
ecmptunnels is required when ecmpload*balancing is enable.
encryptedValues Map<String,String>
(Internal use) Encrypted values returned from the API.
folder String
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel String
ipsectunnel is required when ecmpload_balancing is disable.
licenseType String
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
region String
The Region param. String length must exceed 1 characters.
secondaryIpsecTunnel String
specify secondary ipsec_tunnel if needed.
spnName String
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets List<String>
The Subnets param.
tfid String
ecmpLoadBalancing string
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels RemoteNetworkEcmpTunnel[]
ecmptunnels is required when ecmpload*balancing is enable.
encryptedValues {[key: string]: string}
(Internal use) Encrypted values returned from the API.
folder string
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel string
ipsectunnel is required when ecmpload_balancing is disable.
licenseType string
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name string
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocol
setup the protocol when ecmploadbalancing is disable.
region string
The Region param. String length must exceed 1 characters.
secondaryIpsecTunnel string
specify secondary ipsec_tunnel if needed.
spnName string
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets string[]
The Subnets param.
tfid string
ecmp_load_balancing str
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmp_tunnels Sequence[RemoteNetworkEcmpTunnelArgs]
ecmptunnels is required when ecmpload*balancing is enable.
encrypted_values Mapping[str, str]
(Internal use) Encrypted values returned from the API.
folder str
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsec_tunnel str
ipsectunnel is required when ecmpload_balancing is disable.
license_type str
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name str
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol RemoteNetworkProtocolArgs
setup the protocol when ecmploadbalancing is disable.
region str
The Region param. String length must exceed 1 characters.
secondary_ipsec_tunnel str
specify secondary ipsec_tunnel if needed.
spn_name str
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets Sequence[str]
The Subnets param.
tfid str
ecmpLoadBalancing String
The EcmpLoadBalancing param. String must be one of these: "enable", "disable". Default: "disable".
ecmpTunnels List<Property Map>
ecmptunnels is required when ecmpload*balancing is enable.
encryptedValues Map<String>
(Internal use) Encrypted values returned from the API.
folder String
The Folder param. String can either be a specific string("Remote Networks") or match this regex: ^[\s0-9a-zA-Z._-]{1,}$. Default: "Remote Networks".
ipsecTunnel String
ipsectunnel is required when ecmpload_balancing is disable.
licenseType String
New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: "FWAAS-AGGREGATE".
name String
Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
protocol Property Map
setup the protocol when ecmploadbalancing is disable.
region String
The Region param. String length must exceed 1 characters.
secondaryIpsecTunnel String
specify secondary ipsec_tunnel if needed.
spnName String
spn-name is needed when license_type is FWAAS-AGGREGATE.
subnets List<String>
The Subnets param.
tfid String

Supporting Types

RemoteNetworkEcmpTunnel
, RemoteNetworkEcmpTunnelArgs

IpsecTunnel This property is required. string
The IpsecTunnel param.
Name This property is required. string
The Name param.
Protocol This property is required. RemoteNetworkEcmpTunnelProtocol
The Protocol param.
IpsecTunnel This property is required. string
The IpsecTunnel param.
Name This property is required. string
The Name param.
Protocol This property is required. RemoteNetworkEcmpTunnelProtocol
The Protocol param.
ipsecTunnel This property is required. String
The IpsecTunnel param.
name This property is required. String
The Name param.
protocol This property is required. RemoteNetworkEcmpTunnelProtocol
The Protocol param.
ipsecTunnel This property is required. string
The IpsecTunnel param.
name This property is required. string
The Name param.
protocol This property is required. RemoteNetworkEcmpTunnelProtocol
The Protocol param.
ipsec_tunnel This property is required. str
The IpsecTunnel param.
name This property is required. str
The Name param.
protocol This property is required. RemoteNetworkEcmpTunnelProtocol
The Protocol param.
ipsecTunnel This property is required. String
The IpsecTunnel param.
name This property is required. String
The Name param.
protocol This property is required. Property Map
The Protocol param.

RemoteNetworkEcmpTunnelProtocol
, RemoteNetworkEcmpTunnelProtocolArgs

bgp Property Map
The Bgp param.

RemoteNetworkEcmpTunnelProtocolBgp
, RemoteNetworkEcmpTunnelProtocolBgpArgs

DoNotExportRoutes bool
The DoNotExportRoutes param.
Enable bool
to setup bgp protocol, enable need to set as true.
LocalIpAddress string
The LocalIpAddress param.
OriginateDefaultRoute bool
The OriginateDefaultRoute param.
PeerAs string
The PeerAs param.
PeerIpAddress string
The PeerIpAddress param.
PeeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
Secret string
The Secret param.
SummarizeMobileUserRoutes bool
The SummarizeMobileUserRoutes param.
DoNotExportRoutes bool
The DoNotExportRoutes param.
Enable bool
to setup bgp protocol, enable need to set as true.
LocalIpAddress string
The LocalIpAddress param.
OriginateDefaultRoute bool
The OriginateDefaultRoute param.
PeerAs string
The PeerAs param.
PeerIpAddress string
The PeerIpAddress param.
PeeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
Secret string
The Secret param.
SummarizeMobileUserRoutes bool
The SummarizeMobileUserRoutes param.
doNotExportRoutes Boolean
The DoNotExportRoutes param.
enable Boolean
to setup bgp protocol, enable need to set as true.
localIpAddress String
The LocalIpAddress param.
originateDefaultRoute Boolean
The OriginateDefaultRoute param.
peerAs String
The PeerAs param.
peerIpAddress String
The PeerIpAddress param.
peeringType String
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret String
The Secret param.
summarizeMobileUserRoutes Boolean
The SummarizeMobileUserRoutes param.
doNotExportRoutes boolean
The DoNotExportRoutes param.
enable boolean
to setup bgp protocol, enable need to set as true.
localIpAddress string
The LocalIpAddress param.
originateDefaultRoute boolean
The OriginateDefaultRoute param.
peerAs string
The PeerAs param.
peerIpAddress string
The PeerIpAddress param.
peeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret string
The Secret param.
summarizeMobileUserRoutes boolean
The SummarizeMobileUserRoutes param.
do_not_export_routes bool
The DoNotExportRoutes param.
enable bool
to setup bgp protocol, enable need to set as true.
local_ip_address str
The LocalIpAddress param.
originate_default_route bool
The OriginateDefaultRoute param.
peer_as str
The PeerAs param.
peer_ip_address str
The PeerIpAddress param.
peering_type str
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret str
The Secret param.
summarize_mobile_user_routes bool
The SummarizeMobileUserRoutes param.
doNotExportRoutes Boolean
The DoNotExportRoutes param.
enable Boolean
to setup bgp protocol, enable need to set as true.
localIpAddress String
The LocalIpAddress param.
originateDefaultRoute Boolean
The OriginateDefaultRoute param.
peerAs String
The PeerAs param.
peerIpAddress String
The PeerIpAddress param.
peeringType String
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret String
The Secret param.
summarizeMobileUserRoutes Boolean
The SummarizeMobileUserRoutes param.

RemoteNetworkProtocol
, RemoteNetworkProtocolArgs

Bgp RemoteNetworkProtocolBgp
The Bgp param.
BgpPeer RemoteNetworkProtocolBgpPeer
secondary bgp routing as bgp*peer.
Bgp RemoteNetworkProtocolBgp
The Bgp param.
BgpPeer RemoteNetworkProtocolBgpPeer
secondary bgp routing as bgp*peer.
bgp RemoteNetworkProtocolBgp
The Bgp param.
bgpPeer RemoteNetworkProtocolBgpPeer
secondary bgp routing as bgp*peer.
bgp RemoteNetworkProtocolBgp
The Bgp param.
bgpPeer RemoteNetworkProtocolBgpPeer
secondary bgp routing as bgp*peer.
bgp RemoteNetworkProtocolBgp
The Bgp param.
bgp_peer RemoteNetworkProtocolBgpPeer
secondary bgp routing as bgp*peer.
bgp Property Map
The Bgp param.
bgpPeer Property Map
secondary bgp routing as bgp*peer.

RemoteNetworkProtocolBgp
, RemoteNetworkProtocolBgpArgs

DoNotExportRoutes bool
The DoNotExportRoutes param.
Enable bool
to setup bgp protocol, enable need to set as true.
LocalIpAddress string
The LocalIpAddress param.
OriginateDefaultRoute bool
The OriginateDefaultRoute param.
PeerAs string
The PeerAs param.
PeerIpAddress string
The PeerIpAddress param.
PeeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
Secret string
The Secret param.
SummarizeMobileUserRoutes bool
The SummarizeMobileUserRoutes param.
DoNotExportRoutes bool
The DoNotExportRoutes param.
Enable bool
to setup bgp protocol, enable need to set as true.
LocalIpAddress string
The LocalIpAddress param.
OriginateDefaultRoute bool
The OriginateDefaultRoute param.
PeerAs string
The PeerAs param.
PeerIpAddress string
The PeerIpAddress param.
PeeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
Secret string
The Secret param.
SummarizeMobileUserRoutes bool
The SummarizeMobileUserRoutes param.
doNotExportRoutes Boolean
The DoNotExportRoutes param.
enable Boolean
to setup bgp protocol, enable need to set as true.
localIpAddress String
The LocalIpAddress param.
originateDefaultRoute Boolean
The OriginateDefaultRoute param.
peerAs String
The PeerAs param.
peerIpAddress String
The PeerIpAddress param.
peeringType String
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret String
The Secret param.
summarizeMobileUserRoutes Boolean
The SummarizeMobileUserRoutes param.
doNotExportRoutes boolean
The DoNotExportRoutes param.
enable boolean
to setup bgp protocol, enable need to set as true.
localIpAddress string
The LocalIpAddress param.
originateDefaultRoute boolean
The OriginateDefaultRoute param.
peerAs string
The PeerAs param.
peerIpAddress string
The PeerIpAddress param.
peeringType string
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret string
The Secret param.
summarizeMobileUserRoutes boolean
The SummarizeMobileUserRoutes param.
do_not_export_routes bool
The DoNotExportRoutes param.
enable bool
to setup bgp protocol, enable need to set as true.
local_ip_address str
The LocalIpAddress param.
originate_default_route bool
The OriginateDefaultRoute param.
peer_as str
The PeerAs param.
peer_ip_address str
The PeerIpAddress param.
peering_type str
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret str
The Secret param.
summarize_mobile_user_routes bool
The SummarizeMobileUserRoutes param.
doNotExportRoutes Boolean
The DoNotExportRoutes param.
enable Boolean
to setup bgp protocol, enable need to set as true.
localIpAddress String
The LocalIpAddress param.
originateDefaultRoute Boolean
The OriginateDefaultRoute param.
peerAs String
The PeerAs param.
peerIpAddress String
The PeerIpAddress param.
peeringType String
Exchange Routes: exchange-v4-over-v4 stands for Exchange IPv4 routes over IPv4 peering. exchange-v4-v6-over-v4 stands for Exchange both IPv4 and IPv6 routes over IPv4 peering. exchange-v4-over-v4-v6-over-v6 stands for Exchange IPv4 routes over IPv4 peer and IPv6 route over IPv6 peer. exchange-v6-over-v6 stands for Exchange IPv6 routes over IPv6 peering. String must be one of these: "exchange-v4-over-v4", "exchange-v4-v6-over-v4", "exchange-v4-over-v4-v6-over-v6", "exchange-v6-over-v6".
secret String
The Secret param.
summarizeMobileUserRoutes Boolean
The SummarizeMobileUserRoutes param.

RemoteNetworkProtocolBgpPeer
, RemoteNetworkProtocolBgpPeerArgs

LocalIpAddress string
The LocalIpAddress param.
PeerIpAddress string
The PeerIpAddress param.
SameAsPrimary bool
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
Secret string
The Secret param.
LocalIpAddress string
The LocalIpAddress param.
PeerIpAddress string
The PeerIpAddress param.
SameAsPrimary bool
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
Secret string
The Secret param.
localIpAddress String
The LocalIpAddress param.
peerIpAddress String
The PeerIpAddress param.
sameAsPrimary Boolean
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
secret String
The Secret param.
localIpAddress string
The LocalIpAddress param.
peerIpAddress string
The PeerIpAddress param.
sameAsPrimary boolean
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
secret string
The Secret param.
local_ip_address str
The LocalIpAddress param.
peer_ip_address str
The PeerIpAddress param.
same_as_primary bool
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
secret str
The Secret param.
localIpAddress String
The LocalIpAddress param.
peerIpAddress String
The PeerIpAddress param.
sameAsPrimary Boolean
If true, the secondary BGP peer configuration will be the same as the primary BGP peer. Default: true.
secret String
The Secret param.

Package Details

Repository
scm pulumi/pulumi-scm
License
Apache-2.0
Notes
This Pulumi package is based on the scm Terraform Provider.