1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. SystemPerformanceMonitoringProfileParcel
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.SystemPerformanceMonitoringProfileParcel

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a System Performance Monitoring profile parcel.

    • 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.SystemPerformanceMonitoringProfileParcel("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.SystemPerformanceMonitoringProfileParcel("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.NewSystemPerformanceMonitoringProfileParcel(ctx, "example", &sdwan.SystemPerformanceMonitoringProfileParcelArgs{
    			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.SystemPerformanceMonitoringProfileParcel("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.SystemPerformanceMonitoringProfileParcel;
    import com.pulumi.sdwan.SystemPerformanceMonitoringProfileParcelArgs;
    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 SystemPerformanceMonitoringProfileParcel("example", SystemPerformanceMonitoringProfileParcelArgs.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:SystemPerformanceMonitoringProfileParcel
        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 SystemPerformanceMonitoringProfileParcel Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SystemPerformanceMonitoringProfileParcel(name: string, args?: SystemPerformanceMonitoringProfileParcelArgs, opts?: CustomResourceOptions);
    @overload
    def SystemPerformanceMonitoringProfileParcel(resource_name: str,
                                                 args: Optional[SystemPerformanceMonitoringProfileParcelArgs] = None,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemPerformanceMonitoringProfileParcel(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 NewSystemPerformanceMonitoringProfileParcel(ctx *Context, name string, args *SystemPerformanceMonitoringProfileParcelArgs, opts ...ResourceOption) (*SystemPerformanceMonitoringProfileParcel, error)
    public SystemPerformanceMonitoringProfileParcel(string name, SystemPerformanceMonitoringProfileParcelArgs? args = null, CustomResourceOptions? opts = null)
    public SystemPerformanceMonitoringProfileParcel(String name, SystemPerformanceMonitoringProfileParcelArgs args)
    public SystemPerformanceMonitoringProfileParcel(String name, SystemPerformanceMonitoringProfileParcelArgs args, CustomResourceOptions options)
    
    type: sdwan:SystemPerformanceMonitoringProfileParcel
    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 SystemPerformanceMonitoringProfileParcelArgs
    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 SystemPerformanceMonitoringProfileParcelArgs
    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 SystemPerformanceMonitoringProfileParcelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemPerformanceMonitoringProfileParcelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemPerformanceMonitoringProfileParcelArgs
    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 systemPerformanceMonitoringProfileParcelResource = new Sdwan.SystemPerformanceMonitoringProfileParcel("systemPerformanceMonitoringProfileParcelResource", new()
    {
        AppPerfMonitorAppGroups = new[]
        {
            "string",
        },
        AppPerfMonitorEnabled = false,
        Description = "string",
        EventDrivenConfigEnabled = false,
        EventDrivenEvents = new[]
        {
            "string",
        },
        FeatureProfileId = "string",
        MonitoringConfigEnabled = false,
        MonitoringConfigInterval = "string",
        Name = "string",
    });
    
    example, err := sdwan.NewSystemPerformanceMonitoringProfileParcel(ctx, "systemPerformanceMonitoringProfileParcelResource", &sdwan.SystemPerformanceMonitoringProfileParcelArgs{
    	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 systemPerformanceMonitoringProfileParcelResource = new SystemPerformanceMonitoringProfileParcel("systemPerformanceMonitoringProfileParcelResource", SystemPerformanceMonitoringProfileParcelArgs.builder()
        .appPerfMonitorAppGroups("string")
        .appPerfMonitorEnabled(false)
        .description("string")
        .eventDrivenConfigEnabled(false)
        .eventDrivenEvents("string")
        .featureProfileId("string")
        .monitoringConfigEnabled(false)
        .monitoringConfigInterval("string")
        .name("string")
        .build());
    
    system_performance_monitoring_profile_parcel_resource = sdwan.SystemPerformanceMonitoringProfileParcel("systemPerformanceMonitoringProfileParcelResource",
        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 systemPerformanceMonitoringProfileParcelResource = new sdwan.SystemPerformanceMonitoringProfileParcel("systemPerformanceMonitoringProfileParcelResource", {
        appPerfMonitorAppGroups: ["string"],
        appPerfMonitorEnabled: false,
        description: "string",
        eventDrivenConfigEnabled: false,
        eventDrivenEvents: ["string"],
        featureProfileId: "string",
        monitoringConfigEnabled: false,
        monitoringConfigInterval: "string",
        name: "string",
    });
    
    type: sdwan:SystemPerformanceMonitoringProfileParcel
    properties:
        appPerfMonitorAppGroups:
            - string
        appPerfMonitorEnabled: false
        description: string
        eventDrivenConfigEnabled: false
        eventDrivenEvents:
            - string
        featureProfileId: string
        monitoringConfigEnabled: false
        monitoringConfigInterval: string
        name: string
    

    SystemPerformanceMonitoringProfileParcel 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 SystemPerformanceMonitoringProfileParcel resource accepts the following input properties:

    AppPerfMonitorAppGroups List<string>
    Application groups to be monitored
    AppPerfMonitorEnabled bool
    Application performance monitoring enable or disable - Default value: false
    Description string
    The description of the profile parcel
    EventDrivenConfigEnabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    EventDrivenEvents List<string>
    UMTS events
    FeatureProfileId string
    Feature Profile ID
    MonitoringConfigEnabled bool
    UMTS monitoring enable or disable - Default value: false
    MonitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    Name string
    The name of the profile parcel
    AppPerfMonitorAppGroups []string
    Application groups to be monitored
    AppPerfMonitorEnabled bool
    Application performance monitoring enable or disable - Default value: false
    Description string
    The description of the profile parcel
    EventDrivenConfigEnabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    EventDrivenEvents []string
    UMTS events
    FeatureProfileId string
    Feature Profile ID
    MonitoringConfigEnabled bool
    UMTS monitoring enable or disable - Default value: false
    MonitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    Name string
    The name of the profile parcel
    appPerfMonitorAppGroups List<String>
    Application groups to be monitored
    appPerfMonitorEnabled Boolean
    Application performance monitoring enable or disable - Default value: false
    description String
    The description of the profile parcel
    eventDrivenConfigEnabled Boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents List<String>
    UMTS events
    featureProfileId String
    Feature Profile ID
    monitoringConfigEnabled Boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval String
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name String
    The name of the profile parcel
    appPerfMonitorAppGroups string[]
    Application groups to be monitored
    appPerfMonitorEnabled boolean
    Application performance monitoring enable or disable - Default value: false
    description string
    The description of the profile parcel
    eventDrivenConfigEnabled boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents string[]
    UMTS events
    featureProfileId string
    Feature Profile ID
    monitoringConfigEnabled boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name string
    The name of the profile parcel
    app_perf_monitor_app_groups Sequence[str]
    Application groups to be monitored
    app_perf_monitor_enabled bool
    Application performance monitoring enable or disable - Default value: false
    description str
    The description of the profile parcel
    event_driven_config_enabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    event_driven_events Sequence[str]
    UMTS events
    feature_profile_id str
    Feature Profile ID
    monitoring_config_enabled bool
    UMTS monitoring enable or disable - Default value: false
    monitoring_config_interval str
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name str
    The name of the profile parcel
    appPerfMonitorAppGroups List<String>
    Application groups to be monitored
    appPerfMonitorEnabled Boolean
    Application performance monitoring enable or disable - Default value: false
    description String
    The description of the profile parcel
    eventDrivenConfigEnabled Boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents List<String>
    UMTS events
    featureProfileId String
    Feature Profile ID
    monitoringConfigEnabled Boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval String
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name String
    The name of the profile parcel

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystemPerformanceMonitoringProfileParcel resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the profile parcel
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the profile parcel
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the profile parcel
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the profile parcel
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the profile parcel
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the profile parcel

    Look up Existing SystemPerformanceMonitoringProfileParcel Resource

    Get an existing SystemPerformanceMonitoringProfileParcel 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?: SystemPerformanceMonitoringProfileParcelState, opts?: CustomResourceOptions): SystemPerformanceMonitoringProfileParcel
    @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) -> SystemPerformanceMonitoringProfileParcel
    func GetSystemPerformanceMonitoringProfileParcel(ctx *Context, name string, id IDInput, state *SystemPerformanceMonitoringProfileParcelState, opts ...ResourceOption) (*SystemPerformanceMonitoringProfileParcel, error)
    public static SystemPerformanceMonitoringProfileParcel Get(string name, Input<string> id, SystemPerformanceMonitoringProfileParcelState? state, CustomResourceOptions? opts = null)
    public static SystemPerformanceMonitoringProfileParcel get(String name, Output<String> id, SystemPerformanceMonitoringProfileParcelState 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.
    The following state arguments are supported:
    AppPerfMonitorAppGroups List<string>
    Application groups to be monitored
    AppPerfMonitorEnabled bool
    Application performance monitoring enable or disable - Default value: false
    Description string
    The description of the profile parcel
    EventDrivenConfigEnabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    EventDrivenEvents List<string>
    UMTS events
    FeatureProfileId string
    Feature Profile ID
    MonitoringConfigEnabled bool
    UMTS monitoring enable or disable - Default value: false
    MonitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    Name string
    The name of the profile parcel
    Version int
    The version of the profile parcel
    AppPerfMonitorAppGroups []string
    Application groups to be monitored
    AppPerfMonitorEnabled bool
    Application performance monitoring enable or disable - Default value: false
    Description string
    The description of the profile parcel
    EventDrivenConfigEnabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    EventDrivenEvents []string
    UMTS events
    FeatureProfileId string
    Feature Profile ID
    MonitoringConfigEnabled bool
    UMTS monitoring enable or disable - Default value: false
    MonitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    Name string
    The name of the profile parcel
    Version int
    The version of the profile parcel
    appPerfMonitorAppGroups List<String>
    Application groups to be monitored
    appPerfMonitorEnabled Boolean
    Application performance monitoring enable or disable - Default value: false
    description String
    The description of the profile parcel
    eventDrivenConfigEnabled Boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents List<String>
    UMTS events
    featureProfileId String
    Feature Profile ID
    monitoringConfigEnabled Boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval String
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name String
    The name of the profile parcel
    version Integer
    The version of the profile parcel
    appPerfMonitorAppGroups string[]
    Application groups to be monitored
    appPerfMonitorEnabled boolean
    Application performance monitoring enable or disable - Default value: false
    description string
    The description of the profile parcel
    eventDrivenConfigEnabled boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents string[]
    UMTS events
    featureProfileId string
    Feature Profile ID
    monitoringConfigEnabled boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval string
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name string
    The name of the profile parcel
    version number
    The version of the profile parcel
    app_perf_monitor_app_groups Sequence[str]
    Application groups to be monitored
    app_perf_monitor_enabled bool
    Application performance monitoring enable or disable - Default value: false
    description str
    The description of the profile parcel
    event_driven_config_enabled bool
    UMTS event driven monitoring enable or disable - Default value: false
    event_driven_events Sequence[str]
    UMTS events
    feature_profile_id str
    Feature Profile ID
    monitoring_config_enabled bool
    UMTS monitoring enable or disable - Default value: false
    monitoring_config_interval str
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name str
    The name of the profile parcel
    version int
    The version of the profile parcel
    appPerfMonitorAppGroups List<String>
    Application groups to be monitored
    appPerfMonitorEnabled Boolean
    Application performance monitoring enable or disable - Default value: false
    description String
    The description of the profile parcel
    eventDrivenConfigEnabled Boolean
    UMTS event driven monitoring enable or disable - Default value: false
    eventDrivenEvents List<String>
    UMTS events
    featureProfileId String
    Feature Profile ID
    monitoringConfigEnabled Boolean
    UMTS monitoring enable or disable - Default value: false
    monitoringConfigInterval String
    UMTS monitoring interval(Minutes) - Choices: 30, 60
    name String
    The name of the profile parcel
    version Number
    The version of the profile parcel

    Import

    $ pulumi import sdwan:index/systemPerformanceMonitoringProfileParcel:SystemPerformanceMonitoringProfileParcel 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.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi