1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. ManagementInterface
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

    ManagementInterface resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const miExample = new scm.ManagementInterface("mi_example", {
        folder: "All",
        managementInterface: {
            speedDuplex: "auto-negotiate",
            mtu: 1500,
            mgmtType: {
                dhcpClient: {
                    sendHostname: true,
                    sendClientId: false,
                    acceptDhcpHostname: false,
                    acceptDhcpDomain: false,
                },
            },
            service: {
                disableHttp: false,
                disableHttps: true,
                disableTelnet: false,
                disableSsh: true,
                disableIcmp: false,
                disableSnmp: false,
                disableUseridService: false,
                disableUseridSyslogListenerSsl: false,
                disableUseridSyslogListenerUdp: false,
                disableHttpOcsp: false,
            },
            permittedIps: [{
                name: "10.10.10.10",
                description: "string",
            }],
        },
    });
    
    import pulumi
    import pulumi_scm as scm
    
    mi_example = scm.ManagementInterface("mi_example",
        folder="All",
        management_interface={
            "speed_duplex": "auto-negotiate",
            "mtu": 1500,
            "mgmt_type": {
                "dhcp_client": {
                    "send_hostname": True,
                    "send_client_id": False,
                    "accept_dhcp_hostname": False,
                    "accept_dhcp_domain": False,
                },
            },
            "service": {
                "disable_http": False,
                "disable_https": True,
                "disable_telnet": False,
                "disable_ssh": True,
                "disable_icmp": False,
                "disable_snmp": False,
                "disable_userid_service": False,
                "disable_userid_syslog_listener_ssl": False,
                "disable_userid_syslog_listener_udp": False,
                "disable_http_ocsp": False,
            },
            "permitted_ips": [{
                "name": "10.10.10.10",
                "description": "string",
            }],
        })
    
    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 {
    		_, err := scm.NewManagementInterface(ctx, "mi_example", &scm.ManagementInterfaceArgs{
    			Folder: pulumi.String("All"),
    			ManagementInterface: &scm.ManagementInterfaceManagementInterfaceArgs{
    				SpeedDuplex: pulumi.String("auto-negotiate"),
    				Mtu:         pulumi.Int(1500),
    				MgmtType: &scm.ManagementInterfaceManagementInterfaceMgmtTypeArgs{
    					DhcpClient: &scm.ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs{
    						SendHostname:       pulumi.Bool(true),
    						SendClientId:       pulumi.Bool(false),
    						AcceptDhcpHostname: pulumi.Bool(false),
    						AcceptDhcpDomain:   pulumi.Bool(false),
    					},
    				},
    				Service: &scm.ManagementInterfaceManagementInterfaceServiceArgs{
    					DisableHttp:                    pulumi.Bool(false),
    					DisableHttps:                   pulumi.Bool(true),
    					DisableTelnet:                  pulumi.Bool(false),
    					DisableSsh:                     pulumi.Bool(true),
    					DisableIcmp:                    pulumi.Bool(false),
    					DisableSnmp:                    pulumi.Bool(false),
    					DisableUseridService:           pulumi.Bool(false),
    					DisableUseridSyslogListenerSsl: pulumi.Bool(false),
    					DisableUseridSyslogListenerUdp: pulumi.Bool(false),
    					DisableHttpOcsp:                pulumi.Bool(false),
    				},
    				PermittedIps: scm.ManagementInterfaceManagementInterfacePermittedIpArray{
    					&scm.ManagementInterfaceManagementInterfacePermittedIpArgs{
    						Name:        pulumi.String("10.10.10.10"),
    						Description: pulumi.String("string"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var miExample = new Scm.ManagementInterface("mi_example", new()
        {
            Folder = "All",
            ManagementInterfaceDetails = new Scm.Inputs.ManagementInterfaceManagementInterfaceArgs
            {
                SpeedDuplex = "auto-negotiate",
                Mtu = 1500,
                MgmtType = new Scm.Inputs.ManagementInterfaceManagementInterfaceMgmtTypeArgs
                {
                    DhcpClient = new Scm.Inputs.ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs
                    {
                        SendHostname = true,
                        SendClientId = false,
                        AcceptDhcpHostname = false,
                        AcceptDhcpDomain = false,
                    },
                },
                Service = new Scm.Inputs.ManagementInterfaceManagementInterfaceServiceArgs
                {
                    DisableHttp = false,
                    DisableHttps = true,
                    DisableTelnet = false,
                    DisableSsh = true,
                    DisableIcmp = false,
                    DisableSnmp = false,
                    DisableUseridService = false,
                    DisableUseridSyslogListenerSsl = false,
                    DisableUseridSyslogListenerUdp = false,
                    DisableHttpOcsp = false,
                },
                PermittedIps = new[]
                {
                    new Scm.Inputs.ManagementInterfaceManagementInterfacePermittedIpArgs
                    {
                        Name = "10.10.10.10",
                        Description = "string",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ManagementInterface;
    import com.pulumi.scm.ManagementInterfaceArgs;
    import com.pulumi.scm.inputs.ManagementInterfaceManagementInterfaceArgs;
    import com.pulumi.scm.inputs.ManagementInterfaceManagementInterfaceMgmtTypeArgs;
    import com.pulumi.scm.inputs.ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs;
    import com.pulumi.scm.inputs.ManagementInterfaceManagementInterfaceServiceArgs;
    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 miExample = new ManagementInterface("miExample", ManagementInterfaceArgs.builder()
                .folder("All")
                .managementInterface(ManagementInterfaceManagementInterfaceArgs.builder()
                    .speedDuplex("auto-negotiate")
                    .mtu(1500)
                    .mgmtType(ManagementInterfaceManagementInterfaceMgmtTypeArgs.builder()
                        .dhcpClient(ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs.builder()
                            .sendHostname(true)
                            .sendClientId(false)
                            .acceptDhcpHostname(false)
                            .acceptDhcpDomain(false)
                            .build())
                        .build())
                    .service(ManagementInterfaceManagementInterfaceServiceArgs.builder()
                        .disableHttp(false)
                        .disableHttps(true)
                        .disableTelnet(false)
                        .disableSsh(true)
                        .disableIcmp(false)
                        .disableSnmp(false)
                        .disableUseridService(false)
                        .disableUseridSyslogListenerSsl(false)
                        .disableUseridSyslogListenerUdp(false)
                        .disableHttpOcsp(false)
                        .build())
                    .permittedIps(ManagementInterfaceManagementInterfacePermittedIpArgs.builder()
                        .name("10.10.10.10")
                        .description("string")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      miExample:
        type: scm:ManagementInterface
        name: mi_example
        properties:
          folder: All
          managementInterface:
            speedDuplex: auto-negotiate
            mtu: 1500
            mgmtType:
              dhcpClient:
                sendHostname: true
                sendClientId: false
                acceptDhcpHostname: false
                acceptDhcpDomain: false
            service:
              disableHttp: false
              disableHttps: true
              disableTelnet: false
              disableSsh: true
              disableIcmp: false
              disableSnmp: false
              disableUseridService: false
              disableUseridSyslogListenerSsl: false
              disableUseridSyslogListenerUdp: false
              disableHttpOcsp: false
            permittedIps:
              - name: 10.10.10.10
                description: string
    

    Create ManagementInterface Resource

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

    Constructor syntax

    new ManagementInterface(name: string, args?: ManagementInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementInterface(resource_name: str,
                            args: Optional[ManagementInterfaceArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementInterface(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            device: Optional[str] = None,
                            folder: Optional[str] = None,
                            management_interface: Optional[ManagementInterfaceManagementInterfaceArgs] = None,
                            snippet: Optional[str] = None)
    func NewManagementInterface(ctx *Context, name string, args *ManagementInterfaceArgs, opts ...ResourceOption) (*ManagementInterface, error)
    public ManagementInterface(string name, ManagementInterfaceArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementInterface(String name, ManagementInterfaceArgs args)
    public ManagementInterface(String name, ManagementInterfaceArgs args, CustomResourceOptions options)
    
    type: scm:ManagementInterface
    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 ManagementInterfaceArgs
    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 ManagementInterfaceArgs
    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 ManagementInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementInterfaceArgs
    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 managementInterfaceResource = new Scm.ManagementInterface("managementInterfaceResource", new()
    {
        Device = "string",
        Folder = "string",
        ManagementInterfaceDetails = new Scm.Inputs.ManagementInterfaceManagementInterfaceArgs
        {
            MgmtType = new Scm.Inputs.ManagementInterfaceManagementInterfaceMgmtTypeArgs
            {
                DhcpClient = new Scm.Inputs.ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs
                {
                    AcceptDhcpDomain = false,
                    AcceptDhcpHostname = false,
                    SendClientId = false,
                    SendHostname = false,
                },
                Static = new Scm.Inputs.ManagementInterfaceManagementInterfaceMgmtTypeStaticArgs
                {
                    DefaultGateway = "string",
                    IpAddress = "string",
                    Netmask = "string",
                },
            },
            Mtu = 0,
            PermittedIps = new[]
            {
                new Scm.Inputs.ManagementInterfaceManagementInterfacePermittedIpArgs
                {
                    Description = "string",
                    Name = "string",
                },
            },
            Service = new Scm.Inputs.ManagementInterfaceManagementInterfaceServiceArgs
            {
                DisableHttp = false,
                DisableHttpOcsp = false,
                DisableHttps = false,
                DisableIcmp = false,
                DisableSnmp = false,
                DisableSsh = false,
                DisableTelnet = false,
                DisableUseridService = false,
                DisableUseridSyslogListenerSsl = false,
                DisableUseridSyslogListenerUdp = false,
            },
            SpeedDuplex = "string",
        },
        Snippet = "string",
    });
    
    example, err := scm.NewManagementInterface(ctx, "managementInterfaceResource", &scm.ManagementInterfaceArgs{
    	Device: pulumi.String("string"),
    	Folder: pulumi.String("string"),
    	ManagementInterface: &scm.ManagementInterfaceManagementInterfaceArgs{
    		MgmtType: &scm.ManagementInterfaceManagementInterfaceMgmtTypeArgs{
    			DhcpClient: &scm.ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs{
    				AcceptDhcpDomain:   pulumi.Bool(false),
    				AcceptDhcpHostname: pulumi.Bool(false),
    				SendClientId:       pulumi.Bool(false),
    				SendHostname:       pulumi.Bool(false),
    			},
    			Static: &scm.ManagementInterfaceManagementInterfaceMgmtTypeStaticArgs{
    				DefaultGateway: pulumi.String("string"),
    				IpAddress:      pulumi.String("string"),
    				Netmask:        pulumi.String("string"),
    			},
    		},
    		Mtu: pulumi.Int(0),
    		PermittedIps: scm.ManagementInterfaceManagementInterfacePermittedIpArray{
    			&scm.ManagementInterfaceManagementInterfacePermittedIpArgs{
    				Description: pulumi.String("string"),
    				Name:        pulumi.String("string"),
    			},
    		},
    		Service: &scm.ManagementInterfaceManagementInterfaceServiceArgs{
    			DisableHttp:                    pulumi.Bool(false),
    			DisableHttpOcsp:                pulumi.Bool(false),
    			DisableHttps:                   pulumi.Bool(false),
    			DisableIcmp:                    pulumi.Bool(false),
    			DisableSnmp:                    pulumi.Bool(false),
    			DisableSsh:                     pulumi.Bool(false),
    			DisableTelnet:                  pulumi.Bool(false),
    			DisableUseridService:           pulumi.Bool(false),
    			DisableUseridSyslogListenerSsl: pulumi.Bool(false),
    			DisableUseridSyslogListenerUdp: pulumi.Bool(false),
    		},
    		SpeedDuplex: pulumi.String("string"),
    	},
    	Snippet: pulumi.String("string"),
    })
    
    var managementInterfaceResource = new ManagementInterface("managementInterfaceResource", ManagementInterfaceArgs.builder()
        .device("string")
        .folder("string")
        .managementInterface(ManagementInterfaceManagementInterfaceArgs.builder()
            .mgmtType(ManagementInterfaceManagementInterfaceMgmtTypeArgs.builder()
                .dhcpClient(ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs.builder()
                    .acceptDhcpDomain(false)
                    .acceptDhcpHostname(false)
                    .sendClientId(false)
                    .sendHostname(false)
                    .build())
                .static_(ManagementInterfaceManagementInterfaceMgmtTypeStaticArgs.builder()
                    .defaultGateway("string")
                    .ipAddress("string")
                    .netmask("string")
                    .build())
                .build())
            .mtu(0)
            .permittedIps(ManagementInterfaceManagementInterfacePermittedIpArgs.builder()
                .description("string")
                .name("string")
                .build())
            .service(ManagementInterfaceManagementInterfaceServiceArgs.builder()
                .disableHttp(false)
                .disableHttpOcsp(false)
                .disableHttps(false)
                .disableIcmp(false)
                .disableSnmp(false)
                .disableSsh(false)
                .disableTelnet(false)
                .disableUseridService(false)
                .disableUseridSyslogListenerSsl(false)
                .disableUseridSyslogListenerUdp(false)
                .build())
            .speedDuplex("string")
            .build())
        .snippet("string")
        .build());
    
    management_interface_resource = scm.ManagementInterface("managementInterfaceResource",
        device="string",
        folder="string",
        management_interface={
            "mgmt_type": {
                "dhcp_client": {
                    "accept_dhcp_domain": False,
                    "accept_dhcp_hostname": False,
                    "send_client_id": False,
                    "send_hostname": False,
                },
                "static": {
                    "default_gateway": "string",
                    "ip_address": "string",
                    "netmask": "string",
                },
            },
            "mtu": 0,
            "permitted_ips": [{
                "description": "string",
                "name": "string",
            }],
            "service": {
                "disable_http": False,
                "disable_http_ocsp": False,
                "disable_https": False,
                "disable_icmp": False,
                "disable_snmp": False,
                "disable_ssh": False,
                "disable_telnet": False,
                "disable_userid_service": False,
                "disable_userid_syslog_listener_ssl": False,
                "disable_userid_syslog_listener_udp": False,
            },
            "speed_duplex": "string",
        },
        snippet="string")
    
    const managementInterfaceResource = new scm.ManagementInterface("managementInterfaceResource", {
        device: "string",
        folder: "string",
        managementInterface: {
            mgmtType: {
                dhcpClient: {
                    acceptDhcpDomain: false,
                    acceptDhcpHostname: false,
                    sendClientId: false,
                    sendHostname: false,
                },
                static: {
                    defaultGateway: "string",
                    ipAddress: "string",
                    netmask: "string",
                },
            },
            mtu: 0,
            permittedIps: [{
                description: "string",
                name: "string",
            }],
            service: {
                disableHttp: false,
                disableHttpOcsp: false,
                disableHttps: false,
                disableIcmp: false,
                disableSnmp: false,
                disableSsh: false,
                disableTelnet: false,
                disableUseridService: false,
                disableUseridSyslogListenerSsl: false,
                disableUseridSyslogListenerUdp: false,
            },
            speedDuplex: "string",
        },
        snippet: "string",
    });
    
    type: scm:ManagementInterface
    properties:
        device: string
        folder: string
        managementInterface:
            mgmtType:
                dhcpClient:
                    acceptDhcpDomain: false
                    acceptDhcpHostname: false
                    sendClientId: false
                    sendHostname: false
                static:
                    defaultGateway: string
                    ipAddress: string
                    netmask: string
            mtu: 0
            permittedIps:
                - description: string
                  name: string
            service:
                disableHttp: false
                disableHttpOcsp: false
                disableHttps: false
                disableIcmp: false
                disableSnmp: false
                disableSsh: false
                disableTelnet: false
                disableUseridService: false
                disableUseridSyslogListenerSsl: false
                disableUseridSyslogListenerUdp: false
            speedDuplex: string
        snippet: string
    

    ManagementInterface 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 ManagementInterface 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.

    ManagementInterfaceDetails ManagementInterfaceManagementInterface
    Management interface
    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.

    ManagementInterface ManagementInterfaceManagementInterfaceArgs
    Management interface
    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.

    managementInterface ManagementInterfaceManagementInterface
    Management interface
    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.

    managementInterface ManagementInterfaceManagementInterface
    Management interface
    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.

    management_interface ManagementInterfaceManagementInterfaceArgs
    Management interface
    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.

    managementInterface Property Map
    Management interface
    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 ManagementInterface 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 ManagementInterface Resource

    Get an existing ManagementInterface 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?: ManagementInterfaceState, opts?: CustomResourceOptions): ManagementInterface
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            management_interface: Optional[ManagementInterfaceManagementInterfaceArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> ManagementInterface
    func GetManagementInterface(ctx *Context, name string, id IDInput, state *ManagementInterfaceState, opts ...ResourceOption) (*ManagementInterface, error)
    public static ManagementInterface Get(string name, Input<string> id, ManagementInterfaceState? state, CustomResourceOptions? opts = null)
    public static ManagementInterface get(String name, Output<String> id, ManagementInterfaceState state, CustomResourceOptions options)
    resources:  _:    type: scm:ManagementInterface    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.

    ManagementInterfaceDetails ManagementInterfaceManagementInterface
    Management interface
    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.

    ManagementInterface ManagementInterfaceManagementInterfaceArgs
    Management interface
    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.

    managementInterface ManagementInterfaceManagementInterface
    Management interface
    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.

    managementInterface ManagementInterfaceManagementInterface
    Management interface
    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.

    management_interface ManagementInterfaceManagementInterfaceArgs
    Management interface
    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.

    managementInterface Property Map
    Management interface
    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

    ManagementInterfaceManagementInterface, ManagementInterfaceManagementInterfaceArgs

    mgmtType Property Map
    IP type
    mtu Number
    MTU
    permittedIps List<Property Map>
    Permitting IP addresses
    service Property Map
    Network services
    speedDuplex String
    Speed and duplex

    ManagementInterfaceManagementInterfaceMgmtType, ManagementInterfaceManagementInterfaceMgmtTypeArgs

    DhcpClient ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    Static ManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    DhcpClient ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    Static ManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    dhcpClient ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    static_ ManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    dhcpClient ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    static ManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    dhcp_client ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    static ManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    dhcpClient Property Map
    Dhcp client
    static Property Map

    Static

    ℹ️ Note: You must specify exactly one of dhcp_client and static.

    ManagementInterfaceManagementInterfaceMgmtTypeDhcpClient, ManagementInterfaceManagementInterfaceMgmtTypeDhcpClientArgs

    AcceptDhcpDomain bool
    Accept DHCP server provided domain name
    AcceptDhcpHostname bool
    Accept DHCP server provided hostname
    SendClientId bool
    Send client ID
    SendHostname bool
    Send hostname
    AcceptDhcpDomain bool
    Accept DHCP server provided domain name
    AcceptDhcpHostname bool
    Accept DHCP server provided hostname
    SendClientId bool
    Send client ID
    SendHostname bool
    Send hostname
    acceptDhcpDomain Boolean
    Accept DHCP server provided domain name
    acceptDhcpHostname Boolean
    Accept DHCP server provided hostname
    sendClientId Boolean
    Send client ID
    sendHostname Boolean
    Send hostname
    acceptDhcpDomain boolean
    Accept DHCP server provided domain name
    acceptDhcpHostname boolean
    Accept DHCP server provided hostname
    sendClientId boolean
    Send client ID
    sendHostname boolean
    Send hostname
    accept_dhcp_domain bool
    Accept DHCP server provided domain name
    accept_dhcp_hostname bool
    Accept DHCP server provided hostname
    send_client_id bool
    Send client ID
    send_hostname bool
    Send hostname
    acceptDhcpDomain Boolean
    Accept DHCP server provided domain name
    acceptDhcpHostname Boolean
    Accept DHCP server provided hostname
    sendClientId Boolean
    Send client ID
    sendHostname Boolean
    Send hostname

    ManagementInterfaceManagementInterfaceMgmtTypeStatic, ManagementInterfaceManagementInterfaceMgmtTypeStaticArgs

    DefaultGateway string
    Default gateway
    IpAddress string
    IP address
    Netmask string
    Netmask
    DefaultGateway string
    Default gateway
    IpAddress string
    IP address
    Netmask string
    Netmask
    defaultGateway String
    Default gateway
    ipAddress String
    IP address
    netmask String
    Netmask
    defaultGateway string
    Default gateway
    ipAddress string
    IP address
    netmask string
    Netmask
    default_gateway str
    Default gateway
    ip_address str
    IP address
    netmask str
    Netmask
    defaultGateway String
    Default gateway
    ipAddress String
    IP address
    netmask String
    Netmask

    ManagementInterfaceManagementInterfacePermittedIp, ManagementInterfaceManagementInterfacePermittedIpArgs

    Description string
    Description
    Name string
    IP address
    Description string
    Description
    Name string
    IP address
    description String
    Description
    name String
    IP address
    description string
    Description
    name string
    IP address
    description str
    Description
    name str
    IP address
    description String
    Description
    name String
    IP address

    ManagementInterfaceManagementInterfaceService, ManagementInterfaceManagementInterfaceServiceArgs

    DisableHttp bool
    HTTP
    DisableHttpOcsp bool
    HTTP OCSP
    DisableHttps bool
    HTTPS
    DisableIcmp bool
    Ping
    DisableSnmp bool
    SNMP
    DisableSsh bool
    SSH
    DisableTelnet bool
    Telnet
    DisableUseridService bool
    User-ID
    DisableUseridSyslogListenerSsl bool
    User-ID syslog listener over SSL
    DisableUseridSyslogListenerUdp bool
    User-ID syslog listener over UDP
    DisableHttp bool
    HTTP
    DisableHttpOcsp bool
    HTTP OCSP
    DisableHttps bool
    HTTPS
    DisableIcmp bool
    Ping
    DisableSnmp bool
    SNMP
    DisableSsh bool
    SSH
    DisableTelnet bool
    Telnet
    DisableUseridService bool
    User-ID
    DisableUseridSyslogListenerSsl bool
    User-ID syslog listener over SSL
    DisableUseridSyslogListenerUdp bool
    User-ID syslog listener over UDP
    disableHttp Boolean
    HTTP
    disableHttpOcsp Boolean
    HTTP OCSP
    disableHttps Boolean
    HTTPS
    disableIcmp Boolean
    Ping
    disableSnmp Boolean
    SNMP
    disableSsh Boolean
    SSH
    disableTelnet Boolean
    Telnet
    disableUseridService Boolean
    User-ID
    disableUseridSyslogListenerSsl Boolean
    User-ID syslog listener over SSL
    disableUseridSyslogListenerUdp Boolean
    User-ID syslog listener over UDP
    disableHttp boolean
    HTTP
    disableHttpOcsp boolean
    HTTP OCSP
    disableHttps boolean
    HTTPS
    disableIcmp boolean
    Ping
    disableSnmp boolean
    SNMP
    disableSsh boolean
    SSH
    disableTelnet boolean
    Telnet
    disableUseridService boolean
    User-ID
    disableUseridSyslogListenerSsl boolean
    User-ID syslog listener over SSL
    disableUseridSyslogListenerUdp boolean
    User-ID syslog listener over UDP
    disable_http bool
    HTTP
    disable_http_ocsp bool
    HTTP OCSP
    disable_https bool
    HTTPS
    disable_icmp bool
    Ping
    disable_snmp bool
    SNMP
    disable_ssh bool
    SSH
    disable_telnet bool
    Telnet
    disable_userid_service bool
    User-ID
    disable_userid_syslog_listener_ssl bool
    User-ID syslog listener over SSL
    disable_userid_syslog_listener_udp bool
    User-ID syslog listener over UDP
    disableHttp Boolean
    HTTP
    disableHttpOcsp Boolean
    HTTP OCSP
    disableHttps Boolean
    HTTPS
    disableIcmp Boolean
    Ping
    disableSnmp Boolean
    SNMP
    disableSsh Boolean
    SSH
    disableTelnet Boolean
    Telnet
    disableUseridService Boolean
    User-ID
    disableUseridSyslogListenerSsl Boolean
    User-ID syslog listener over SSL
    disableUseridSyslogListenerUdp Boolean
    User-ID syslog listener over UDP

    Import

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

    bash

    $ pulumi import scm:index/managementInterface:ManagementInterface example folder:::id
    

    or

    bash

    $ pulumi import scm:index/managementInterface:ManagementInterface example :snippet::id
    

    or

    bash

    $ pulumi import scm:index/managementInterface:ManagementInterface 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