sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
Explore with Pulumi AI
This resource can manage a Service LAN VPN Interface IPSec Feature Associate DHCP Server Feature .
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("example", {
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
serviceLanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
serviceDhcpServerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
service_lan_vpn_interface_ipsec_feature_id="140331f6-5418-4755-a059-13c77eb96037",
service_dhcp_server_feature_id="140331f6-5418-4755-a059-13c77eb96037")
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs{
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
ServiceLanVpnFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
ServiceLanVpnInterfaceIpsecFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
ServiceDhcpServerFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("example", new()
{
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
ServiceLanVpnInterfaceIpsecFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
ServiceDhcpServerFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature;
import com.pulumi.sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs;
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) {
var example = new ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("example", ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs.builder()
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.serviceLanVpnInterfaceIpsecFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.serviceDhcpServerFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
resources:
example:
type: sdwan:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
properties:
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
serviceLanVpnInterfaceIpsecFeatureId: 140331f6-5418-4755-a059-13c77eb96037
serviceDhcpServerFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Create ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(name: string, args: ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs, opts?: CustomResourceOptions);
@overload
def ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(resource_name: str,
args: ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_dhcp_server_feature_id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
service_lan_vpn_interface_ipsec_feature_id: Optional[str] = None)
func NewServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(ctx *Context, name string, args ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature, error)
public ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(string name, ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(String name, ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs args)
public ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(String name, ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs
- 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 ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs
- 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 ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs
- 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 serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource = new Sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource", new()
{
FeatureProfileId = "string",
ServiceDhcpServerFeatureId = "string",
ServiceLanVpnFeatureId = "string",
ServiceLanVpnInterfaceIpsecFeatureId = "string",
});
example, err := sdwan.NewServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(ctx, "serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource", &sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
ServiceDhcpServerFeatureId: pulumi.String("string"),
ServiceLanVpnFeatureId: pulumi.String("string"),
ServiceLanVpnInterfaceIpsecFeatureId: pulumi.String("string"),
})
var serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource = new ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource", ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureArgs.builder()
.featureProfileId("string")
.serviceDhcpServerFeatureId("string")
.serviceLanVpnFeatureId("string")
.serviceLanVpnInterfaceIpsecFeatureId("string")
.build());
service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature_resource = sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource",
feature_profile_id="string",
service_dhcp_server_feature_id="string",
service_lan_vpn_feature_id="string",
service_lan_vpn_interface_ipsec_feature_id="string")
const serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource = new sdwan.ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature("serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureResource", {
featureProfileId: "string",
serviceDhcpServerFeatureId: "string",
serviceLanVpnFeatureId: "string",
serviceLanVpnInterfaceIpsecFeatureId: "string",
});
type: sdwan:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
properties:
featureProfileId: string
serviceDhcpServerFeatureId: string
serviceLanVpnFeatureId: string
serviceLanVpnInterfaceIpsecFeatureId: string
ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature 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 ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- Feature
Profile stringId - Feature Profile ID
- Service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Dhcp StringServer Feature Id - Service DHCP Server Feature ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- feature
Profile stringId - Feature Profile ID
- service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- feature_
profile_ strid - Feature Profile ID
- service_
dhcp_ strserver_ feature_ id - Service DHCP Server Feature ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- service_
lan_ strvpn_ interface_ ipsec_ feature_ id - Service LAN VPN Interface IPSec Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Dhcp StringServer Feature Id - Service DHCP Server Feature ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature resource produces the following output properties:
Look up Existing ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature Resource
Get an existing ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature 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?: ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_dhcp_server_feature_id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
service_lan_vpn_interface_ipsec_feature_id: Optional[str] = None,
version: Optional[int] = None) -> ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature
func GetServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature, error)
public static ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature get(String name, Output<String> id, ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeatureState state, CustomResourceOptions options)
resources: _: type: sdwan:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature get: 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.
- Feature
Profile stringId - Feature Profile ID
- Service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- Version int
- The version of the object
- Feature
Profile stringId - Feature Profile ID
- Service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- Version int
- The version of the object
- feature
Profile StringId - Feature Profile ID
- service
Dhcp StringServer Feature Id - Service DHCP Server Feature ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- version Integer
- The version of the object
- feature
Profile stringId - Feature Profile ID
- service
Dhcp stringServer Feature Id - Service DHCP Server Feature ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan stringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- version number
- The version of the object
- feature_
profile_ strid - Feature Profile ID
- service_
dhcp_ strserver_ feature_ id - Service DHCP Server Feature ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- service_
lan_ strvpn_ interface_ ipsec_ feature_ id - Service LAN VPN Interface IPSec Feature ID
- version int
- The version of the object
- feature
Profile StringId - Feature Profile ID
- service
Dhcp StringServer Feature Id - Service DHCP Server Feature ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ipsec Feature Id - Service LAN VPN Interface IPSec Feature ID
- version Number
- The version of the object
Import
Expected import identifier with the format: “service_lan_vpn_interface_ipsec_feature_associate_dhcp_server_feature_id,feature_profile_id,service_lan_vpn_feature_id,service_lan_vpn_interface_ipsec_feature_id”
$ pulumi import sdwan:index/serviceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature:ServiceLanVpnInterfaceIpsecFeatureAssociateDhcpServerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037,140331f6-5418-4755-a059-13c77eb96037"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.