1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. SessionSetting
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi

    SessionSetting resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Set Sessions with Config Rematch value set to True
    const sessionExample = new scm.SessionSetting("session_example", {
        folder: "All",
        sessionSettings: {
            dhcpBcastSessionOn: false,
            erspan: false,
            ipv6Firewalling: true,
            rematch: false,
            acceleratedAgingEnable: true,
            acceleratedAgingThreshold: 80,
            acceleratedAgingScalingFactor: 2,
            icmpUnreachableRate: 200,
            multicastRouteSetupBuffering: false,
            maxPendingMcastPktsPerSession: 1000,
            icmpv6RateLimit: {
                bucketSize: 100,
                packetRate: 100,
            },
            nat: {
                dippOversub: "1x",
            },
            nat64: {
                ipv6MinNetworkMtu: 1280,
            },
            jumboFrame: {
                mtu: 9191,
            },
            config: {
                rematch: true,
            },
            packetBufferProtectionEnable: false,
            packetBufferProtectionMonitorOnly: false,
            packetBufferProtectionAlert: 50,
            packetBufferProtectionActivate: 80,
            packetBufferProtectionBlockCountdown: 80,
            packetBufferProtectionBlockHoldTime: 60,
            packetBufferProtectionBlockDurationTime: 3600,
            packetBufferProtectionUseLatency: false,
            packetBufferProtectionLatencyAlert: 50,
            packetBufferProtectionLatencyActivate: 200,
            packetBufferProtectionLatencyMaxTolerate: 500,
            packetBufferProtectionLatencyBlockCountdown: 500,
        },
    });
    
    import pulumi
    import pulumi_scm as scm
    
    # Set Sessions with Config Rematch value set to True
    session_example = scm.SessionSetting("session_example",
        folder="All",
        session_settings={
            "dhcp_bcast_session_on": False,
            "erspan": False,
            "ipv6_firewalling": True,
            "rematch": False,
            "accelerated_aging_enable": True,
            "accelerated_aging_threshold": 80,
            "accelerated_aging_scaling_factor": 2,
            "icmp_unreachable_rate": 200,
            "multicast_route_setup_buffering": False,
            "max_pending_mcast_pkts_per_session": 1000,
            "icmpv6_rate_limit": {
                "bucket_size": 100,
                "packet_rate": 100,
            },
            "nat": {
                "dipp_oversub": "1x",
            },
            "nat64": {
                "ipv6_min_network_mtu": 1280,
            },
            "jumbo_frame": {
                "mtu": 9191,
            },
            "config": {
                "rematch": True,
            },
            "packet_buffer_protection_enable": False,
            "packet_buffer_protection_monitor_only": False,
            "packet_buffer_protection_alert": 50,
            "packet_buffer_protection_activate": 80,
            "packet_buffer_protection_block_countdown": 80,
            "packet_buffer_protection_block_hold_time": 60,
            "packet_buffer_protection_block_duration_time": 3600,
            "packet_buffer_protection_use_latency": False,
            "packet_buffer_protection_latency_alert": 50,
            "packet_buffer_protection_latency_activate": 200,
            "packet_buffer_protection_latency_max_tolerate": 500,
            "packet_buffer_protection_latency_block_countdown": 500,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Set Sessions with Config Rematch value set to True
    		_, err := scm.NewSessionSetting(ctx, "session_example", &scm.SessionSettingArgs{
    			Folder: pulumi.String("All"),
    			SessionSettings: &scm.SessionSettingSessionSettingsArgs{
    				DhcpBcastSessionOn:            pulumi.Bool(false),
    				Erspan:                        pulumi.Bool(false),
    				Ipv6Firewalling:               pulumi.Bool(true),
    				Rematch:                       false,
    				AcceleratedAgingEnable:        pulumi.Bool(true),
    				AcceleratedAgingThreshold:     pulumi.Float64(80),
    				AcceleratedAgingScalingFactor: pulumi.Float64(2),
    				IcmpUnreachableRate:           pulumi.Float64(200),
    				MulticastRouteSetupBuffering:  pulumi.Bool(false),
    				MaxPendingMcastPktsPerSession: pulumi.Float64(1000),
    				Icmpv6RateLimit: &scm.SessionSettingSessionSettingsIcmpv6RateLimitArgs{
    					BucketSize: pulumi.Int(100),
    					PacketRate: pulumi.Int(100),
    				},
    				Nat: &scm.SessionSettingSessionSettingsNatArgs{
    					DippOversub: pulumi.String("1x"),
    				},
    				Nat64: &scm.SessionSettingSessionSettingsNat64Args{
    					Ipv6MinNetworkMtu: pulumi.Int(1280),
    				},
    				JumboFrame: &scm.SessionSettingSessionSettingsJumboFrameArgs{
    					Mtu: pulumi.Int(9191),
    				},
    				Config: &scm.SessionSettingSessionSettingsConfigArgs{
    					Rematch: pulumi.Bool(true),
    				},
    				PacketBufferProtectionEnable:                pulumi.Bool(false),
    				PacketBufferProtectionMonitorOnly:           pulumi.Bool(false),
    				PacketBufferProtectionAlert:                 pulumi.Int(50),
    				PacketBufferProtectionActivate:              pulumi.Float64(80),
    				PacketBufferProtectionBlockCountdown:        pulumi.Float64(80),
    				PacketBufferProtectionBlockHoldTime:         pulumi.Float64(60),
    				PacketBufferProtectionBlockDurationTime:     pulumi.Float64(3600),
    				PacketBufferProtectionUseLatency:            pulumi.Bool(false),
    				PacketBufferProtectionLatencyAlert:          pulumi.Float64(50),
    				PacketBufferProtectionLatencyActivate:       pulumi.Float64(200),
    				PacketBufferProtectionLatencyMaxTolerate:    pulumi.Float64(500),
    				PacketBufferProtectionLatencyBlockCountdown: pulumi.Float64(500),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Set Sessions with Config Rematch value set to True
        var sessionExample = new Scm.SessionSetting("session_example", new()
        {
            Folder = "All",
            SessionSettings = new Scm.Inputs.SessionSettingSessionSettingsArgs
            {
                DhcpBcastSessionOn = false,
                Erspan = false,
                Ipv6Firewalling = true,
                Rematch = false,
                AcceleratedAgingEnable = true,
                AcceleratedAgingThreshold = 80,
                AcceleratedAgingScalingFactor = 2,
                IcmpUnreachableRate = 200,
                MulticastRouteSetupBuffering = false,
                MaxPendingMcastPktsPerSession = 1000,
                Icmpv6RateLimit = new Scm.Inputs.SessionSettingSessionSettingsIcmpv6RateLimitArgs
                {
                    BucketSize = 100,
                    PacketRate = 100,
                },
                Nat = new Scm.Inputs.SessionSettingSessionSettingsNatArgs
                {
                    DippOversub = "1x",
                },
                Nat64 = new Scm.Inputs.SessionSettingSessionSettingsNat64Args
                {
                    Ipv6MinNetworkMtu = 1280,
                },
                JumboFrame = new Scm.Inputs.SessionSettingSessionSettingsJumboFrameArgs
                {
                    Mtu = 9191,
                },
                Config = new Scm.Inputs.SessionSettingSessionSettingsConfigArgs
                {
                    Rematch = true,
                },
                PacketBufferProtectionEnable = false,
                PacketBufferProtectionMonitorOnly = false,
                PacketBufferProtectionAlert = 50,
                PacketBufferProtectionActivate = 80,
                PacketBufferProtectionBlockCountdown = 80,
                PacketBufferProtectionBlockHoldTime = 60,
                PacketBufferProtectionBlockDurationTime = 3600,
                PacketBufferProtectionUseLatency = false,
                PacketBufferProtectionLatencyAlert = 50,
                PacketBufferProtectionLatencyActivate = 200,
                PacketBufferProtectionLatencyMaxTolerate = 500,
                PacketBufferProtectionLatencyBlockCountdown = 500,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.SessionSetting;
    import com.pulumi.scm.SessionSettingArgs;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsArgs;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsIcmpv6RateLimitArgs;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsNatArgs;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsNat64Args;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsJumboFrameArgs;
    import com.pulumi.scm.inputs.SessionSettingSessionSettingsConfigArgs;
    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) {
            // Set Sessions with Config Rematch value set to True
            var sessionExample = new SessionSetting("sessionExample", SessionSettingArgs.builder()
                .folder("All")
                .sessionSettings(SessionSettingSessionSettingsArgs.builder()
                    .dhcpBcastSessionOn(false)
                    .erspan(false)
                    .ipv6Firewalling(true)
                    .rematch(false)
                    .acceleratedAgingEnable(true)
                    .acceleratedAgingThreshold(80.0)
                    .acceleratedAgingScalingFactor(2.0)
                    .icmpUnreachableRate(200.0)
                    .multicastRouteSetupBuffering(false)
                    .maxPendingMcastPktsPerSession(1000.0)
                    .icmpv6RateLimit(SessionSettingSessionSettingsIcmpv6RateLimitArgs.builder()
                        .bucketSize(100)
                        .packetRate(100)
                        .build())
                    .nat(SessionSettingSessionSettingsNatArgs.builder()
                        .dippOversub("1x")
                        .build())
                    .nat64(SessionSettingSessionSettingsNat64Args.builder()
                        .ipv6MinNetworkMtu(1280)
                        .build())
                    .jumboFrame(SessionSettingSessionSettingsJumboFrameArgs.builder()
                        .mtu(9191)
                        .build())
                    .config(SessionSettingSessionSettingsConfigArgs.builder()
                        .rematch(true)
                        .build())
                    .packetBufferProtectionEnable(false)
                    .packetBufferProtectionMonitorOnly(false)
                    .packetBufferProtectionAlert(50)
                    .packetBufferProtectionActivate(80.0)
                    .packetBufferProtectionBlockCountdown(80.0)
                    .packetBufferProtectionBlockHoldTime(60.0)
                    .packetBufferProtectionBlockDurationTime(3600.0)
                    .packetBufferProtectionUseLatency(false)
                    .packetBufferProtectionLatencyAlert(50.0)
                    .packetBufferProtectionLatencyActivate(200.0)
                    .packetBufferProtectionLatencyMaxTolerate(500.0)
                    .packetBufferProtectionLatencyBlockCountdown(500.0)
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Set Sessions with Config Rematch value set to True
      sessionExample:
        type: scm:SessionSetting
        name: session_example
        properties:
          folder: All
          sessionSettings:
            dhcpBcastSessionOn: false
            erspan: false
            ipv6Firewalling: true
            rematch: false
            acceleratedAgingEnable: true
            acceleratedAgingThreshold: 80
            acceleratedAgingScalingFactor: 2
            icmpUnreachableRate: 200
            multicastRouteSetupBuffering: false
            maxPendingMcastPktsPerSession: 1000
            icmpv6RateLimit:
              bucketSize: 100
              packetRate: 100
            nat:
              dippOversub: 1x
            nat64:
              ipv6MinNetworkMtu: 1280
            jumboFrame:
              mtu: 9191
            config:
              rematch: true
            packetBufferProtectionEnable: false
            packetBufferProtectionMonitorOnly: false
            packetBufferProtectionAlert: 50
            packetBufferProtectionActivate: 80
            packetBufferProtectionBlockCountdown: 80
            packetBufferProtectionBlockHoldTime: 60
            packetBufferProtectionBlockDurationTime: 3600
            packetBufferProtectionUseLatency: false
            packetBufferProtectionLatencyAlert: 50
            packetBufferProtectionLatencyActivate: 200
            packetBufferProtectionLatencyMaxTolerate: 500
            packetBufferProtectionLatencyBlockCountdown: 500
    

    Create SessionSetting Resource

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

    Constructor syntax

    new SessionSetting(name: string, args?: SessionSettingArgs, opts?: CustomResourceOptions);
    @overload
    def SessionSetting(resource_name: str,
                       args: Optional[SessionSettingArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SessionSetting(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       device: Optional[str] = None,
                       folder: Optional[str] = None,
                       session_settings: Optional[SessionSettingSessionSettingsArgs] = None,
                       snippet: Optional[str] = None)
    func NewSessionSetting(ctx *Context, name string, args *SessionSettingArgs, opts ...ResourceOption) (*SessionSetting, error)
    public SessionSetting(string name, SessionSettingArgs? args = null, CustomResourceOptions? opts = null)
    public SessionSetting(String name, SessionSettingArgs args)
    public SessionSetting(String name, SessionSettingArgs args, CustomResourceOptions options)
    
    type: scm:SessionSetting
    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 SessionSettingArgs
    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 SessionSettingArgs
    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 SessionSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SessionSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SessionSettingArgs
    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 sessionSettingResource = new Scm.SessionSetting("sessionSettingResource", new()
    {
        Device = "string",
        Folder = "string",
        SessionSettings = new Scm.Inputs.SessionSettingSessionSettingsArgs
        {
            AcceleratedAgingEnable = false,
            AcceleratedAgingScalingFactor = 0,
            AcceleratedAgingThreshold = 0,
            Config = new Scm.Inputs.SessionSettingSessionSettingsConfigArgs
            {
                Rematch = false,
            },
            DhcpBcastSessionOn = false,
            Erspan = false,
            IcmpUnreachableRate = 0,
            Icmpv6RateLimit = new Scm.Inputs.SessionSettingSessionSettingsIcmpv6RateLimitArgs
            {
                BucketSize = 0,
                PacketRate = 0,
            },
            Ipv6Firewalling = false,
            JumboFrame = new Scm.Inputs.SessionSettingSessionSettingsJumboFrameArgs
            {
                Mtu = 0,
            },
            MaxPendingMcastPktsPerSession = 0,
            MulticastRouteSetupBuffering = false,
            Nat = new Scm.Inputs.SessionSettingSessionSettingsNatArgs
            {
                DippOversub = "string",
            },
            Nat64 = new Scm.Inputs.SessionSettingSessionSettingsNat64Args
            {
                Ipv6MinNetworkMtu = 0,
            },
            PacketBufferProtectionActivate = 0,
            PacketBufferProtectionAlert = 0,
            PacketBufferProtectionBlockCountdown = 0,
            PacketBufferProtectionBlockDurationTime = 0,
            PacketBufferProtectionBlockHoldTime = 0,
            PacketBufferProtectionEnable = false,
            PacketBufferProtectionLatencyActivate = 0,
            PacketBufferProtectionLatencyAlert = 0,
            PacketBufferProtectionLatencyBlockCountdown = 0,
            PacketBufferProtectionLatencyMaxTolerate = 0,
            PacketBufferProtectionMonitorOnly = false,
            PacketBufferProtectionUseLatency = false,
        },
        Snippet = "string",
    });
    
    example, err := scm.NewSessionSetting(ctx, "sessionSettingResource", &scm.SessionSettingArgs{
    	Device: pulumi.String("string"),
    	Folder: pulumi.String("string"),
    	SessionSettings: &scm.SessionSettingSessionSettingsArgs{
    		AcceleratedAgingEnable:        pulumi.Bool(false),
    		AcceleratedAgingScalingFactor: pulumi.Float64(0),
    		AcceleratedAgingThreshold:     pulumi.Float64(0),
    		Config: &scm.SessionSettingSessionSettingsConfigArgs{
    			Rematch: pulumi.Bool(false),
    		},
    		DhcpBcastSessionOn:  pulumi.Bool(false),
    		Erspan:              pulumi.Bool(false),
    		IcmpUnreachableRate: pulumi.Float64(0),
    		Icmpv6RateLimit: &scm.SessionSettingSessionSettingsIcmpv6RateLimitArgs{
    			BucketSize: pulumi.Int(0),
    			PacketRate: pulumi.Int(0),
    		},
    		Ipv6Firewalling: pulumi.Bool(false),
    		JumboFrame: &scm.SessionSettingSessionSettingsJumboFrameArgs{
    			Mtu: pulumi.Int(0),
    		},
    		MaxPendingMcastPktsPerSession: pulumi.Float64(0),
    		MulticastRouteSetupBuffering:  pulumi.Bool(false),
    		Nat: &scm.SessionSettingSessionSettingsNatArgs{
    			DippOversub: pulumi.String("string"),
    		},
    		Nat64: &scm.SessionSettingSessionSettingsNat64Args{
    			Ipv6MinNetworkMtu: pulumi.Int(0),
    		},
    		PacketBufferProtectionActivate:              pulumi.Float64(0),
    		PacketBufferProtectionAlert:                 pulumi.Int(0),
    		PacketBufferProtectionBlockCountdown:        pulumi.Float64(0),
    		PacketBufferProtectionBlockDurationTime:     pulumi.Float64(0),
    		PacketBufferProtectionBlockHoldTime:         pulumi.Float64(0),
    		PacketBufferProtectionEnable:                pulumi.Bool(false),
    		PacketBufferProtectionLatencyActivate:       pulumi.Float64(0),
    		PacketBufferProtectionLatencyAlert:          pulumi.Float64(0),
    		PacketBufferProtectionLatencyBlockCountdown: pulumi.Float64(0),
    		PacketBufferProtectionLatencyMaxTolerate:    pulumi.Float64(0),
    		PacketBufferProtectionMonitorOnly:           pulumi.Bool(false),
    		PacketBufferProtectionUseLatency:            pulumi.Bool(false),
    	},
    	Snippet: pulumi.String("string"),
    })
    
    var sessionSettingResource = new SessionSetting("sessionSettingResource", SessionSettingArgs.builder()
        .device("string")
        .folder("string")
        .sessionSettings(SessionSettingSessionSettingsArgs.builder()
            .acceleratedAgingEnable(false)
            .acceleratedAgingScalingFactor(0.0)
            .acceleratedAgingThreshold(0.0)
            .config(SessionSettingSessionSettingsConfigArgs.builder()
                .rematch(false)
                .build())
            .dhcpBcastSessionOn(false)
            .erspan(false)
            .icmpUnreachableRate(0.0)
            .icmpv6RateLimit(SessionSettingSessionSettingsIcmpv6RateLimitArgs.builder()
                .bucketSize(0)
                .packetRate(0)
                .build())
            .ipv6Firewalling(false)
            .jumboFrame(SessionSettingSessionSettingsJumboFrameArgs.builder()
                .mtu(0)
                .build())
            .maxPendingMcastPktsPerSession(0.0)
            .multicastRouteSetupBuffering(false)
            .nat(SessionSettingSessionSettingsNatArgs.builder()
                .dippOversub("string")
                .build())
            .nat64(SessionSettingSessionSettingsNat64Args.builder()
                .ipv6MinNetworkMtu(0)
                .build())
            .packetBufferProtectionActivate(0.0)
            .packetBufferProtectionAlert(0)
            .packetBufferProtectionBlockCountdown(0.0)
            .packetBufferProtectionBlockDurationTime(0.0)
            .packetBufferProtectionBlockHoldTime(0.0)
            .packetBufferProtectionEnable(false)
            .packetBufferProtectionLatencyActivate(0.0)
            .packetBufferProtectionLatencyAlert(0.0)
            .packetBufferProtectionLatencyBlockCountdown(0.0)
            .packetBufferProtectionLatencyMaxTolerate(0.0)
            .packetBufferProtectionMonitorOnly(false)
            .packetBufferProtectionUseLatency(false)
            .build())
        .snippet("string")
        .build());
    
    session_setting_resource = scm.SessionSetting("sessionSettingResource",
        device="string",
        folder="string",
        session_settings={
            "accelerated_aging_enable": False,
            "accelerated_aging_scaling_factor": 0,
            "accelerated_aging_threshold": 0,
            "config": {
                "rematch": False,
            },
            "dhcp_bcast_session_on": False,
            "erspan": False,
            "icmp_unreachable_rate": 0,
            "icmpv6_rate_limit": {
                "bucket_size": 0,
                "packet_rate": 0,
            },
            "ipv6_firewalling": False,
            "jumbo_frame": {
                "mtu": 0,
            },
            "max_pending_mcast_pkts_per_session": 0,
            "multicast_route_setup_buffering": False,
            "nat": {
                "dipp_oversub": "string",
            },
            "nat64": {
                "ipv6_min_network_mtu": 0,
            },
            "packet_buffer_protection_activate": 0,
            "packet_buffer_protection_alert": 0,
            "packet_buffer_protection_block_countdown": 0,
            "packet_buffer_protection_block_duration_time": 0,
            "packet_buffer_protection_block_hold_time": 0,
            "packet_buffer_protection_enable": False,
            "packet_buffer_protection_latency_activate": 0,
            "packet_buffer_protection_latency_alert": 0,
            "packet_buffer_protection_latency_block_countdown": 0,
            "packet_buffer_protection_latency_max_tolerate": 0,
            "packet_buffer_protection_monitor_only": False,
            "packet_buffer_protection_use_latency": False,
        },
        snippet="string")
    
    const sessionSettingResource = new scm.SessionSetting("sessionSettingResource", {
        device: "string",
        folder: "string",
        sessionSettings: {
            acceleratedAgingEnable: false,
            acceleratedAgingScalingFactor: 0,
            acceleratedAgingThreshold: 0,
            config: {
                rematch: false,
            },
            dhcpBcastSessionOn: false,
            erspan: false,
            icmpUnreachableRate: 0,
            icmpv6RateLimit: {
                bucketSize: 0,
                packetRate: 0,
            },
            ipv6Firewalling: false,
            jumboFrame: {
                mtu: 0,
            },
            maxPendingMcastPktsPerSession: 0,
            multicastRouteSetupBuffering: false,
            nat: {
                dippOversub: "string",
            },
            nat64: {
                ipv6MinNetworkMtu: 0,
            },
            packetBufferProtectionActivate: 0,
            packetBufferProtectionAlert: 0,
            packetBufferProtectionBlockCountdown: 0,
            packetBufferProtectionBlockDurationTime: 0,
            packetBufferProtectionBlockHoldTime: 0,
            packetBufferProtectionEnable: false,
            packetBufferProtectionLatencyActivate: 0,
            packetBufferProtectionLatencyAlert: 0,
            packetBufferProtectionLatencyBlockCountdown: 0,
            packetBufferProtectionLatencyMaxTolerate: 0,
            packetBufferProtectionMonitorOnly: false,
            packetBufferProtectionUseLatency: false,
        },
        snippet: "string",
    });
    
    type: scm:SessionSetting
    properties:
        device: string
        folder: string
        sessionSettings:
            acceleratedAgingEnable: false
            acceleratedAgingScalingFactor: 0
            acceleratedAgingThreshold: 0
            config:
                rematch: false
            dhcpBcastSessionOn: false
            erspan: false
            icmpUnreachableRate: 0
            icmpv6RateLimit:
                bucketSize: 0
                packetRate: 0
            ipv6Firewalling: false
            jumboFrame:
                mtu: 0
            maxPendingMcastPktsPerSession: 0
            multicastRouteSetupBuffering: false
            nat:
                dippOversub: string
            nat64:
                ipv6MinNetworkMtu: 0
            packetBufferProtectionActivate: 0
            packetBufferProtectionAlert: 0
            packetBufferProtectionBlockCountdown: 0
            packetBufferProtectionBlockDurationTime: 0
            packetBufferProtectionBlockHoldTime: 0
            packetBufferProtectionEnable: false
            packetBufferProtectionLatencyActivate: 0
            packetBufferProtectionLatencyAlert: 0
            packetBufferProtectionLatencyBlockCountdown: 0
            packetBufferProtectionLatencyMaxTolerate: 0
            packetBufferProtectionMonitorOnly: false
            packetBufferProtectionUseLatency: false
        snippet: string
    

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

    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    SessionSettings SessionSettingSessionSettings
    Session settings
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    SessionSettings SessionSettingSessionSettingsArgs
    Session settings
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings SessionSettingSessionSettings
    Session settings
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings SessionSettingSessionSettings
    Session settings
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    session_settings SessionSettingSessionSettingsArgs
    Session settings
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings Property Map
    Session settings
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing SessionSetting Resource

    Get an existing SessionSetting 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?: SessionSettingState, opts?: CustomResourceOptions): SessionSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            session_settings: Optional[SessionSettingSessionSettingsArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> SessionSetting
    func GetSessionSetting(ctx *Context, name string, id IDInput, state *SessionSettingState, opts ...ResourceOption) (*SessionSetting, error)
    public static SessionSetting Get(string name, Input<string> id, SessionSettingState? state, CustomResourceOptions? opts = null)
    public static SessionSetting get(String name, Output<String> id, SessionSettingState state, CustomResourceOptions options)
    resources:  _:    type: scm:SessionSetting    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.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    SessionSettings SessionSettingSessionSettings
    Session settings
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    SessionSettings SessionSettingSessionSettingsArgs
    Session settings
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings SessionSettingSessionSettings
    Session settings
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings SessionSettingSessionSettings
    Session settings
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    session_settings SessionSettingSessionSettingsArgs
    Session settings
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    sessionSettings Property Map
    Session settings
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String

    Supporting Types

    SessionSettingSessionSettings, SessionSettingSessionSettingsArgs

    AcceleratedAgingEnable bool
    Enable accelerated aging
    AcceleratedAgingScalingFactor double
    Accelerated aging scaling factor
    AcceleratedAgingThreshold double
    Accelerated aging threshold
    Config SessionSettingSessionSettingsConfig
    Config
    DhcpBcastSessionOn bool
    Enable DHCP broadcast session
    Erspan bool
    Enable ERSPAN support
    IcmpUnreachableRate double
    ICMP unreachable packet rate (per second)
    Icmpv6RateLimit SessionSettingSessionSettingsIcmpv6RateLimit
    ICMPv6 rate limiting
    Ipv6Firewalling bool
    Enable IPv6 firewalling
    JumboFrame SessionSettingSessionSettingsJumboFrame
    Enable jumbo frame support
    MaxPendingMcastPktsPerSession double
    Multicast route setup buffer size
    MulticastRouteSetupBuffering bool
    Multicast route setup buffering
    Nat SessionSettingSessionSettingsNat
    Nat
    Nat64 SessionSettingSessionSettingsNat64
    Nat64
    PacketBufferProtectionActivate double
    Activate (%)
    PacketBufferProtectionAlert int
    Alert (%)
    PacketBufferProtectionBlockCountdown double
    Block countdown threshold (%)
    PacketBufferProtectionBlockDurationTime double
    Block duration (seconds)
    PacketBufferProtectionBlockHoldTime double
    Block hold time (seconds)
    PacketBufferProtectionEnable bool
    Enable packet buffer protection
    PacketBufferProtectionLatencyActivate double
    Latency activate (milliseconds)
    PacketBufferProtectionLatencyAlert double
    Latency alert (milliseconds)
    PacketBufferProtectionLatencyBlockCountdown double
    Block countdown threshold (milliseconds)
    PacketBufferProtectionLatencyMaxTolerate double
    Latency max tolerate (milliseconds)
    PacketBufferProtectionMonitorOnly bool
    Packet buffer protection monitor only
    PacketBufferProtectionUseLatency bool
    Enabled latency-based activation
    AcceleratedAgingEnable bool
    Enable accelerated aging
    AcceleratedAgingScalingFactor float64
    Accelerated aging scaling factor
    AcceleratedAgingThreshold float64
    Accelerated aging threshold
    Config SessionSettingSessionSettingsConfig
    Config
    DhcpBcastSessionOn bool
    Enable DHCP broadcast session
    Erspan bool
    Enable ERSPAN support
    IcmpUnreachableRate float64
    ICMP unreachable packet rate (per second)
    Icmpv6RateLimit SessionSettingSessionSettingsIcmpv6RateLimit
    ICMPv6 rate limiting
    Ipv6Firewalling bool
    Enable IPv6 firewalling
    JumboFrame SessionSettingSessionSettingsJumboFrame
    Enable jumbo frame support
    MaxPendingMcastPktsPerSession float64
    Multicast route setup buffer size
    MulticastRouteSetupBuffering bool
    Multicast route setup buffering
    Nat SessionSettingSessionSettingsNat
    Nat
    Nat64 SessionSettingSessionSettingsNat64
    Nat64
    PacketBufferProtectionActivate float64
    Activate (%)
    PacketBufferProtectionAlert int
    Alert (%)
    PacketBufferProtectionBlockCountdown float64
    Block countdown threshold (%)
    PacketBufferProtectionBlockDurationTime float64
    Block duration (seconds)
    PacketBufferProtectionBlockHoldTime float64
    Block hold time (seconds)
    PacketBufferProtectionEnable bool
    Enable packet buffer protection
    PacketBufferProtectionLatencyActivate float64
    Latency activate (milliseconds)
    PacketBufferProtectionLatencyAlert float64
    Latency alert (milliseconds)
    PacketBufferProtectionLatencyBlockCountdown float64
    Block countdown threshold (milliseconds)
    PacketBufferProtectionLatencyMaxTolerate float64
    Latency max tolerate (milliseconds)
    PacketBufferProtectionMonitorOnly bool
    Packet buffer protection monitor only
    PacketBufferProtectionUseLatency bool
    Enabled latency-based activation
    acceleratedAgingEnable Boolean
    Enable accelerated aging
    acceleratedAgingScalingFactor Double
    Accelerated aging scaling factor
    acceleratedAgingThreshold Double
    Accelerated aging threshold
    config SessionSettingSessionSettingsConfig
    Config
    dhcpBcastSessionOn Boolean
    Enable DHCP broadcast session
    erspan Boolean
    Enable ERSPAN support
    icmpUnreachableRate Double
    ICMP unreachable packet rate (per second)
    icmpv6RateLimit SessionSettingSessionSettingsIcmpv6RateLimit
    ICMPv6 rate limiting
    ipv6Firewalling Boolean
    Enable IPv6 firewalling
    jumboFrame SessionSettingSessionSettingsJumboFrame
    Enable jumbo frame support
    maxPendingMcastPktsPerSession Double
    Multicast route setup buffer size
    multicastRouteSetupBuffering Boolean
    Multicast route setup buffering
    nat SessionSettingSessionSettingsNat
    Nat
    nat64 SessionSettingSessionSettingsNat64
    Nat64
    packetBufferProtectionActivate Double
    Activate (%)
    packetBufferProtectionAlert Integer
    Alert (%)
    packetBufferProtectionBlockCountdown Double
    Block countdown threshold (%)
    packetBufferProtectionBlockDurationTime Double
    Block duration (seconds)
    packetBufferProtectionBlockHoldTime Double
    Block hold time (seconds)
    packetBufferProtectionEnable Boolean
    Enable packet buffer protection
    packetBufferProtectionLatencyActivate Double
    Latency activate (milliseconds)
    packetBufferProtectionLatencyAlert Double
    Latency alert (milliseconds)
    packetBufferProtectionLatencyBlockCountdown Double
    Block countdown threshold (milliseconds)
    packetBufferProtectionLatencyMaxTolerate Double
    Latency max tolerate (milliseconds)
    packetBufferProtectionMonitorOnly Boolean
    Packet buffer protection monitor only
    packetBufferProtectionUseLatency Boolean
    Enabled latency-based activation
    acceleratedAgingEnable boolean
    Enable accelerated aging
    acceleratedAgingScalingFactor number
    Accelerated aging scaling factor
    acceleratedAgingThreshold number
    Accelerated aging threshold
    config SessionSettingSessionSettingsConfig
    Config
    dhcpBcastSessionOn boolean
    Enable DHCP broadcast session
    erspan boolean
    Enable ERSPAN support
    icmpUnreachableRate number
    ICMP unreachable packet rate (per second)
    icmpv6RateLimit SessionSettingSessionSettingsIcmpv6RateLimit
    ICMPv6 rate limiting
    ipv6Firewalling boolean
    Enable IPv6 firewalling
    jumboFrame SessionSettingSessionSettingsJumboFrame
    Enable jumbo frame support
    maxPendingMcastPktsPerSession number
    Multicast route setup buffer size
    multicastRouteSetupBuffering boolean
    Multicast route setup buffering
    nat SessionSettingSessionSettingsNat
    Nat
    nat64 SessionSettingSessionSettingsNat64
    Nat64
    packetBufferProtectionActivate number
    Activate (%)
    packetBufferProtectionAlert number
    Alert (%)
    packetBufferProtectionBlockCountdown number
    Block countdown threshold (%)
    packetBufferProtectionBlockDurationTime number
    Block duration (seconds)
    packetBufferProtectionBlockHoldTime number
    Block hold time (seconds)
    packetBufferProtectionEnable boolean
    Enable packet buffer protection
    packetBufferProtectionLatencyActivate number
    Latency activate (milliseconds)
    packetBufferProtectionLatencyAlert number
    Latency alert (milliseconds)
    packetBufferProtectionLatencyBlockCountdown number
    Block countdown threshold (milliseconds)
    packetBufferProtectionLatencyMaxTolerate number
    Latency max tolerate (milliseconds)
    packetBufferProtectionMonitorOnly boolean
    Packet buffer protection monitor only
    packetBufferProtectionUseLatency boolean
    Enabled latency-based activation
    accelerated_aging_enable bool
    Enable accelerated aging
    accelerated_aging_scaling_factor float
    Accelerated aging scaling factor
    accelerated_aging_threshold float
    Accelerated aging threshold
    config SessionSettingSessionSettingsConfig
    Config
    dhcp_bcast_session_on bool
    Enable DHCP broadcast session
    erspan bool
    Enable ERSPAN support
    icmp_unreachable_rate float
    ICMP unreachable packet rate (per second)
    icmpv6_rate_limit SessionSettingSessionSettingsIcmpv6RateLimit
    ICMPv6 rate limiting
    ipv6_firewalling bool
    Enable IPv6 firewalling
    jumbo_frame SessionSettingSessionSettingsJumboFrame
    Enable jumbo frame support
    max_pending_mcast_pkts_per_session float
    Multicast route setup buffer size
    multicast_route_setup_buffering bool
    Multicast route setup buffering
    nat SessionSettingSessionSettingsNat
    Nat
    nat64 SessionSettingSessionSettingsNat64
    Nat64
    packet_buffer_protection_activate float
    Activate (%)
    packet_buffer_protection_alert int
    Alert (%)
    packet_buffer_protection_block_countdown float
    Block countdown threshold (%)
    packet_buffer_protection_block_duration_time float
    Block duration (seconds)
    packet_buffer_protection_block_hold_time float
    Block hold time (seconds)
    packet_buffer_protection_enable bool
    Enable packet buffer protection
    packet_buffer_protection_latency_activate float
    Latency activate (milliseconds)
    packet_buffer_protection_latency_alert float
    Latency alert (milliseconds)
    packet_buffer_protection_latency_block_countdown float
    Block countdown threshold (milliseconds)
    packet_buffer_protection_latency_max_tolerate float
    Latency max tolerate (milliseconds)
    packet_buffer_protection_monitor_only bool
    Packet buffer protection monitor only
    packet_buffer_protection_use_latency bool
    Enabled latency-based activation
    acceleratedAgingEnable Boolean
    Enable accelerated aging
    acceleratedAgingScalingFactor Number
    Accelerated aging scaling factor
    acceleratedAgingThreshold Number
    Accelerated aging threshold
    config Property Map
    Config
    dhcpBcastSessionOn Boolean
    Enable DHCP broadcast session
    erspan Boolean
    Enable ERSPAN support
    icmpUnreachableRate Number
    ICMP unreachable packet rate (per second)
    icmpv6RateLimit Property Map
    ICMPv6 rate limiting
    ipv6Firewalling Boolean
    Enable IPv6 firewalling
    jumboFrame Property Map
    Enable jumbo frame support
    maxPendingMcastPktsPerSession Number
    Multicast route setup buffer size
    multicastRouteSetupBuffering Boolean
    Multicast route setup buffering
    nat Property Map
    Nat
    nat64 Property Map
    Nat64
    packetBufferProtectionActivate Number
    Activate (%)
    packetBufferProtectionAlert Number
    Alert (%)
    packetBufferProtectionBlockCountdown Number
    Block countdown threshold (%)
    packetBufferProtectionBlockDurationTime Number
    Block duration (seconds)
    packetBufferProtectionBlockHoldTime Number
    Block hold time (seconds)
    packetBufferProtectionEnable Boolean
    Enable packet buffer protection
    packetBufferProtectionLatencyActivate Number
    Latency activate (milliseconds)
    packetBufferProtectionLatencyAlert Number
    Latency alert (milliseconds)
    packetBufferProtectionLatencyBlockCountdown Number
    Block countdown threshold (milliseconds)
    packetBufferProtectionLatencyMaxTolerate Number
    Latency max tolerate (milliseconds)
    packetBufferProtectionMonitorOnly Boolean
    Packet buffer protection monitor only
    packetBufferProtectionUseLatency Boolean
    Enabled latency-based activation

    SessionSettingSessionSettingsConfig, SessionSettingSessionSettingsConfigArgs

    Rematch bool
    Rematch all sessions on config policy change
    Rematch bool
    Rematch all sessions on config policy change
    rematch Boolean
    Rematch all sessions on config policy change
    rematch boolean
    Rematch all sessions on config policy change
    rematch bool
    Rematch all sessions on config policy change
    rematch Boolean
    Rematch all sessions on config policy change

    SessionSettingSessionSettingsIcmpv6RateLimit, SessionSettingSessionSettingsIcmpv6RateLimitArgs

    BucketSize int
    ICMPv6 token bucket size
    PacketRate int
    ICMPv6 error packet pate (per second)
    BucketSize int
    ICMPv6 token bucket size
    PacketRate int
    ICMPv6 error packet pate (per second)
    bucketSize Integer
    ICMPv6 token bucket size
    packetRate Integer
    ICMPv6 error packet pate (per second)
    bucketSize number
    ICMPv6 token bucket size
    packetRate number
    ICMPv6 error packet pate (per second)
    bucket_size int
    ICMPv6 token bucket size
    packet_rate int
    ICMPv6 error packet pate (per second)
    bucketSize Number
    ICMPv6 token bucket size
    packetRate Number
    ICMPv6 error packet pate (per second)

    SessionSettingSessionSettingsJumboFrame, SessionSettingSessionSettingsJumboFrameArgs

    Mtu int
    Global MTU
    Mtu int
    Global MTU
    mtu Integer
    Global MTU
    mtu number
    Global MTU
    mtu int
    Global MTU
    mtu Number
    Global MTU

    SessionSettingSessionSettingsNat, SessionSettingSessionSettingsNatArgs

    DippOversub string
    NAT oversubscription rate
    DippOversub string
    NAT oversubscription rate
    dippOversub String
    NAT oversubscription rate
    dippOversub string
    NAT oversubscription rate
    dipp_oversub str
    NAT oversubscription rate
    dippOversub String
    NAT oversubscription rate

    SessionSettingSessionSettingsNat64, SessionSettingSessionSettingsNat64Args

    Ipv6MinNetworkMtu int
    NAT64 IPv6 minimum network MTU
    Ipv6MinNetworkMtu int
    NAT64 IPv6 minimum network MTU
    ipv6MinNetworkMtu Integer
    NAT64 IPv6 minimum network MTU
    ipv6MinNetworkMtu number
    NAT64 IPv6 minimum network MTU
    ipv6_min_network_mtu int
    NAT64 IPv6 minimum network MTU
    ipv6MinNetworkMtu Number
    NAT64 IPv6 minimum network MTU

    Import

    The following command can be used to import a resource not managed by Terraform:

    bash

    $ pulumi import scm:index/sessionSetting:SessionSetting example folder:::id
    

    or

    bash

    $ pulumi import scm:index/sessionSetting:SessionSetting example :snippet::id
    

    or

    bash

    $ pulumi import scm:index/sessionSetting:SessionSetting example ::device:id
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate