sdwan.SystemPerformanceMonitoringFeature
Explore with Pulumi AI
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: Optional[SystemPerformanceMonitoringFeatureArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemPerformanceMonitoringFeature(resource_name: 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)
func NewSystemPerformanceMonitoringFeature(ctx *Context, name string, args *SystemPerformanceMonitoringFeatureArgs, opts ...ResourceOption) (*SystemPerformanceMonitoringFeature, error)
public SystemPerformanceMonitoringFeature(string name, SystemPerformanceMonitoringFeatureArgs? args = null, 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()
{
AppPerfMonitorAppGroups = new[]
{
"string",
},
AppPerfMonitorEnabled = false,
Description = "string",
EventDrivenConfigEnabled = false,
EventDrivenEvents = new[]
{
"string",
},
FeatureProfileId = "string",
MonitoringConfigEnabled = false,
MonitoringConfigInterval = "string",
Name = "string",
});
example, err := sdwan.NewSystemPerformanceMonitoringFeature(ctx, "systemPerformanceMonitoringFeatureResource", &sdwan.SystemPerformanceMonitoringFeatureArgs{
AppPerfMonitorAppGroups: pulumi.StringArray{
pulumi.String("string"),
},
AppPerfMonitorEnabled: pulumi.Bool(false),
Description: pulumi.String("string"),
EventDrivenConfigEnabled: pulumi.Bool(false),
EventDrivenEvents: pulumi.StringArray{
pulumi.String("string"),
},
FeatureProfileId: pulumi.String("string"),
MonitoringConfigEnabled: pulumi.Bool(false),
MonitoringConfigInterval: pulumi.String("string"),
Name: pulumi.String("string"),
})
var systemPerformanceMonitoringFeatureResource = new SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource", SystemPerformanceMonitoringFeatureArgs.builder()
.appPerfMonitorAppGroups("string")
.appPerfMonitorEnabled(false)
.description("string")
.eventDrivenConfigEnabled(false)
.eventDrivenEvents("string")
.featureProfileId("string")
.monitoringConfigEnabled(false)
.monitoringConfigInterval("string")
.name("string")
.build());
system_performance_monitoring_feature_resource = sdwan.SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource",
app_perf_monitor_app_groups=["string"],
app_perf_monitor_enabled=False,
description="string",
event_driven_config_enabled=False,
event_driven_events=["string"],
feature_profile_id="string",
monitoring_config_enabled=False,
monitoring_config_interval="string",
name="string")
const systemPerformanceMonitoringFeatureResource = new sdwan.SystemPerformanceMonitoringFeature("systemPerformanceMonitoringFeatureResource", {
appPerfMonitorAppGroups: ["string"],
appPerfMonitorEnabled: false,
description: "string",
eventDrivenConfigEnabled: false,
eventDrivenEvents: ["string"],
featureProfileId: "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
The SystemPerformanceMonitoringFeature resource accepts the following input properties:
- App
Perf List<string>Monitor App Groups - Application groups to be monitored
- App
Perf boolMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- Description string
- The description of the Feature
- Event
Driven boolConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- Event
Driven List<string>Events - UMTS events
- Feature
Profile stringId - Feature Profile ID
- Monitoring
Config boolEnabled - UMTS monitoring enable or disable - Default value:
false
- Monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- Name string
- The name of the Feature
- App
Perf []stringMonitor App Groups - Application groups to be monitored
- App
Perf boolMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- Description string
- The description of the Feature
- Event
Driven boolConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- Event
Driven []stringEvents - UMTS events
- Feature
Profile stringId - Feature Profile ID
- Monitoring
Config boolEnabled - UMTS monitoring enable or disable - Default value:
false
- Monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- Name string
- The name of the Feature
- app
Perf List<String>Monitor App Groups - Application groups to be monitored
- app
Perf BooleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description String
- The description of the Feature
- event
Driven BooleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven List<String>Events - UMTS events
- feature
Profile StringId - Feature Profile ID
- monitoring
Config BooleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config StringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name String
- The name of the Feature
- app
Perf string[]Monitor App Groups - Application groups to be monitored
- app
Perf booleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description string
- The description of the Feature
- event
Driven booleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven string[]Events - UMTS events
- feature
Profile stringId - Feature Profile ID
- monitoring
Config booleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name string
- The name 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
- description str
- The description of the Feature
- event_
driven_ boolconfig_ enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event_
driven_ Sequence[str]events - UMTS events
- feature_
profile_ strid - Feature Profile ID
- monitoring_
config_ boolenabled - UMTS monitoring enable or disable - Default value:
false
- monitoring_
config_ strinterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name str
- The name of the Feature
- app
Perf List<String>Monitor App Groups - Application groups to be monitored
- app
Perf BooleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description String
- The description of the Feature
- event
Driven BooleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven List<String>Events - UMTS events
- feature
Profile StringId - Feature Profile ID
- monitoring
Config BooleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config StringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- 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) -> SystemPerformanceMonitoringFeature
func 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)
Resource lookup is not supported in YAML
- 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.
- App
Perf List<string>Monitor App Groups - Application groups to be monitored
- App
Perf boolMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- Description string
- The description of the Feature
- Event
Driven boolConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- Event
Driven List<string>Events - UMTS events
- Feature
Profile stringId - Feature Profile ID
- Monitoring
Config boolEnabled - UMTS monitoring enable or disable - Default value:
false
- Monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- App
Perf []stringMonitor App Groups - Application groups to be monitored
- App
Perf boolMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- Description string
- The description of the Feature
- Event
Driven boolConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- Event
Driven []stringEvents - UMTS events
- Feature
Profile stringId - Feature Profile ID
- Monitoring
Config boolEnabled - UMTS monitoring enable or disable - Default value:
false
- Monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- app
Perf List<String>Monitor App Groups - Application groups to be monitored
- app
Perf BooleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description String
- The description of the Feature
- event
Driven BooleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven List<String>Events - UMTS events
- feature
Profile StringId - Feature Profile ID
- monitoring
Config BooleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config StringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name String
- The name of the Feature
- version Integer
- The version of the Feature
- app
Perf string[]Monitor App Groups - Application groups to be monitored
- app
Perf booleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description string
- The description of the Feature
- event
Driven booleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven string[]Events - UMTS events
- feature
Profile stringId - Feature Profile ID
- monitoring
Config booleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config stringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- 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
- description str
- The description of the Feature
- event_
driven_ boolconfig_ enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event_
driven_ Sequence[str]events - UMTS events
- feature_
profile_ strid - Feature Profile ID
- monitoring_
config_ boolenabled - UMTS monitoring enable or disable - Default value:
false
- monitoring_
config_ strinterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name str
- The name of the Feature
- version int
- The version of the Feature
- app
Perf List<String>Monitor App Groups - Application groups to be monitored
- app
Perf BooleanMonitor Enabled - Application performance monitoring enable or disable - Default value:
false
- description String
- The description of the Feature
- event
Driven BooleanConfig Enabled - UMTS event driven monitoring enable or disable - Default value:
false
- event
Driven List<String>Events - UMTS events
- feature
Profile StringId - Feature Profile ID
- monitoring
Config BooleanEnabled - UMTS monitoring enable or disable - Default value:
false
- monitoring
Config StringInterval - UMTS monitoring interval(Minutes) - Choices:
30
,60
- name String
- The name of the Feature
- version Number
- The version of the Feature
Import
$ pulumi import sdwan:index/systemPerformanceMonitoringFeature:SystemPerformanceMonitoringFeature 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.