published on Friday, Sep 4, 2026 by Pulumi
published on Friday, Sep 4, 2026 by Pulumi
This resource can manage a SXP VPN.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = new ise.trustsec.SxpVpn("example", {sxpVpnName: "sxpvpn1"});
import pulumi
import pulumi_ise as ise
example = ise.trustsec.SxpVpn("example", sxp_vpn_name="sxpvpn1")
package main
import (
"github.com/pulumi/pulumi-ise/sdk/go/ise/trustsec"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := trustsec.NewSxpVpn(ctx, "example", &trustsec.SxpVpnArgs{
SxpVpnName: pulumi.String("sxpvpn1"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;
return await Deployment.RunAsync(() =>
{
var example = new Ise.TrustSec.SxpVpn("example", new()
{
SxpVpnName = "sxpvpn1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.trustsec.SxpVpn;
import com.pulumi.ise.trustsec.SxpVpnArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
var example = new SxpVpn("example", SxpVpnArgs.builder()
.sxpVpnName("sxpvpn1")
.build());
}
}
resources:
example:
type: ise:trustsec:SxpVpn
properties:
sxpVpnName: sxpvpn1
pulumi {
required_providers {
ise = {
source = "pulumi/ise"
}
}
}
resource "ise_trustsec_sxpvpn" "example" {
sxp_vpn_name = "sxpvpn1"
}
Create SxpVpn Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SxpVpn(name: string, args: SxpVpnArgs, opts?: CustomResourceOptions);@overload
def SxpVpn(resource_name: str,
args: SxpVpnArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SxpVpn(resource_name: str,
opts: Optional[ResourceOptions] = None,
sxp_vpn_name: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None)func NewSxpVpn(ctx *Context, name string, args SxpVpnArgs, opts ...ResourceOption) (*SxpVpn, error)public SxpVpn(string name, SxpVpnArgs args, CustomResourceOptions? opts = null)
public SxpVpn(String name, SxpVpnArgs args)
public SxpVpn(String name, SxpVpnArgs args, CustomResourceOptions options)
type: ise:trustsec:SxpVpn
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "ise_trustsec_sxp_vpn" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SxpVpnArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SxpVpnArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SxpVpnArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SxpVpnArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SxpVpnArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sxpVpnResource = new Ise.TrustSec.SxpVpn("sxpVpnResource", new()
{
SxpVpnName = "string",
Description = "string",
Name = "string",
});
example, err := trustsec.NewSxpVpn(ctx, "sxpVpnResource", &trustsec.SxpVpnArgs{
SxpVpnName: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "ise_trustsec_sxp_vpn" "sxpVpnResource" {
lifecycle {
create_before_destroy = true
}
sxp_vpn_name = "string"
description = "string"
name = "string"
}
var sxpVpnResource = new SxpVpn("sxpVpnResource", SxpVpnArgs.builder()
.sxpVpnName("string")
.description("string")
.name("string")
.build());
sxp_vpn_resource = ise.trustsec.SxpVpn("sxpVpnResource",
sxp_vpn_name="string",
description="string",
name="string")
const sxpVpnResource = new ise.trustsec.SxpVpn("sxpVpnResource", {
sxpVpnName: "string",
description: "string",
name: "string",
});
type: ise:trustsec:SxpVpn
properties:
description: string
name: string
sxpVpnName: string
SxpVpn Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SxpVpn resource accepts the following input properties:
- Sxp
Vpn stringName - The name of the SXP VPN domain, for example
default. - Description string
- The description of the SXP VPN.
- Name string
- The name of the SXP VPN.
- Sxp
Vpn stringName - The name of the SXP VPN domain, for example
default. - Description string
- The description of the SXP VPN.
- Name string
- The name of the SXP VPN.
- sxp_
vpn_ stringname - The name of the SXP VPN domain, for example
default. - description string
- The description of the SXP VPN.
- name string
- The name of the SXP VPN.
- sxp
Vpn StringName - The name of the SXP VPN domain, for example
default. - description String
- The description of the SXP VPN.
- name String
- The name of the SXP VPN.
- sxp
Vpn stringName - The name of the SXP VPN domain, for example
default. - description string
- The description of the SXP VPN.
- name string
- The name of the SXP VPN.
- sxp_
vpn_ strname - The name of the SXP VPN domain, for example
default. - description str
- The description of the SXP VPN.
- name str
- The name of the SXP VPN.
- sxp
Vpn StringName - The name of the SXP VPN domain, for example
default. - description String
- The description of the SXP VPN.
- name String
- The name of the SXP VPN.
Outputs
All input properties are implicitly available as output properties. Additionally, the SxpVpn resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SxpVpn Resource
Get an existing SxpVpn resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SxpVpnState, opts?: CustomResourceOptions): SxpVpn@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
sxp_vpn_name: Optional[str] = None) -> SxpVpnfunc GetSxpVpn(ctx *Context, name string, id IDInput, state *SxpVpnState, opts ...ResourceOption) (*SxpVpn, error)public static SxpVpn Get(string name, Input<string> id, SxpVpnState? state, CustomResourceOptions? opts = null)public static SxpVpn get(String name, Output<String> id, SxpVpnState state, CustomResourceOptions options)resources: _: type: ise:trustsec:SxpVpn get: id: ${id}import {
to = ise_trustsec_sxp_vpn.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the SXP VPN.
- Name string
- The name of the SXP VPN.
- Sxp
Vpn stringName - The name of the SXP VPN domain, for example
default.
- Description string
- The description of the SXP VPN.
- Name string
- The name of the SXP VPN.
- Sxp
Vpn stringName - The name of the SXP VPN domain, for example
default.
- description string
- The description of the SXP VPN.
- name string
- The name of the SXP VPN.
- sxp_
vpn_ stringname - The name of the SXP VPN domain, for example
default.
- description String
- The description of the SXP VPN.
- name String
- The name of the SXP VPN.
- sxp
Vpn StringName - The name of the SXP VPN domain, for example
default.
- description string
- The description of the SXP VPN.
- name string
- The name of the SXP VPN.
- sxp
Vpn stringName - The name of the SXP VPN domain, for example
default.
- description str
- The description of the SXP VPN.
- name str
- The name of the SXP VPN.
- sxp_
vpn_ strname - The name of the SXP VPN domain, for example
default.
- description String
- The description of the SXP VPN.
- name String
- The name of the SXP VPN.
- sxp
Vpn StringName - The name of the SXP VPN domain, for example
default.
Import
The pulumi import command can be used, for example:
$ pulumi import ise:trustsec/sxpVpn:SxpVpn example "76d24097-41c4-4558-a4d0-a8c07ac08470"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
iseTerraform Provider.
published on Friday, Sep 4, 2026 by Pulumi