1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getIpsecTunnelList
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";
    
    // Example of listing all IPsec Tunnels within a specific folder.
    const allInFolder = scm.getIpsecTunnelList({
        folder: "Remote Networks",
        limit: 100,
    });
    export const allIpsecTunnelsInFolder = allInFolder.then(allInFolder => allInFolder.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Example of listing all IPsec Tunnels within a specific folder.
    all_in_folder = scm.get_ipsec_tunnel_list(folder="Remote Networks",
        limit=100)
    pulumi.export("allIpsecTunnelsInFolder", all_in_folder.datas)
    
    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 {
    		// Example of listing all IPsec Tunnels within a specific folder.
    		allInFolder, err := scm.GetIpsecTunnelList(ctx, &scm.GetIpsecTunnelListArgs{
    			Folder: pulumi.StringRef("Remote Networks"),
    			Limit:  pulumi.IntRef(100),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("allIpsecTunnelsInFolder", allInFolder.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Example of listing all IPsec Tunnels within a specific folder.
        var allInFolder = Scm.GetIpsecTunnelList.Invoke(new()
        {
            Folder = "Remote Networks",
            Limit = 100,
        });
    
        return new Dictionary<string, object?>
        {
            ["allIpsecTunnelsInFolder"] = allInFolder.Apply(getIpsecTunnelListResult => getIpsecTunnelListResult.Datas),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetIpsecTunnelListArgs;
    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) {
            // Example of listing all IPsec Tunnels within a specific folder.
            final var allInFolder = ScmFunctions.getIpsecTunnelList(GetIpsecTunnelListArgs.builder()
                .folder("Remote Networks")
                .limit(100)
                .build());
    
            ctx.export("allIpsecTunnelsInFolder", allInFolder.datas());
        }
    }
    
    variables:
      # Example of listing all IPsec Tunnels within a specific folder.
      allInFolder:
        fn::invoke:
          function: scm:getIpsecTunnelList
          arguments:
            folder: Remote Networks
            limit: 100
    outputs:
      allIpsecTunnelsInFolder: ${allInFolder.datas}
    

    Using getIpsecTunnelList

    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 getIpsecTunnelList(args: GetIpsecTunnelListArgs, opts?: InvokeOptions): Promise<GetIpsecTunnelListResult>
    function getIpsecTunnelListOutput(args: GetIpsecTunnelListOutputArgs, opts?: InvokeOptions): Output<GetIpsecTunnelListResult>
    def get_ipsec_tunnel_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) -> GetIpsecTunnelListResult
    def get_ipsec_tunnel_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[GetIpsecTunnelListResult]
    func GetIpsecTunnelList(ctx *Context, args *GetIpsecTunnelListArgs, opts ...InvokeOption) (*GetIpsecTunnelListResult, error)
    func GetIpsecTunnelListOutput(ctx *Context, args *GetIpsecTunnelListOutputArgs, opts ...InvokeOption) GetIpsecTunnelListResultOutput

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

    public static class GetIpsecTunnelList 
    {
        public static Task<GetIpsecTunnelListResult> InvokeAsync(GetIpsecTunnelListArgs args, InvokeOptions? opts = null)
        public static Output<GetIpsecTunnelListResult> Invoke(GetIpsecTunnelListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIpsecTunnelListResult> getIpsecTunnelList(GetIpsecTunnelListArgs args, InvokeOptions options)
    public static Output<GetIpsecTunnelListResult> getIpsecTunnelList(GetIpsecTunnelListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getIpsecTunnelList:getIpsecTunnelList
      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.

    getIpsecTunnelList Result

    The following output properties are available:

    Datas List<GetIpsecTunnelListData>
    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 []GetIpsecTunnelListData
    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<GetIpsecTunnelListData>
    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 GetIpsecTunnelListData[]
    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[GetIpsecTunnelListData]
    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

    GetIpsecTunnelListData

    AntiReplay bool
    Enable Anti-Replay check on this tunnel
    AutoKey GetIpsecTunnelListDataAutoKey
    Auto key
    CopyTos bool
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    Device string
    The device in which the resource is defined
    EnableGreEncapsulation bool
    allow GRE over IPSec
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    TunnelInterface string
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    TunnelMonitor GetIpsecTunnelListDataTunnelMonitor
    Tunnel monitor
    AntiReplay bool
    Enable Anti-Replay check on this tunnel
    AutoKey GetIpsecTunnelListDataAutoKey
    Auto key
    CopyTos bool
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    Device string
    The device in which the resource is defined
    EnableGreEncapsulation bool
    allow GRE over IPSec
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    TunnelInterface string
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    TunnelMonitor GetIpsecTunnelListDataTunnelMonitor
    Tunnel monitor
    antiReplay Boolean
    Enable Anti-Replay check on this tunnel
    autoKey GetIpsecTunnelListDataAutoKey
    Auto key
    copyTos Boolean
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    device String
    The device in which the resource is defined
    enableGreEncapsulation Boolean
    allow GRE over IPSec
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet in which the resource is defined
    tfid String
    tunnelInterface String
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    tunnelMonitor GetIpsecTunnelListDataTunnelMonitor
    Tunnel monitor
    antiReplay boolean
    Enable Anti-Replay check on this tunnel
    autoKey GetIpsecTunnelListDataAutoKey
    Auto key
    copyTos boolean
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    device string
    The device in which the resource is defined
    enableGreEncapsulation boolean
    allow GRE over IPSec
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet string
    The snippet in which the resource is defined
    tfid string
    tunnelInterface string
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    tunnelMonitor GetIpsecTunnelListDataTunnelMonitor
    Tunnel monitor
    anti_replay bool
    Enable Anti-Replay check on this tunnel
    auto_key GetIpsecTunnelListDataAutoKey
    Auto key
    copy_tos bool
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    device str
    The device in which the resource is defined
    enable_gre_encapsulation bool
    allow GRE over IPSec
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    name str
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet str
    The snippet in which the resource is defined
    tfid str
    tunnel_interface str
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    tunnel_monitor GetIpsecTunnelListDataTunnelMonitor
    Tunnel monitor
    antiReplay Boolean
    Enable Anti-Replay check on this tunnel
    autoKey Property Map
    Auto key
    copyTos Boolean
    Copy IP TOS bits from inner packet to IPSec packet (not recommended)
    device String
    The device in which the resource is defined
    enableGreEncapsulation Boolean
    allow GRE over IPSec
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet in which the resource is defined
    tfid String
    tunnelInterface String
    Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
    tunnelMonitor Property Map
    Tunnel monitor

    GetIpsecTunnelListDataAutoKey

    ikeGateways List<Property Map>
    Ike gateway
    ipsecCryptoProfile String
    Ipsec crypto profile
    proxyIdV6s List<Property Map>
    IPv6 type of proxy*id values
    proxyIds List<Property Map>
    IPv4 type of proxy*id values

    GetIpsecTunnelListDataAutoKeyIkeGateway

    Name string
    Name
    Name string
    Name
    name String
    Name
    name string
    Name
    name str
    Name
    name String
    Name

    GetIpsecTunnelListDataAutoKeyProxyId

    Local string
    Local
    Name string
    Name
    Protocol GetIpsecTunnelListDataAutoKeyProxyIdProtocol
    IPv4 type of proxy*id protocol values for TCP protocol
    Remote string
    Remote
    Local string
    Local
    Name string
    Name
    Protocol GetIpsecTunnelListDataAutoKeyProxyIdProtocol
    IPv4 type of proxy*id protocol values for TCP protocol
    Remote string
    Remote
    local String
    Local
    name String
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdProtocol
    IPv4 type of proxy*id protocol values for TCP protocol
    remote String
    Remote
    local string
    Local
    name string
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdProtocol
    IPv4 type of proxy*id protocol values for TCP protocol
    remote string
    Remote
    local str
    Local
    name str
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdProtocol
    IPv4 type of proxy*id protocol values for TCP protocol
    remote str
    Remote
    local String
    Local
    name String
    Name
    protocol Property Map
    IPv4 type of proxy*id protocol values for TCP protocol
    remote String
    Remote

    GetIpsecTunnelListDataAutoKeyProxyIdProtocol

    Number int
    IP protocol number
    Tcp GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp
    IPv4 type of proxy*id protocol values for TCP protocol
    Udp GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    Number int
    IP protocol number
    Tcp GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp
    IPv4 type of proxy*id protocol values for TCP protocol
    Udp GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number Integer
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp
    IPv4 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number number
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp
    IPv4 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number int
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp
    IPv4 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number Number
    IP protocol number
    tcp Property Map
    IPv4 type of proxy*id protocol values for TCP protocol
    udp Property Map
    IPv6 type of proxy*id protocol values for UDP protocol

    GetIpsecTunnelListDataAutoKeyProxyIdProtocolTcp

    LocalPort int
    Local port
    RemotePort int
    Remote port
    LocalPort int
    Local port
    RemotePort int
    Remote port
    localPort Integer
    Local port
    remotePort Integer
    Remote port
    localPort number
    Local port
    remotePort number
    Remote port
    local_port int
    Local port
    remote_port int
    Remote port
    localPort Number
    Local port
    remotePort Number
    Remote port

    GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp

    LocalPort int
    Local port
    RemotePort int
    Remote port
    LocalPort int
    Local port
    RemotePort int
    Remote port
    localPort Integer
    Local port
    remotePort Integer
    Remote port
    localPort number
    Local port
    remotePort number
    Remote port
    local_port int
    Local port
    remote_port int
    Remote port
    localPort Number
    Local port
    remotePort Number
    Remote port

    GetIpsecTunnelListDataAutoKeyProxyIdV6

    Local string
    Local
    Name string
    Name
    Protocol GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol
    IPv6 type of proxy*id protocol values for protocol
    Remote string
    Remote
    Local string
    Local
    Name string
    Name
    Protocol GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol
    IPv6 type of proxy*id protocol values for protocol
    Remote string
    Remote
    local String
    Local
    name String
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol
    IPv6 type of proxy*id protocol values for protocol
    remote String
    Remote
    local string
    Local
    name string
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol
    IPv6 type of proxy*id protocol values for protocol
    remote string
    Remote
    local str
    Local
    name str
    Name
    protocol GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol
    IPv6 type of proxy*id protocol values for protocol
    remote str
    Remote
    local String
    Local
    name String
    Name
    protocol Property Map
    IPv6 type of proxy*id protocol values for protocol
    remote String
    Remote

    GetIpsecTunnelListDataAutoKeyProxyIdV6Protocol

    Number int
    IP protocol number
    Tcp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp
    IPv6 type of proxy*id protocol values for TCP protocol
    Udp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    Number int
    IP protocol number
    Tcp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp
    IPv6 type of proxy*id protocol values for TCP protocol
    Udp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number Integer
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp
    IPv6 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number number
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp
    IPv6 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number int
    IP protocol number
    tcp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp
    IPv6 type of proxy*id protocol values for TCP protocol
    udp GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
    IPv6 type of proxy*id protocol values for UDP protocol
    number Number
    IP protocol number
    tcp Property Map
    IPv6 type of proxy*id protocol values for TCP protocol
    udp Property Map
    IPv6 type of proxy*id protocol values for UDP protocol

    GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolTcp

    LocalPort int
    Local port
    RemotePort int
    Remote port
    LocalPort int
    Local port
    RemotePort int
    Remote port
    localPort Integer
    Local port
    remotePort Integer
    Remote port
    localPort number
    Local port
    remotePort number
    Remote port
    local_port int
    Local port
    remote_port int
    Remote port
    localPort Number
    Local port
    remotePort Number
    Remote port

    GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp

    LocalPort int
    Local port
    RemotePort int
    Remote port
    LocalPort int
    Local port
    RemotePort int
    Remote port
    localPort Integer
    Local port
    remotePort Integer
    Remote port
    localPort number
    Local port
    remotePort number
    Remote port
    local_port int
    Local port
    remote_port int
    Remote port
    localPort Number
    Local port
    remotePort Number
    Remote port

    GetIpsecTunnelListDataTunnelMonitor

    DestinationIp string
    Destination IP to send ICMP probe
    Enable bool
    Enable tunnel monitoring on this tunnel
    ProxyId string
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use
    DestinationIp string
    Destination IP to send ICMP probe
    Enable bool
    Enable tunnel monitoring on this tunnel
    ProxyId string
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use
    destinationIp String
    Destination IP to send ICMP probe
    enable Boolean
    Enable tunnel monitoring on this tunnel
    proxyId String
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use
    destinationIp string
    Destination IP to send ICMP probe
    enable boolean
    Enable tunnel monitoring on this tunnel
    proxyId string
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use
    destination_ip str
    Destination IP to send ICMP probe
    enable bool
    Enable tunnel monitoring on this tunnel
    proxy_id str
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use
    destinationIp String
    Destination IP to send ICMP probe
    enable Boolean
    Enable tunnel monitoring on this tunnel
    proxyId String
    Which proxy-id (or proxy-id-v6) the monitoring traffic will use

    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