Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Fetch a list of all clusters from the "All" folder.
const allClusters = scm.getAutoVpnClusterList({
folder: "All",
limit: 10,
});
export const autoVpnClustersList = allClusters;
import pulumi
import pulumi_scm as scm
# Fetch a list of all clusters from the "All" folder.
all_clusters = scm.get_auto_vpn_cluster_list(folder="All",
limit=10)
pulumi.export("autoVpnClustersList", all_clusters)
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 {
// Fetch a list of all clusters from the "All" folder.
allClusters, err := scm.GetAutoVpnClusterList(ctx, &scm.GetAutoVpnClusterListArgs{
Folder: pulumi.StringRef("All"),
Limit: pulumi.IntRef(10),
}, nil)
if err != nil {
return err
}
ctx.Export("autoVpnClustersList", allClusters)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Fetch a list of all clusters from the "All" folder.
var allClusters = Scm.GetAutoVpnClusterList.Invoke(new()
{
Folder = "All",
Limit = 10,
});
return new Dictionary<string, object?>
{
["autoVpnClustersList"] = allClusters,
};
});
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.GetAutoVpnClusterListArgs;
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) {
// Fetch a list of all clusters from the "All" folder.
final var allClusters = ScmFunctions.getAutoVpnClusterList(GetAutoVpnClusterListArgs.builder()
.folder("All")
.limit(10)
.build());
ctx.export("autoVpnClustersList", allClusters);
}
}
variables:
# Fetch a list of all clusters from the "All" folder.
allClusters:
fn::invoke:
function: scm:getAutoVpnClusterList
arguments:
folder: All
limit: 10
outputs:
# Output the raw list of all certificate profile objects found.
autoVpnClustersList: ${allClusters}
Using getAutoVpnClusterList
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 getAutoVpnClusterList(args: GetAutoVpnClusterListArgs, opts?: InvokeOptions): Promise<GetAutoVpnClusterListResult>
function getAutoVpnClusterListOutput(args: GetAutoVpnClusterListOutputArgs, opts?: InvokeOptions): Output<GetAutoVpnClusterListResult>def get_auto_vpn_cluster_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) -> GetAutoVpnClusterListResult
def get_auto_vpn_cluster_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[GetAutoVpnClusterListResult]func GetAutoVpnClusterList(ctx *Context, args *GetAutoVpnClusterListArgs, opts ...InvokeOption) (*GetAutoVpnClusterListResult, error)
func GetAutoVpnClusterListOutput(ctx *Context, args *GetAutoVpnClusterListOutputArgs, opts ...InvokeOption) GetAutoVpnClusterListResultOutput> Note: This function is named GetAutoVpnClusterList in the Go SDK.
public static class GetAutoVpnClusterList
{
public static Task<GetAutoVpnClusterListResult> InvokeAsync(GetAutoVpnClusterListArgs args, InvokeOptions? opts = null)
public static Output<GetAutoVpnClusterListResult> Invoke(GetAutoVpnClusterListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAutoVpnClusterListResult> getAutoVpnClusterList(GetAutoVpnClusterListArgs args, InvokeOptions options)
public static Output<GetAutoVpnClusterListResult> getAutoVpnClusterList(GetAutoVpnClusterListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getAutoVpnClusterList:getAutoVpnClusterList
arguments:
# arguments dictionaryThe following arguments are supported:
getAutoVpnClusterList Result
The following output properties are available:
- Datas
List<Get
Auto Vpn Cluster List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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
Auto Vpn Cluster List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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
Auto Vpn Cluster List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- 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
Auto Vpn Cluster List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- The Terraform ID.
- 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
Auto Vpn Cluster List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- The Terraform ID.
- 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
- The Terraform ID.
- 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
GetAutoVpnClusterListData
- Branches
List<Get
Auto Vpn Cluster List Data Branch> - Branches
- Enable
Mesh boolBetween Hubs - Enable mesh between hubs?
- Enable
Mesh boolInterconnect - Enable mesh interconnect?
- Enable
Sdwan bool - Enable SD-WAN?
- Gateways
List<Get
Auto Vpn Cluster List Data Gateway> - Hubs
- Id string
- UUID of the resource
- Name string
- VPN cluster name
- Tfid string
- The Terraform ID.
- Type string
- VPN cluster type
- Branches
[]Get
Auto Vpn Cluster List Data Branch - Branches
- Enable
Mesh boolBetween Hubs - Enable mesh between hubs?
- Enable
Mesh boolInterconnect - Enable mesh interconnect?
- Enable
Sdwan bool - Enable SD-WAN?
- Gateways
[]Get
Auto Vpn Cluster List Data Gateway - Hubs
- Id string
- UUID of the resource
- Name string
- VPN cluster name
- Tfid string
- The Terraform ID.
- Type string
- VPN cluster type
- branches
List<Get
Auto Vpn Cluster List Data Branch> - Branches
- enable
Mesh BooleanBetween Hubs - Enable mesh between hubs?
- enable
Mesh BooleanInterconnect - Enable mesh interconnect?
- enable
Sdwan Boolean - Enable SD-WAN?
- gateways
List<Get
Auto Vpn Cluster List Data Gateway> - Hubs
- id String
- UUID of the resource
- name String
- VPN cluster name
- tfid String
- The Terraform ID.
- type String
- VPN cluster type
- branches
Get
Auto Vpn Cluster List Data Branch[] - Branches
- enable
Mesh booleanBetween Hubs - Enable mesh between hubs?
- enable
Mesh booleanInterconnect - Enable mesh interconnect?
- enable
Sdwan boolean - Enable SD-WAN?
- gateways
Get
Auto Vpn Cluster List Data Gateway[] - Hubs
- id string
- UUID of the resource
- name string
- VPN cluster name
- tfid string
- The Terraform ID.
- type string
- VPN cluster type
- branches
Sequence[Get
Auto Vpn Cluster List Data Branch] - Branches
- enable_
mesh_ boolbetween_ hubs - Enable mesh between hubs?
- enable_
mesh_ boolinterconnect - Enable mesh interconnect?
- enable_
sdwan bool - Enable SD-WAN?
- gateways
Sequence[Get
Auto Vpn Cluster List Data Gateway] - Hubs
- id str
- UUID of the resource
- name str
- VPN cluster name
- tfid str
- The Terraform ID.
- type str
- VPN cluster type
- branches List<Property Map>
- Branches
- enable
Mesh BooleanBetween Hubs - Enable mesh between hubs?
- enable
Mesh BooleanInterconnect - Enable mesh interconnect?
- enable
Sdwan Boolean - Enable SD-WAN?
- gateways List<Property Map>
- Hubs
- id String
- UUID of the resource
- name String
- VPN cluster name
- tfid String
- The Terraform ID.
- type String
- VPN cluster type
GetAutoVpnClusterListDataBranch
- Bgp
Redistribution stringProfile - BGP redistribution profile
- Interfaces
List<Get
Auto Vpn Cluster List Data Branch Interface> - Interfaces
- Logical
Router string - Router
- Name string
- Branch firewall serial number
- Private
Interfaces List<GetAuto Vpn Cluster List Data Branch Private Interface> - Private interfaces
- Site string
- Site name
- Bgp
Redistribution stringProfile - BGP redistribution profile
- Interfaces
[]Get
Auto Vpn Cluster List Data Branch Interface - Interfaces
- Logical
Router string - Router
- Name string
- Branch firewall serial number
- Private
Interfaces []GetAuto Vpn Cluster List Data Branch Private Interface - Private interfaces
- Site string
- Site name
- bgp
Redistribution StringProfile - BGP redistribution profile
- interfaces
List<Get
Auto Vpn Cluster List Data Branch Interface> - Interfaces
- logical
Router String - Router
- name String
- Branch firewall serial number
- private
Interfaces List<GetAuto Vpn Cluster List Data Branch Private Interface> - Private interfaces
- site String
- Site name
- bgp
Redistribution stringProfile - BGP redistribution profile
- interfaces
Get
Auto Vpn Cluster List Data Branch Interface[] - Interfaces
- logical
Router string - Router
- name string
- Branch firewall serial number
- private
Interfaces GetAuto Vpn Cluster List Data Branch Private Interface[] - Private interfaces
- site string
- Site name
- bgp_
redistribution_ strprofile - BGP redistribution profile
- interfaces
Sequence[Get
Auto Vpn Cluster List Data Branch Interface] - Interfaces
- logical_
router str - Router
- name str
- Branch firewall serial number
- private_
interfaces Sequence[GetAuto Vpn Cluster List Data Branch Private Interface] - Private interfaces
- site str
- Site name
- bgp
Redistribution StringProfile - BGP redistribution profile
- interfaces List<Property Map>
- Interfaces
- logical
Router String - Router
- name String
- Branch firewall serial number
- private
Interfaces List<Property Map> - Private interfaces
- site String
- Site name
GetAutoVpnClusterListDataBranchInterface
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Interface Sdwan Link Settings - Sdwan link settings
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip string - DHCP IP
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp_
ip str - DHCP IP
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster List Data Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterListDataBranchInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat - Upstream nat
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway string - Next hop gateway
- sdwan
Interface stringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan_
gateway str - Next hop gateway
- sdwan_
interface_ strprofile - SD-WAN interface profile
- upstream_
nat GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat Property Map - Upstream nat
GetAutoVpnClusterListDataBranchInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster List Data Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterListDataBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterListDataBranchPrivateInterface
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings - Sdwan link settings
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterListDataBranchPrivateInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway string - Next hop gateway
- sdwan
Interface stringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan_
gateway str - Next hop gateway
- sdwan_
interface_ strprofile - SD-WAN interface profile
- upstream_
nat GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat Property Map - Upstream nat
GetAutoVpnClusterListDataBranchPrivateInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster List Data Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterListDataBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterListDataGateway
- Allow
Dia boolVpn Failover - Allow DIA to VPN failover on branch device for the hub?
- Bgp
Redistribution stringProfile - BGP redistribution file
- Interfaces
List<Get
Auto Vpn Cluster List Data Gateway Interface> - Interfaces
- Logical
Router string - Router
- Name string
- Hub firewall serial number
- Priority string
- Priority
- Private
Interfaces List<GetAuto Vpn Cluster List Data Gateway Private Interface> - Private interfaces
- Site string
- Site name
- Allow
Dia boolVpn Failover - Allow DIA to VPN failover on branch device for the hub?
- Bgp
Redistribution stringProfile - BGP redistribution file
- Interfaces
[]Get
Auto Vpn Cluster List Data Gateway Interface - Interfaces
- Logical
Router string - Router
- Name string
- Hub firewall serial number
- Priority string
- Priority
- Private
Interfaces []GetAuto Vpn Cluster List Data Gateway Private Interface - Private interfaces
- Site string
- Site name
- allow
Dia BooleanVpn Failover - Allow DIA to VPN failover on branch device for the hub?
- bgp
Redistribution StringProfile - BGP redistribution file
- interfaces
List<Get
Auto Vpn Cluster List Data Gateway Interface> - Interfaces
- logical
Router String - Router
- name String
- Hub firewall serial number
- priority String
- Priority
- private
Interfaces List<GetAuto Vpn Cluster List Data Gateway Private Interface> - Private interfaces
- site String
- Site name
- allow
Dia booleanVpn Failover - Allow DIA to VPN failover on branch device for the hub?
- bgp
Redistribution stringProfile - BGP redistribution file
- interfaces
Get
Auto Vpn Cluster List Data Gateway Interface[] - Interfaces
- logical
Router string - Router
- name string
- Hub firewall serial number
- priority string
- Priority
- private
Interfaces GetAuto Vpn Cluster List Data Gateway Private Interface[] - Private interfaces
- site string
- Site name
- allow_
dia_ boolvpn_ failover - Allow DIA to VPN failover on branch device for the hub?
- bgp_
redistribution_ strprofile - BGP redistribution file
- interfaces
Sequence[Get
Auto Vpn Cluster List Data Gateway Interface] - Interfaces
- logical_
router str - Router
- name str
- Hub firewall serial number
- priority str
- Priority
- private_
interfaces Sequence[GetAuto Vpn Cluster List Data Gateway Private Interface] - Private interfaces
- site str
- Site name
- allow
Dia BooleanVpn Failover - Allow DIA to VPN failover on branch device for the hub?
- bgp
Redistribution StringProfile - BGP redistribution file
- interfaces List<Property Map>
- Interfaces
- logical
Router String - Router
- name String
- Hub firewall serial number
- priority String
- Priority
- private
Interfaces List<Property Map> - Private interfaces
- site String
- Site name
GetAutoVpnClusterListDataGatewayInterface
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Interface Sdwan Link Settings - Sdwan link settings
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip string - DHCP IP
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp_
ip str - DHCP IP
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster List Data Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterListDataGatewayInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat - Upstream nat
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway string - Next hop gateway
- sdwan
Interface stringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan_
gateway str - Next hop gateway
- sdwan_
interface_ strprofile - SD-WAN interface profile
- upstream_
nat GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat Property Map - Upstream nat
GetAutoVpnClusterListDataGatewayInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster List Data Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterListDataGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterListDataGatewayPrivateInterface
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterListDataGatewayPrivateInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway string - Next hop gateway
- sdwan
Interface stringProfile - SD-WAN interface profile
- upstream
Nat GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan_
gateway str - Next hop gateway
- sdwan_
interface_ strprofile - SD-WAN interface profile
- upstream_
nat GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat - Upstream nat
- sdwan
Gateway String - Next hop gateway
- sdwan
Interface StringProfile - SD-WAN interface profile
- upstream
Nat Property Map - Upstream nat
GetAutoVpnClusterListDataGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster List Data Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterListDataGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
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 v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
