sdwan.SystemPerformanceMonitoringFeature
This resource can manage a System Performance Monitoring 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.SystemPerformanceMonitoringFeature("example", {
    name: "Example",
    description: "My Example",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    appPerfMonitorEnabled: true,
    appPerfMonitorAppGroups: ["amazon-group"],
    monitoringConfigEnabled: true,
    monitoringConfigInterval: "30",
    eventDrivenConfigEnabled: true,
    eventDrivenEvents: ["SLA_CHANGE"],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.SystemPerformanceMonitoringFeature("example",
    name="Example",
    description="My Example",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    app_perf_monitor_enabled=True,
    app_perf_monitor_app_groups=["amazon-group"],
    monitoring_config_enabled=True,
    monitoring_config_interval="30",
    event_driven_config_enabled=True,
    event_driven_events=["SLA_CHANGE"])
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.NewSystemPerformanceMonitoringFeature(ctx, "example", &sdwan.SystemPerformanceMonitoringFeatureArgs{
			Name:                  pulumi.String("Example"),
			Description:           pulumi.String("My Example"),
			FeatureProfileId:      pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			AppPerfMonitorEnabled: pulumi.Bool(true),
			AppPerfMonitorAppGroups: pulumi.StringArray{
				pulumi.String("amazon-group"),
			},
			MonitoringConfigEnabled:  pulumi.Bool(true),
			MonitoringConfigInterval: pulumi.String("30"),
			EventDrivenConfigEnabled: pulumi.Bool(true),
			EventDrivenEvents: pulumi.StringArray{
				pulumi.String("SLA_CHANGE"),
			},
		})
		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.SystemPerformanceMonitoringFeature("example", new()
    {
        Name = "Example",
        Description = "My Example",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        AppPerfMonitorEnabled = true,
        AppPerfMonitorAppGroups = new[]
        {
            "amazon-group",
        },
        MonitoringConfigEnabled = true,
        MonitoringConfigInterval = "30",
        EventDrivenConfigEnabled = true,
        EventDrivenEvents = new[]
        {
            "SLA_CHANGE",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SystemPerformanceMonitoringFeature;
import com.pulumi.sdwan.SystemPerformanceMonitoringFeatureArgs;
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 SystemPerformanceMonitoringFeature("example", SystemPerformanceMonitoringFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .appPerfMonitorEnabled(true)
            .appPerfMonitorAppGroups("amazon-group")
            .monitoringConfigEnabled(true)
            .monitoringConfigInterval("30")
            .eventDrivenConfigEnabled(true)
            .eventDrivenEvents("SLA_CHANGE")
            .build());
    }
}
resources:
  example:
    type: sdwan:SystemPerformanceMonitoringFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      appPerfMonitorEnabled: true
      appPerfMonitorAppGroups:
        - amazon-group
      monitoringConfigEnabled: true
      monitoringConfigInterval: '30'
      eventDrivenConfigEnabled: true
      eventDrivenEvents:
        - SLA_CHANGE
Create SystemPerformanceMonitoringFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemPerformanceMonitoringFeature(name: string, args: SystemPerformanceMonitoringFeatureArgs, opts?: CustomResourceOptions);@overload
def SystemPerformanceMonitoringFeature(resource_name: str,
                                       args: SystemPerformanceMonitoringFeatureArgs,
                                       opts: Optional[ResourceOptions] = None)
@overload
def SystemPerformanceMonitoringFeature(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       feature_profile_id: Optional[str] = None,
                                       app_perf_monitor_app_groups: Optional[Sequence[str]] = None,
                                       app_perf_monitor_enabled: Optional[bool] = None,
                                       description: Optional[str] = None,
                                       event_driven_config_enabled: Optional[bool] = None,
                                       event_driven_events: Optional[Sequence[str]] = None,
                                       monitoring_config_enabled: Optional[bool] = None,
                                       monitoring_config_interval: Optional[str] = None,
                                       name: Optional[str] = None)func NewSystemPerformanceMonitoringFeature(ctx *Context, name string, args SystemPerformanceMonitoringFeatureArgs, opts ...ResourceOption) (*SystemPerformanceMonitoringFeature, error)public SystemPerformanceMonitoringFeature(string name, SystemPerformanceMonitoringFeatureArgs args, CustomResourceOptions? opts = null)
public SystemPerformanceMonitoringFeature(String name, SystemPerformanceMonitoringFeatureArgs args)
public SystemPerformanceMonitoringFeature(String name, SystemPerformanceMonitoringFeatureArgs args, CustomResourceOptions options)
type: sdwan:SystemPerformanceMonitoringFeature
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 SystemPerformanceMonitoringFeatureArgs
- 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 SystemPerformanceMonitoringFeatureArgs
- 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 SystemPerformanceMonitoringFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemPerformanceMonitoringFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemPerformanceMonitoringFeatureArgs
- 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 systemPerformanceMonitoringFeatureResource = new Sdwan.SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource", new()
{
    FeatureProfileId = "string",
    AppPerfMonitorAppGroups = new[]
    {
        "string",
    },
    AppPerfMonitorEnabled = false,
    Description = "string",
    EventDrivenConfigEnabled = false,
    EventDrivenEvents = new[]
    {
        "string",
    },
    MonitoringConfigEnabled = false,
    MonitoringConfigInterval = "string",
    Name = "string",
});
example, err := sdwan.NewSystemPerformanceMonitoringFeature(ctx, "systemPerformanceMonitoringFeatureResource", &sdwan.SystemPerformanceMonitoringFeatureArgs{
	FeatureProfileId: pulumi.String("string"),
	AppPerfMonitorAppGroups: pulumi.StringArray{
		pulumi.String("string"),
	},
	AppPerfMonitorEnabled:    pulumi.Bool(false),
	Description:              pulumi.String("string"),
	EventDrivenConfigEnabled: pulumi.Bool(false),
	EventDrivenEvents: pulumi.StringArray{
		pulumi.String("string"),
	},
	MonitoringConfigEnabled:  pulumi.Bool(false),
	MonitoringConfigInterval: pulumi.String("string"),
	Name:                     pulumi.String("string"),
})
var systemPerformanceMonitoringFeatureResource = new SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource", SystemPerformanceMonitoringFeatureArgs.builder()
    .featureProfileId("string")
    .appPerfMonitorAppGroups("string")
    .appPerfMonitorEnabled(false)
    .description("string")
    .eventDrivenConfigEnabled(false)
    .eventDrivenEvents("string")
    .monitoringConfigEnabled(false)
    .monitoringConfigInterval("string")
    .name("string")
    .build());
system_performance_monitoring_feature_resource = sdwan.SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource",
    feature_profile_id="string",
    app_perf_monitor_app_groups=["string"],
    app_perf_monitor_enabled=False,
    description="string",
    event_driven_config_enabled=False,
    event_driven_events=["string"],
    monitoring_config_enabled=False,
    monitoring_config_interval="string",
    name="string")
const systemPerformanceMonitoringFeatureResource = new sdwan.SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource", {
    featureProfileId: "string",
    appPerfMonitorAppGroups: ["string"],
    appPerfMonitorEnabled: false,
    description: "string",
    eventDrivenConfigEnabled: false,
    eventDrivenEvents: ["string"],
    monitoringConfigEnabled: false,
    monitoringConfigInterval: "string",
    name: "string",
});
type: sdwan:SystemPerformanceMonitoringFeature
properties:
    appPerfMonitorAppGroups:
        - string
    appPerfMonitorEnabled: false
    description: string
    eventDrivenConfigEnabled: false
    eventDrivenEvents:
        - string
    featureProfileId: string
    monitoringConfigEnabled: false
    monitoringConfigInterval: string
    name: string
SystemPerformanceMonitoringFeature 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 SystemPerformanceMonitoringFeature resource accepts the following input properties:
- FeatureProfile stringId 
- Feature Profile ID
- AppPerf List<string>Monitor App Groups 
- Application groups to be monitored
- AppPerf boolMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- Description string
- The description of the Feature
- EventDriven boolConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- EventDriven List<string>Events 
- UMTS events
- MonitoringConfig boolEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- MonitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- Name string
- The name of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- AppPerf []stringMonitor App Groups 
- Application groups to be monitored
- AppPerf boolMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- Description string
- The description of the Feature
- EventDriven boolConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- EventDriven []stringEvents 
- UMTS events
- MonitoringConfig boolEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- MonitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- Name string
- The name of the Feature
- featureProfile StringId 
- Feature Profile ID
- appPerf List<String>Monitor App Groups 
- Application groups to be monitored
- appPerf BooleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description String
- The description of the Feature
- eventDriven BooleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven List<String>Events 
- UMTS events
- monitoringConfig BooleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig StringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name String
- The name of the Feature
- featureProfile stringId 
- Feature Profile ID
- appPerf string[]Monitor App Groups 
- Application groups to be monitored
- appPerf booleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description string
- The description of the Feature
- eventDriven booleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven string[]Events 
- UMTS events
- monitoringConfig booleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name string
- The name of the Feature
- feature_profile_ strid 
- Feature Profile ID
- app_perf_ Sequence[str]monitor_ app_ groups 
- Application groups to be monitored
- app_perf_ boolmonitor_ enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description str
- The description of the Feature
- event_driven_ boolconfig_ enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- event_driven_ Sequence[str]events 
- UMTS events
- monitoring_config_ boolenabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoring_config_ strinterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name str
- The name of the Feature
- featureProfile StringId 
- Feature Profile ID
- appPerf List<String>Monitor App Groups 
- Application groups to be monitored
- appPerf BooleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description String
- The description of the Feature
- eventDriven BooleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven List<String>Events 
- UMTS events
- monitoringConfig BooleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig StringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name String
- The name of the Feature
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemPerformanceMonitoringFeature resource produces the following output properties:
Look up Existing SystemPerformanceMonitoringFeature Resource
Get an existing SystemPerformanceMonitoringFeature 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?: SystemPerformanceMonitoringFeatureState, opts?: CustomResourceOptions): SystemPerformanceMonitoringFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        app_perf_monitor_app_groups: Optional[Sequence[str]] = None,
        app_perf_monitor_enabled: Optional[bool] = None,
        description: Optional[str] = None,
        event_driven_config_enabled: Optional[bool] = None,
        event_driven_events: Optional[Sequence[str]] = None,
        feature_profile_id: Optional[str] = None,
        monitoring_config_enabled: Optional[bool] = None,
        monitoring_config_interval: Optional[str] = None,
        name: Optional[str] = None,
        version: Optional[int] = None) -> SystemPerformanceMonitoringFeaturefunc GetSystemPerformanceMonitoringFeature(ctx *Context, name string, id IDInput, state *SystemPerformanceMonitoringFeatureState, opts ...ResourceOption) (*SystemPerformanceMonitoringFeature, error)public static SystemPerformanceMonitoringFeature Get(string name, Input<string> id, SystemPerformanceMonitoringFeatureState? state, CustomResourceOptions? opts = null)public static SystemPerformanceMonitoringFeature get(String name, Output<String> id, SystemPerformanceMonitoringFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:SystemPerformanceMonitoringFeature    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.
- AppPerf List<string>Monitor App Groups 
- Application groups to be monitored
- AppPerf boolMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- Description string
- The description of the Feature
- EventDriven boolConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- EventDriven List<string>Events 
- UMTS events
- FeatureProfile stringId 
- Feature Profile ID
- MonitoringConfig boolEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- MonitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- AppPerf []stringMonitor App Groups 
- Application groups to be monitored
- AppPerf boolMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- Description string
- The description of the Feature
- EventDriven boolConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- EventDriven []stringEvents 
- UMTS events
- FeatureProfile stringId 
- Feature Profile ID
- MonitoringConfig boolEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- MonitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- appPerf List<String>Monitor App Groups 
- Application groups to be monitored
- appPerf BooleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description String
- The description of the Feature
- eventDriven BooleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven List<String>Events 
- UMTS events
- featureProfile StringId 
- Feature Profile ID
- monitoringConfig BooleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig StringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name String
- The name of the Feature
- version Integer
- The version of the Feature
- appPerf string[]Monitor App Groups 
- Application groups to be monitored
- appPerf booleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description string
- The description of the Feature
- eventDriven booleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven string[]Events 
- UMTS events
- featureProfile stringId 
- Feature Profile ID
- monitoringConfig booleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig stringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name string
- The name of the Feature
- version number
- The version of the Feature
- app_perf_ Sequence[str]monitor_ app_ groups 
- Application groups to be monitored
- app_perf_ boolmonitor_ enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description str
- The description of the Feature
- event_driven_ boolconfig_ enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- event_driven_ Sequence[str]events 
- UMTS events
- feature_profile_ strid 
- Feature Profile ID
- monitoring_config_ boolenabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoring_config_ strinterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name str
- The name of the Feature
- version int
- The version of the Feature
- appPerf List<String>Monitor App Groups 
- Application groups to be monitored
- appPerf BooleanMonitor Enabled 
- Application performance monitoring enable or disable- Default value: false
 
- Default value: 
- description String
- The description of the Feature
- eventDriven BooleanConfig Enabled 
- UMTS event driven monitoring enable or disable- Default value: false
 
- Default value: 
- eventDriven List<String>Events 
- UMTS events
- featureProfile StringId 
- Feature Profile ID
- monitoringConfig BooleanEnabled 
- UMTS monitoring enable or disable- Default value: false
 
- Default value: 
- monitoringConfig StringInterval 
- UMTS monitoring interval(Minutes)- Choices: 30,60
 
- Choices: 
- name String
- The name of the Feature
- version Number
- The version of the Feature
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “system_performance_monitoring_feature_id,feature_profile_id”
$ pulumi import sdwan:index/systemPerformanceMonitoringFeature:SystemPerformanceMonitoringFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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 sdwanTerraform Provider.
 
