Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 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 dictionaryThe following arguments are supported:
getIpsecTunnelList Result
The following output properties are available:
- Datas
List<Get
Ipsec Tunnel List Data> - 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
[]Get
Ipsec Tunnel List Data - 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<Get
Ipsec Tunnel List Data> - 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
Get
Ipsec Tunnel List Data[] - 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[Get
Ipsec Tunnel List Data] - 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
- Anti
Replay bool - Enable Anti-Replay check on this tunnel
- Auto
Key GetIpsec Tunnel List Data Auto Key - Auto key
- Copy
Tos bool - Copy IP TOS bits from inner packet to IPSec packet (not recommended)
- Device string
- The device in which the resource is defined
- Enable
Gre boolEncapsulation - 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
- Tunnel
Interface string - Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
- Tunnel
Monitor GetIpsec Tunnel List Data Tunnel Monitor - Tunnel monitor
- Anti
Replay bool - Enable Anti-Replay check on this tunnel
- Auto
Key GetIpsec Tunnel List Data Auto Key - Auto key
- Copy
Tos bool - Copy IP TOS bits from inner packet to IPSec packet (not recommended)
- Device string
- The device in which the resource is defined
- Enable
Gre boolEncapsulation - 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
- Tunnel
Interface string - Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
- Tunnel
Monitor GetIpsec Tunnel List Data Tunnel Monitor - Tunnel monitor
- anti
Replay Boolean - Enable Anti-Replay check on this tunnel
- auto
Key GetIpsec Tunnel List Data Auto Key - Auto key
- copy
Tos Boolean - Copy IP TOS bits from inner packet to IPSec packet (not recommended)
- device String
- The device in which the resource is defined
- enable
Gre BooleanEncapsulation - 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
- tunnel
Interface String - Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
- tunnel
Monitor GetIpsec Tunnel List Data Tunnel Monitor - Tunnel monitor
- anti
Replay boolean - Enable Anti-Replay check on this tunnel
- auto
Key GetIpsec Tunnel List Data Auto Key - Auto key
- copy
Tos boolean - Copy IP TOS bits from inner packet to IPSec packet (not recommended)
- device string
- The device in which the resource is defined
- enable
Gre booleanEncapsulation - 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
- tunnel
Interface string - Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
- tunnel
Monitor GetIpsec Tunnel List Data Tunnel Monitor - Tunnel monitor
- anti_
replay bool - Enable Anti-Replay check on this tunnel
- auto_
key GetIpsec Tunnel List Data Auto Key - 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_ boolencapsulation - 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 GetIpsec Tunnel List Data Tunnel Monitor - Tunnel monitor
- anti
Replay Boolean - Enable Anti-Replay check on this tunnel
- auto
Key Property Map - Auto key
- copy
Tos Boolean - Copy IP TOS bits from inner packet to IPSec packet (not recommended)
- device String
- The device in which the resource is defined
- enable
Gre BooleanEncapsulation - 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
- tunnel
Interface String - Tunnel interface variable or hardcoded tunnel. Default will be tunnels.
- tunnel
Monitor Property Map - Tunnel monitor
GetIpsecTunnelListDataAutoKey
- Ike
Gateways List<GetIpsec Tunnel List Data Auto Key Ike Gateway> - Ike gateway
- Ipsec
Crypto stringProfile - Ipsec crypto profile
- Proxy
Id List<GetV6s Ipsec Tunnel List Data Auto Key Proxy Id V6> - IPv6 type of proxy*id values
- Proxy
Ids List<GetIpsec Tunnel List Data Auto Key Proxy Id> - IPv4 type of proxy*id values
- Ike
Gateways []GetIpsec Tunnel List Data Auto Key Ike Gateway - Ike gateway
- Ipsec
Crypto stringProfile - Ipsec crypto profile
- Proxy
Id []GetV6s Ipsec Tunnel List Data Auto Key Proxy Id V6 - IPv6 type of proxy*id values
- Proxy
Ids []GetIpsec Tunnel List Data Auto Key Proxy Id - IPv4 type of proxy*id values
- ike
Gateways List<GetIpsec Tunnel List Data Auto Key Ike Gateway> - Ike gateway
- ipsec
Crypto StringProfile - Ipsec crypto profile
- proxy
Id List<GetV6s Ipsec Tunnel List Data Auto Key Proxy Id V6> - IPv6 type of proxy*id values
- proxy
Ids List<GetIpsec Tunnel List Data Auto Key Proxy Id> - IPv4 type of proxy*id values
- ike
Gateways GetIpsec Tunnel List Data Auto Key Ike Gateway[] - Ike gateway
- ipsec
Crypto stringProfile - Ipsec crypto profile
- proxy
Id GetV6s Ipsec Tunnel List Data Auto Key Proxy Id V6[] - IPv6 type of proxy*id values
- proxy
Ids GetIpsec Tunnel List Data Auto Key Proxy Id[] - IPv4 type of proxy*id values
- ike_
gateways Sequence[GetIpsec Tunnel List Data Auto Key Ike Gateway] - Ike gateway
- ipsec_
crypto_ strprofile - Ipsec crypto profile
- proxy_
id_ Sequence[Getv6s Ipsec Tunnel List Data Auto Key Proxy Id V6] - IPv6 type of proxy*id values
- proxy_
ids Sequence[GetIpsec Tunnel List Data Auto Key Proxy Id] - IPv4 type of proxy*id values
- ike
Gateways List<Property Map> - Ike gateway
- ipsec
Crypto StringProfile - Ipsec crypto profile
- proxy
Id List<Property Map>V6s - IPv6 type of proxy*id values
- proxy
Ids 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
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol - IPv4 type of proxy*id protocol values for TCP protocol
- Remote string
- Remote
- Local string
- Local
- Name string
- Name
- Protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol - IPv4 type of proxy*id protocol values for TCP protocol
- Remote string
- Remote
- local String
- Local
- name String
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol - IPv4 type of proxy*id protocol values for TCP protocol
- remote String
- Remote
- local string
- Local
- name string
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol - IPv4 type of proxy*id protocol values for TCP protocol
- remote string
- Remote
- local str
- Local
- name str
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol - 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
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Tcp - IPv4 type of proxy*id protocol values for TCP protocol
- Udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- Number int
- IP protocol number
- Tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Tcp - IPv4 type of proxy*id protocol values for TCP protocol
- Udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number Integer
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Tcp - IPv4 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number number
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Tcp - IPv4 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number int
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Tcp - IPv4 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id Protocol Udp - 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
- Local
Port int - Local port
- Remote
Port int - Remote port
- Local
Port int - Local port
- Remote
Port int - Remote port
- local
Port Integer - Local port
- remote
Port Integer - Remote port
- local
Port number - Local port
- remote
Port number - Remote port
- local_
port int - Local port
- remote_
port int - Remote port
- local
Port Number - Local port
- remote
Port Number - Remote port
GetIpsecTunnelListDataAutoKeyProxyIdProtocolUdp
- Local
Port int - Local port
- Remote
Port int - Remote port
- Local
Port int - Local port
- Remote
Port int - Remote port
- local
Port Integer - Local port
- remote
Port Integer - Remote port
- local
Port number - Local port
- remote
Port number - Remote port
- local_
port int - Local port
- remote_
port int - Remote port
- local
Port Number - Local port
- remote
Port Number - Remote port
GetIpsecTunnelListDataAutoKeyProxyIdV6
- Local string
- Local
- Name string
- Name
- Protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol - IPv6 type of proxy*id protocol values for protocol
- Remote string
- Remote
- Local string
- Local
- Name string
- Name
- Protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol - IPv6 type of proxy*id protocol values for protocol
- Remote string
- Remote
- local String
- Local
- name String
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol - IPv6 type of proxy*id protocol values for protocol
- remote String
- Remote
- local string
- Local
- name string
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol - IPv6 type of proxy*id protocol values for protocol
- remote string
- Remote
- local str
- Local
- name str
- Name
- protocol
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol - 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
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Tcp - IPv6 type of proxy*id protocol values for TCP protocol
- Udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- Number int
- IP protocol number
- Tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Tcp - IPv6 type of proxy*id protocol values for TCP protocol
- Udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number Integer
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Tcp - IPv6 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number number
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Tcp - IPv6 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Udp - IPv6 type of proxy*id protocol values for UDP protocol
- number int
- IP protocol number
- tcp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Tcp - IPv6 type of proxy*id protocol values for TCP protocol
- udp
Get
Ipsec Tunnel List Data Auto Key Proxy Id V6Protocol Udp - 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
- Local
Port int - Local port
- Remote
Port int - Remote port
- Local
Port int - Local port
- Remote
Port int - Remote port
- local
Port Integer - Local port
- remote
Port Integer - Remote port
- local
Port number - Local port
- remote
Port number - Remote port
- local_
port int - Local port
- remote_
port int - Remote port
- local
Port Number - Local port
- remote
Port Number - Remote port
GetIpsecTunnelListDataAutoKeyProxyIdV6ProtocolUdp
- Local
Port int - Local port
- Remote
Port int - Remote port
- Local
Port int - Local port
- Remote
Port int - Remote port
- local
Port Integer - Local port
- remote
Port Integer - Remote port
- local
Port number - Local port
- remote
Port number - Remote port
- local_
port int - Local port
- remote_
port int - Remote port
- local
Port Number - Local port
- remote
Port Number - Remote port
GetIpsecTunnelListDataTunnelMonitor
- Destination
Ip string - Destination IP to send ICMP probe
- Enable bool
- Enable tunnel monitoring on this tunnel
- Proxy
Id string - Which proxy-id (or proxy-id-v6) the monitoring traffic will use
- Destination
Ip string - Destination IP to send ICMP probe
- Enable bool
- Enable tunnel monitoring on this tunnel
- Proxy
Id string - Which proxy-id (or proxy-id-v6) the monitoring traffic will use
- destination
Ip String - Destination IP to send ICMP probe
- enable Boolean
- Enable tunnel monitoring on this tunnel
- proxy
Id String - Which proxy-id (or proxy-id-v6) the monitoring traffic will use
- destination
Ip string - Destination IP to send ICMP probe
- enable boolean
- Enable tunnel monitoring on this tunnel
- proxy
Id 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
- destination
Ip String - Destination IP to send ICMP probe
- enable Boolean
- Enable tunnel monitoring on this tunnel
- proxy
Id 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
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
