sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
Explore with Pulumi AI
This resource can manage a Service LAN VPN Interface Ethernet Feature Associate Tracker 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example", {
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
serviceLanVpnInterfaceEthernetFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
serviceTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
service_lan_vpn_interface_ethernet_feature_id="140331f6-5418-4755-a059-13c77eb96037",
service_tracker_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.NewServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs{
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
ServiceLanVpnFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
ServiceLanVpnInterfaceEthernetFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
ServiceTrackerFeatureId: 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example", new()
{
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
ServiceLanVpnInterfaceEthernetFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
ServiceTrackerFeatureId = "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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
import com.pulumi.sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs;
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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example", ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs.builder()
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.serviceLanVpnInterfaceEthernetFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.serviceTrackerFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
resources:
example:
type: sdwan:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
properties:
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
serviceLanVpnInterfaceEthernetFeatureId: 140331f6-5418-4755-a059-13c77eb96037
serviceTrackerFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Create ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(name: string, args: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, opts?: CustomResourceOptions);
@overload
def ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(resource_name: str,
args: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
service_lan_vpn_interface_ethernet_feature_id: Optional[str] = None,
service_tracker_feature_id: Optional[str] = None)
func NewServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(ctx *Context, name string, args ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature, error)
public ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(string name, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(String name, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs args)
public ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(String name, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs
- 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs
- 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs
- 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 serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource = new Sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource", new()
{
FeatureProfileId = "string",
ServiceLanVpnFeatureId = "string",
ServiceLanVpnInterfaceEthernetFeatureId = "string",
ServiceTrackerFeatureId = "string",
});
example, err := sdwan.NewServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(ctx, "serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource", &sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
ServiceLanVpnFeatureId: pulumi.String("string"),
ServiceLanVpnInterfaceEthernetFeatureId: pulumi.String("string"),
ServiceTrackerFeatureId: pulumi.String("string"),
})
var serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource = new ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource", ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs.builder()
.featureProfileId("string")
.serviceLanVpnFeatureId("string")
.serviceLanVpnInterfaceEthernetFeatureId("string")
.serviceTrackerFeatureId("string")
.build());
service_lan_vpn_interface_ethernet_feature_associate_tracker_feature_resource = sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource",
feature_profile_id="string",
service_lan_vpn_feature_id="string",
service_lan_vpn_interface_ethernet_feature_id="string",
service_tracker_feature_id="string")
const serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource = new sdwan.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResource", {
featureProfileId: "string",
serviceLanVpnFeatureId: "string",
serviceLanVpnInterfaceEthernetFeatureId: "string",
serviceTrackerFeatureId: "string",
});
type: sdwan:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
properties:
featureProfileId: string
serviceLanVpnFeatureId: string
serviceLanVpnInterfaceEthernetFeatureId: string
serviceTrackerFeatureId: string
ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- Service
Tracker stringFeature Id - Service Tracker Feature ID
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- Service
Tracker stringFeature Id - Service Tracker Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker StringFeature Id - Service Tracker Feature ID
- feature
Profile stringId - Feature Profile ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker stringFeature Id - Service Tracker Feature ID
- feature_
profile_ strid - Feature Profile ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- service_
lan_ strvpn_ interface_ ethernet_ feature_ id - Service LAN VPN Interface Ethernet Feature ID
- service_
tracker_ strfeature_ id - Service Tracker Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker StringFeature Id - Service Tracker Feature ID
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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 str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature Resource
Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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?: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
service_lan_vpn_interface_ethernet_feature_id: Optional[str] = None,
service_tracker_feature_id: Optional[str] = None) -> ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature
func GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature, error)
public static ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature get(String name, Output<String> id, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState state, CustomResourceOptions options)
resources: _: type: sdwan:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- Service
Tracker stringFeature Id - Service Tracker Feature ID
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- Service
Tracker stringFeature Id - Service Tracker Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker StringFeature Id - Service Tracker Feature ID
- feature
Profile stringId - Feature Profile ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan stringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker stringFeature Id - Service Tracker Feature ID
- feature_
profile_ strid - Feature Profile ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- service_
lan_ strvpn_ interface_ ethernet_ feature_ id - Service LAN VPN Interface Ethernet Feature ID
- service_
tracker_ strfeature_ id - Service Tracker Feature ID
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- service
Lan StringVpn Interface Ethernet Feature Id - Service LAN VPN Interface Ethernet Feature ID
- service
Tracker StringFeature Id - Service Tracker Feature ID
Import
$ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.