1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getRemoteNetworkList
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Data source to retrieve a list of remote_network objects.
    //
    // Look up a list of Remote Networks, filtering by folder.
    const example = scm.getRemoteNetworkList({
        folder: "Remote Networks",
    });
    export const remoteNetworkList = example.then(example => .map(network => (network.name)));
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Data source to retrieve a list of remote_network objects.
    #
    # Look up a list of Remote Networks, filtering by folder.
    example = scm.get_remote_network_list(folder="Remote Networks")
    pulumi.export("remoteNetworkList", [network.name for network in example.datas])
    
    Example coming soon!
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Data source to retrieve a list of remote_network objects.
        //
        // Look up a list of Remote Networks, filtering by folder.
        var example = Scm.GetRemoteNetworkList.Invoke(new()
        {
            Folder = "Remote Networks",
        });
    
        return new Dictionary<string, object?>
        {
            ["remoteNetworkList"] = .Select(network => 
            {
                return network.Name;
            }).ToList(),
        };
    });
    
    Example coming soon!
    
    Example coming soon!
    

    Using getRemoteNetworkList

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRemoteNetworkList(args: GetRemoteNetworkListArgs, opts?: InvokeOptions): Promise<GetRemoteNetworkListResult>
    function getRemoteNetworkListOutput(args: GetRemoteNetworkListOutputArgs, opts?: InvokeOptions): Output<GetRemoteNetworkListResult>
    def get_remote_network_list(device: Optional[str] = None,
                                folder: Optional[str] = None,
                                limit: Optional[int] = None,
                                name: Optional[str] = None,
                                offset: Optional[int] = None,
                                snippet: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetRemoteNetworkListResult
    def get_remote_network_list_output(device: Optional[pulumi.Input[str]] = None,
                                folder: Optional[pulumi.Input[str]] = None,
                                limit: Optional[pulumi.Input[int]] = None,
                                name: Optional[pulumi.Input[str]] = None,
                                offset: Optional[pulumi.Input[int]] = None,
                                snippet: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetRemoteNetworkListResult]
    func GetRemoteNetworkList(ctx *Context, args *GetRemoteNetworkListArgs, opts ...InvokeOption) (*GetRemoteNetworkListResult, error)
    func GetRemoteNetworkListOutput(ctx *Context, args *GetRemoteNetworkListOutputArgs, opts ...InvokeOption) GetRemoteNetworkListResultOutput

    > Note: This function is named GetRemoteNetworkList in the Go SDK.

    public static class GetRemoteNetworkList 
    {
        public static Task<GetRemoteNetworkListResult> InvokeAsync(GetRemoteNetworkListArgs args, InvokeOptions? opts = null)
        public static Output<GetRemoteNetworkListResult> Invoke(GetRemoteNetworkListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRemoteNetworkListResult> getRemoteNetworkList(GetRemoteNetworkListArgs args, InvokeOptions options)
    public static Output<GetRemoteNetworkListResult> getRemoteNetworkList(GetRemoteNetworkListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getRemoteNetworkList:getRemoteNetworkList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getRemoteNetworkList Result

    The following output properties are available:

    Datas List<GetRemoteNetworkListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetRemoteNetworkListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetRemoteNetworkListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetRemoteNetworkListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetRemoteNetworkListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetRemoteNetworkListData

    EcmpLoadBalancing string
    Ecmp load balancing
    EcmpTunnels List<GetRemoteNetworkListDataEcmpTunnel>
    ecmptunnels is required when ecmpload*balancing is enable
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder that contains the remote network
    Id string
    The UUID of the remote network
    IpsecTunnel string
    ipsectunnel is required when ecmpload_balancing is disable
    LicenseType string
    New customer will only be on aggregate bandwidth licensing
    Name string
    The name of the remote network
    Protocol GetRemoteNetworkListDataProtocol
    setup the protocol when ecmploadbalancing is disable
    Region string
    Region
    SecondaryIpsecTunnel string
    specify secondary ipsec_tunnel if needed
    SpnName string
    spn-name is needed when license_type is FWAAS-AGGREGATE
    Subnets List<string>
    Subnets
    Tfid string
    EcmpLoadBalancing string
    Ecmp load balancing
    EcmpTunnels []GetRemoteNetworkListDataEcmpTunnel
    ecmptunnels is required when ecmpload*balancing is enable
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder that contains the remote network
    Id string
    The UUID of the remote network
    IpsecTunnel string
    ipsectunnel is required when ecmpload_balancing is disable
    LicenseType string
    New customer will only be on aggregate bandwidth licensing
    Name string
    The name of the remote network
    Protocol GetRemoteNetworkListDataProtocol
    setup the protocol when ecmploadbalancing is disable
    Region string
    Region
    SecondaryIpsecTunnel string
    specify secondary ipsec_tunnel if needed
    SpnName string
    spn-name is needed when license_type is FWAAS-AGGREGATE
    Subnets []string
    Subnets
    Tfid string
    ecmpLoadBalancing String
    Ecmp load balancing
    ecmpTunnels List<GetRemoteNetworkListDataEcmpTunnel>
    ecmptunnels is required when ecmpload*balancing is enable
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder that contains the remote network
    id String
    The UUID of the remote network
    ipsecTunnel String
    ipsectunnel is required when ecmpload_balancing is disable
    licenseType String
    New customer will only be on aggregate bandwidth licensing
    name String
    The name of the remote network
    protocol GetRemoteNetworkListDataProtocol
    setup the protocol when ecmploadbalancing is disable
    region String
    Region
    secondaryIpsecTunnel String
    specify secondary ipsec_tunnel if needed
    spnName String
    spn-name is needed when license_type is FWAAS-AGGREGATE
    subnets List<String>
    Subnets
    tfid String
    ecmpLoadBalancing string
    Ecmp load balancing
    ecmpTunnels GetRemoteNetworkListDataEcmpTunnel[]
    ecmptunnels is required when ecmpload*balancing is enable
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder that contains the remote network
    id string
    The UUID of the remote network
    ipsecTunnel string
    ipsectunnel is required when ecmpload_balancing is disable
    licenseType string
    New customer will only be on aggregate bandwidth licensing
    name string
    The name of the remote network
    protocol GetRemoteNetworkListDataProtocol
    setup the protocol when ecmploadbalancing is disable
    region string
    Region
    secondaryIpsecTunnel string
    specify secondary ipsec_tunnel if needed
    spnName string
    spn-name is needed when license_type is FWAAS-AGGREGATE
    subnets string[]
    Subnets
    tfid string
    ecmp_load_balancing str
    Ecmp load balancing
    ecmp_tunnels Sequence[GetRemoteNetworkListDataEcmpTunnel]
    ecmptunnels is required when ecmpload*balancing is enable
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder that contains the remote network
    id str
    The UUID of the remote network
    ipsec_tunnel str
    ipsectunnel is required when ecmpload_balancing is disable
    license_type str
    New customer will only be on aggregate bandwidth licensing
    name str
    The name of the remote network
    protocol GetRemoteNetworkListDataProtocol
    setup the protocol when ecmploadbalancing is disable
    region str
    Region
    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]
    Subnets
    tfid str
    ecmpLoadBalancing String
    Ecmp load balancing
    ecmpTunnels List<Property Map>
    ecmptunnels is required when ecmpload*balancing is enable
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder that contains the remote network
    id String
    The UUID of the remote network
    ipsecTunnel String
    ipsectunnel is required when ecmpload_balancing is disable
    licenseType String
    New customer will only be on aggregate bandwidth licensing
    name String
    The name of the remote network
    protocol Property Map
    setup the protocol when ecmploadbalancing is disable
    region String
    Region
    secondaryIpsecTunnel String
    specify secondary ipsec_tunnel if needed
    spnName String
    spn-name is needed when license_type is FWAAS-AGGREGATE
    subnets List<String>
    Subnets
    tfid String

    GetRemoteNetworkListDataEcmpTunnel

    ipsecTunnel String
    Ipsec tunnel
    name String
    Name
    protocol Property Map
    Protocol

    GetRemoteNetworkListDataEcmpTunnelProtocol

    GetRemoteNetworkListDataEcmpTunnelProtocolBgp

    DoNotExportRoutes bool
    Do not export routes?
    Enable bool
    Enable BGP peering?
    LocalIpAddress string
    Local peer IP address
    OriginateDefaultRoute bool
    Originate default route?
    PeerAs string
    BGP peer ASN
    PeerIpAddress string
    Remote peer IP address
    PeeringType string
    Route exchange types
    Secret string
    BGP peering secret
    SummarizeMobileUserRoutes bool
    Summarize mobile user routes?
    DoNotExportRoutes bool
    Do not export routes?
    Enable bool
    Enable BGP peering?
    LocalIpAddress string
    Local peer IP address
    OriginateDefaultRoute bool
    Originate default route?
    PeerAs string
    BGP peer ASN
    PeerIpAddress string
    Remote peer IP address
    PeeringType string
    Route exchange types
    Secret string
    BGP peering secret
    SummarizeMobileUserRoutes bool
    Summarize mobile user routes?
    doNotExportRoutes Boolean
    Do not export routes?
    enable Boolean
    Enable BGP peering?
    localIpAddress String
    Local peer IP address
    originateDefaultRoute Boolean
    Originate default route?
    peerAs String
    BGP peer ASN
    peerIpAddress String
    Remote peer IP address
    peeringType String
    Route exchange types
    secret String
    BGP peering secret
    summarizeMobileUserRoutes Boolean
    Summarize mobile user routes?
    doNotExportRoutes boolean
    Do not export routes?
    enable boolean
    Enable BGP peering?
    localIpAddress string
    Local peer IP address
    originateDefaultRoute boolean
    Originate default route?
    peerAs string
    BGP peer ASN
    peerIpAddress string
    Remote peer IP address
    peeringType string
    Route exchange types
    secret string
    BGP peering secret
    summarizeMobileUserRoutes boolean
    Summarize mobile user routes?
    do_not_export_routes bool
    Do not export routes?
    enable bool
    Enable BGP peering?
    local_ip_address str
    Local peer IP address
    originate_default_route bool
    Originate default route?
    peer_as str
    BGP peer ASN
    peer_ip_address str
    Remote peer IP address
    peering_type str
    Route exchange types
    secret str
    BGP peering secret
    summarize_mobile_user_routes bool
    Summarize mobile user routes?
    doNotExportRoutes Boolean
    Do not export routes?
    enable Boolean
    Enable BGP peering?
    localIpAddress String
    Local peer IP address
    originateDefaultRoute Boolean
    Originate default route?
    peerAs String
    BGP peer ASN
    peerIpAddress String
    Remote peer IP address
    peeringType String
    Route exchange types
    secret String
    BGP peering secret
    summarizeMobileUserRoutes Boolean
    Summarize mobile user routes?

    GetRemoteNetworkListDataProtocol

    bgp Property Map
    Bgp
    bgpPeer Property Map
    secondary bgp routing as bgp*peer

    GetRemoteNetworkListDataProtocolBgp

    DoNotExportRoutes bool
    Do not export routes?
    Enable bool
    Enable BGP peering?
    LocalIpAddress string
    Local peer IP address
    OriginateDefaultRoute bool
    Originate default route?
    PeerAs string
    BGP peer ASN
    PeerIpAddress string
    Remote peer IP address
    PeeringType string
    Route exchange types
    Secret string
    BGP peering secret
    SummarizeMobileUserRoutes bool
    Summarize mobile user routes?
    DoNotExportRoutes bool
    Do not export routes?
    Enable bool
    Enable BGP peering?
    LocalIpAddress string
    Local peer IP address
    OriginateDefaultRoute bool
    Originate default route?
    PeerAs string
    BGP peer ASN
    PeerIpAddress string
    Remote peer IP address
    PeeringType string
    Route exchange types
    Secret string
    BGP peering secret
    SummarizeMobileUserRoutes bool
    Summarize mobile user routes?
    doNotExportRoutes Boolean
    Do not export routes?
    enable Boolean
    Enable BGP peering?
    localIpAddress String
    Local peer IP address
    originateDefaultRoute Boolean
    Originate default route?
    peerAs String
    BGP peer ASN
    peerIpAddress String
    Remote peer IP address
    peeringType String
    Route exchange types
    secret String
    BGP peering secret
    summarizeMobileUserRoutes Boolean
    Summarize mobile user routes?
    doNotExportRoutes boolean
    Do not export routes?
    enable boolean
    Enable BGP peering?
    localIpAddress string
    Local peer IP address
    originateDefaultRoute boolean
    Originate default route?
    peerAs string
    BGP peer ASN
    peerIpAddress string
    Remote peer IP address
    peeringType string
    Route exchange types
    secret string
    BGP peering secret
    summarizeMobileUserRoutes boolean
    Summarize mobile user routes?
    do_not_export_routes bool
    Do not export routes?
    enable bool
    Enable BGP peering?
    local_ip_address str
    Local peer IP address
    originate_default_route bool
    Originate default route?
    peer_as str
    BGP peer ASN
    peer_ip_address str
    Remote peer IP address
    peering_type str
    Route exchange types
    secret str
    BGP peering secret
    summarize_mobile_user_routes bool
    Summarize mobile user routes?
    doNotExportRoutes Boolean
    Do not export routes?
    enable Boolean
    Enable BGP peering?
    localIpAddress String
    Local peer IP address
    originateDefaultRoute Boolean
    Originate default route?
    peerAs String
    BGP peer ASN
    peerIpAddress String
    Remote peer IP address
    peeringType String
    Route exchange types
    secret String
    BGP peering secret
    summarizeMobileUserRoutes Boolean
    Summarize mobile user routes?

    GetRemoteNetworkListDataProtocolBgpPeer

    LocalIpAddress string
    Local peer IP address (secondary WAN)
    PeerIpAddress string
    Remote peer IP address (secondary WAN)
    Secret string
    BGP peering secret (secondary WAN)
    LocalIpAddress string
    Local peer IP address (secondary WAN)
    PeerIpAddress string
    Remote peer IP address (secondary WAN)
    Secret string
    BGP peering secret (secondary WAN)
    localIpAddress String
    Local peer IP address (secondary WAN)
    peerIpAddress String
    Remote peer IP address (secondary WAN)
    secret String
    BGP peering secret (secondary WAN)
    localIpAddress string
    Local peer IP address (secondary WAN)
    peerIpAddress string
    Remote peer IP address (secondary WAN)
    secret string
    BGP peering secret (secondary WAN)
    local_ip_address str
    Local peer IP address (secondary WAN)
    peer_ip_address str
    Remote peer IP address (secondary WAN)
    secret str
    BGP peering secret (secondary WAN)
    localIpAddress String
    Local peer IP address (secondary WAN)
    peerIpAddress String
    Remote peer IP address (secondary WAN)
    secret String
    BGP peering secret (secondary WAN)

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate