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
AutoVpnCluster data source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Look up the application group by its ID from the terraform.tfstate file.
const scmAutoVpnClusterDs = scm.getAutoVpnCluster({
id: "e3c732fb-85c7-4116-b5ed-ba3977209b29",
});
export const autoVpnClusterOutputs = {
id: scmAutoVpnClusterDs.then(scmAutoVpnClusterDs => scmAutoVpnClusterDs.id),
name: scmAutoVpnClusterDs.then(scmAutoVpnClusterDs => scmAutoVpnClusterDs.name),
branches: scmAutoVpnClusterDs.then(scmAutoVpnClusterDs => scmAutoVpnClusterDs.branches),
gateways: scmAutoVpnClusterDs.then(scmAutoVpnClusterDs => scmAutoVpnClusterDs.gateways),
enableSdwan: scmAutoVpnClusterDs.then(scmAutoVpnClusterDs => scmAutoVpnClusterDs.enableSdwan),
};
import pulumi
import pulumi_scm as scm
# Look up the application group by its ID from the terraform.tfstate file.
scm_auto_vpn_cluster_ds = scm.get_auto_vpn_cluster(id="e3c732fb-85c7-4116-b5ed-ba3977209b29")
pulumi.export("autoVpnClusterOutputs", {
"id": scm_auto_vpn_cluster_ds.id,
"name": scm_auto_vpn_cluster_ds.name,
"branches": scm_auto_vpn_cluster_ds.branches,
"gateways": scm_auto_vpn_cluster_ds.gateways,
"enableSdwan": scm_auto_vpn_cluster_ds.enable_sdwan,
})
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 {
// Look up the application group by its ID from the terraform.tfstate file.
scmAutoVpnClusterDs, err := scm.LookupAutoVpnCluster(ctx, &scm.LookupAutoVpnClusterArgs{
Id: "e3c732fb-85c7-4116-b5ed-ba3977209b29",
}, nil)
if err != nil {
return err
}
ctx.Export("autoVpnClusterOutputs", pulumi.Map{
"id": scmAutoVpnClusterDs.Id,
"name": scmAutoVpnClusterDs.Name,
"branches": scmAutoVpnClusterDs.Branches,
"gateways": scmAutoVpnClusterDs.Gateways,
"enableSdwan": scmAutoVpnClusterDs.EnableSdwan,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Look up the application group by its ID from the terraform.tfstate file.
var scmAutoVpnClusterDs = Scm.GetAutoVpnCluster.Invoke(new()
{
Id = "e3c732fb-85c7-4116-b5ed-ba3977209b29",
});
return new Dictionary<string, object?>
{
["autoVpnClusterOutputs"] =
{
{ "id", scmAutoVpnClusterDs.Apply(getAutoVpnClusterResult => getAutoVpnClusterResult.Id) },
{ "name", scmAutoVpnClusterDs.Apply(getAutoVpnClusterResult => getAutoVpnClusterResult.Name) },
{ "branches", scmAutoVpnClusterDs.Apply(getAutoVpnClusterResult => getAutoVpnClusterResult.Branches) },
{ "gateways", scmAutoVpnClusterDs.Apply(getAutoVpnClusterResult => getAutoVpnClusterResult.Gateways) },
{ "enableSdwan", scmAutoVpnClusterDs.Apply(getAutoVpnClusterResult => getAutoVpnClusterResult.EnableSdwan) },
},
};
});
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.GetAutoVpnClusterArgs;
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) {
// Look up the application group by its ID from the terraform.tfstate file.
final var scmAutoVpnClusterDs = ScmFunctions.getAutoVpnCluster(GetAutoVpnClusterArgs.builder()
.id("e3c732fb-85c7-4116-b5ed-ba3977209b29")
.build());
ctx.export("autoVpnClusterOutputs", Map.ofEntries(
Map.entry("id", scmAutoVpnClusterDs.id()),
Map.entry("name", scmAutoVpnClusterDs.name()),
Map.entry("branches", scmAutoVpnClusterDs.branches()),
Map.entry("gateways", scmAutoVpnClusterDs.gateways()),
Map.entry("enableSdwan", scmAutoVpnClusterDs.enableSdwan())
));
}
}
variables:
# Look up the application group by its ID from the terraform.tfstate file.
scmAutoVpnClusterDs:
fn::invoke:
function: scm:getAutoVpnCluster
arguments:
id: e3c732fb-85c7-4116-b5ed-ba3977209b29
outputs:
# Output the members of the application group.
autoVpnClusterOutputs:
id: ${scmAutoVpnClusterDs.id}
name: ${scmAutoVpnClusterDs.name}
branches: ${scmAutoVpnClusterDs.branches}
gateways: ${scmAutoVpnClusterDs.gateways}
enableSdwan: ${scmAutoVpnClusterDs.enableSdwan}
Using getAutoVpnCluster
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 getAutoVpnCluster(args: GetAutoVpnClusterArgs, opts?: InvokeOptions): Promise<GetAutoVpnClusterResult>
function getAutoVpnClusterOutput(args: GetAutoVpnClusterOutputArgs, opts?: InvokeOptions): Output<GetAutoVpnClusterResult>def get_auto_vpn_cluster(id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAutoVpnClusterResult
def get_auto_vpn_cluster_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAutoVpnClusterResult]func LookupAutoVpnCluster(ctx *Context, args *LookupAutoVpnClusterArgs, opts ...InvokeOption) (*LookupAutoVpnClusterResult, error)
func LookupAutoVpnClusterOutput(ctx *Context, args *LookupAutoVpnClusterOutputArgs, opts ...InvokeOption) LookupAutoVpnClusterResultOutput> Note: This function is named LookupAutoVpnCluster in the Go SDK.
public static class GetAutoVpnCluster
{
public static Task<GetAutoVpnClusterResult> InvokeAsync(GetAutoVpnClusterArgs args, InvokeOptions? opts = null)
public static Output<GetAutoVpnClusterResult> Invoke(GetAutoVpnClusterInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAutoVpnClusterResult> getAutoVpnCluster(GetAutoVpnClusterArgs args, InvokeOptions options)
public static Output<GetAutoVpnClusterResult> getAutoVpnCluster(GetAutoVpnClusterArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getAutoVpnCluster:getAutoVpnCluster
arguments:
# arguments dictionaryThe following arguments are supported:
getAutoVpnCluster Result
The following output properties are available:
- Branches
List<Get
Auto Vpn Cluster 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 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 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 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 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 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 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 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 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 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
Supporting Types
GetAutoVpnClusterBranch
- Bgp
Redistribution stringProfile - BGP redistribution profile
- Interfaces
List<Get
Auto Vpn Cluster Branch Interface> - Interfaces
- Logical
Router string - Router
- Name string
- Branch firewall serial number
- Private
Interfaces List<GetAuto Vpn Cluster Branch Private Interface> - Private interfaces
- Site string
- Site name
- Bgp
Redistribution stringProfile - BGP redistribution profile
- Interfaces
[]Get
Auto Vpn Cluster Branch Interface - Interfaces
- Logical
Router string - Router
- Name string
- Branch firewall serial number
- Private
Interfaces []GetAuto Vpn Cluster Branch Private Interface - Private interfaces
- Site string
- Site name
- bgp
Redistribution StringProfile - BGP redistribution profile
- interfaces
List<Get
Auto Vpn Cluster Branch Interface> - Interfaces
- logical
Router String - Router
- name String
- Branch firewall serial number
- private
Interfaces List<GetAuto Vpn Cluster Branch Private Interface> - Private interfaces
- site String
- Site name
- bgp
Redistribution stringProfile - BGP redistribution profile
- interfaces
Get
Auto Vpn Cluster Branch Interface[] - Interfaces
- logical
Router string - Router
- name string
- Branch firewall serial number
- private
Interfaces GetAuto Vpn Cluster Branch Private Interface[] - Private interfaces
- site string
- Site name
- bgp_
redistribution_ strprofile - BGP redistribution profile
- interfaces
Sequence[Get
Auto Vpn Cluster Branch Interface] - Interfaces
- logical_
router str - Router
- name str
- Branch firewall serial number
- private_
interfaces Sequence[GetAuto Vpn Cluster 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
GetAutoVpnClusterBranchInterface
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Branch Interface Sdwan Link Settings - Sdwan link settings
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip string - DHCP IP
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp_
ip str - DHCP IP
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster Branch Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterBranchInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster 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 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 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 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 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
GetAutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster Branch Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterBranchPrivateInterface
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Branch Private Interface Sdwan Link Settings - Sdwan link settings
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster Branch Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterBranchPrivateInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster 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 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 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 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 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
GetAutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster Branch Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterGateway
- 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 Gateway Interface> - Interfaces
- Logical
Router string - Router
- Name string
- Hub firewall serial number
- Priority string
- Priority
- Private
Interfaces List<GetAuto Vpn Cluster 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 Gateway Interface - Interfaces
- Logical
Router string - Router
- Name string
- Hub firewall serial number
- Priority string
- Priority
- Private
Interfaces []GetAuto Vpn Cluster 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 Gateway Interface> - Interfaces
- logical
Router String - Router
- name String
- Hub firewall serial number
- priority String
- Priority
- private
Interfaces List<GetAuto Vpn Cluster 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 Gateway Interface[] - Interfaces
- logical
Router string - Router
- name string
- Hub firewall serial number
- priority string
- Priority
- private
Interfaces GetAuto Vpn Cluster 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 Gateway Interface] - Interfaces
- logical_
router str - Router
- name str
- Hub firewall serial number
- priority str
- Priority
- private_
interfaces Sequence[GetAuto Vpn Cluster 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
GetAutoVpnClusterGatewayInterface
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Gateway Interface Sdwan Link Settings - Sdwan link settings
- Dhcp
Ip string - DHCP IP
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip string - DHCP IP
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp_
ip str - DHCP IP
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster Gateway Interface Sdwan Link Settings - Sdwan link settings
- dhcp
Ip String - DHCP IP
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterGatewayInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster 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 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 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 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 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
GetAutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster Gateway Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- fqdn str
- FQDN
- ip_
address str IP address
ℹ️ Note: You must specify exactly one of
fqdnandip_address.
GetAutoVpnClusterGatewayPrivateInterface
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- Name string
- Ethernet interface
- Sdwan
Link GetSettings Auto Vpn Cluster Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name string
- Ethernet interface
- sdwan
Link GetSettings Auto Vpn Cluster Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name str
- Ethernet interface
- sdwan_
link_ Getsettings Auto Vpn Cluster Gateway Private Interface Sdwan Link Settings - Sdwan link settings
- name String
- Ethernet interface
- sdwan
Link Property MapSettings - Sdwan link settings
GetAutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettings
- Sdwan
Gateway string - Next hop gateway
- Sdwan
Interface stringProfile - SD-WAN interface profile
- Upstream
Nat GetAuto Vpn Cluster 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 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 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 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 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
GetAutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNat
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- Enable bool
- Upstream NAT?
- Static
Ip GetAuto Vpn Cluster Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable boolean
- Upstream NAT?
- static
Ip GetAuto Vpn Cluster Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable bool
- Upstream NAT?
- static_
ip GetAuto Vpn Cluster Gateway Private Interface Sdwan Link Settings Upstream Nat Static Ip - Static ip
- enable Boolean
- Upstream NAT?
- static
Ip Property Map - Static ip
GetAutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp
- 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
