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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const settingsData = scm.getManagementInterface({
        id: "c94505fb-9554-4e19-b56d-e6104c908fa7",
    });
    export const fetchedSettings = settingsData;
    
    import pulumi
    import pulumi_scm as scm
    
    settings_data = scm.get_management_interface(id="c94505fb-9554-4e19-b56d-e6104c908fa7")
    pulumi.export("fetchedSettings", settings_data)
    
    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 {
    		settingsData, err := scm.LookupManagementInterface(ctx, &scm.LookupManagementInterfaceArgs{
    			Id: "c94505fb-9554-4e19-b56d-e6104c908fa7",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("fetchedSettings", settingsData)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var settingsData = Scm.GetManagementInterface.Invoke(new()
        {
            Id = "c94505fb-9554-4e19-b56d-e6104c908fa7",
        });
    
        return new Dictionary<string, object?>
        {
            ["fetchedSettings"] = settingsData,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetManagementInterfaceArgs;
    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) {
            final var settingsData = ScmFunctions.getManagementInterface(GetManagementInterfaceArgs.builder()
                .id("c94505fb-9554-4e19-b56d-e6104c908fa7")
                .build());
    
            ctx.export("fetchedSettings", settingsData);
        }
    }
    
    variables:
      settingsData:
        fn::invoke:
          function: scm:getManagementInterface
          arguments:
            id: c94505fb-9554-4e19-b56d-e6104c908fa7
    outputs:
      fetchedSettings: ${settingsData}
    

    Using getManagementInterface

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getManagementInterface(args: GetManagementInterfaceArgs, opts?: InvokeOptions): Promise<GetManagementInterfaceResult>
    function getManagementInterfaceOutput(args: GetManagementInterfaceOutputArgs, opts?: InvokeOptions): Output<GetManagementInterfaceResult>
    def get_management_interface(device: Optional[str] = None,
                                 folder: Optional[str] = None,
                                 id: Optional[str] = None,
                                 snippet: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetManagementInterfaceResult
    def get_management_interface_output(device: Optional[pulumi.Input[str]] = None,
                                 folder: Optional[pulumi.Input[str]] = None,
                                 id: Optional[pulumi.Input[str]] = None,
                                 snippet: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetManagementInterfaceResult]
    func LookupManagementInterface(ctx *Context, args *LookupManagementInterfaceArgs, opts ...InvokeOption) (*LookupManagementInterfaceResult, error)
    func LookupManagementInterfaceOutput(ctx *Context, args *LookupManagementInterfaceOutputArgs, opts ...InvokeOption) LookupManagementInterfaceResultOutput

    > Note: This function is named LookupManagementInterface in the Go SDK.

    public static class GetManagementInterface 
    {
        public static Task<GetManagementInterfaceResult> InvokeAsync(GetManagementInterfaceArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementInterfaceResult> Invoke(GetManagementInterfaceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementInterfaceResult> getManagementInterface(GetManagementInterfaceArgs args, InvokeOptions options)
    public static Output<GetManagementInterfaceResult> getManagementInterface(GetManagementInterfaceArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getManagementInterface:getManagementInterface
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Snippet string
    Id string
    UUID of the resource
    Device string
    The device in which the resource is defined
    Folder string
    Snippet string
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    snippet String
    id string
    UUID of the resource
    device string
    The device in which the resource is defined
    folder string
    snippet string
    id str
    UUID of the resource
    device str
    The device in which the resource is defined
    folder str
    snippet str
    id String
    UUID of the resource
    device String
    The device in which the resource is defined
    folder String
    snippet String

    getManagementInterface Result

    The following output properties are available:

    Device string
    The device in which the resource is defined
    Folder string
    Id string
    UUID of the resource
    ManagementInterface GetManagementInterfaceManagementInterface
    Snippet string
    Tfid string
    Device string
    The device in which the resource is defined
    Folder string
    Id string
    UUID of the resource
    ManagementInterface GetManagementInterfaceManagementInterface
    Snippet string
    Tfid string
    device String
    The device in which the resource is defined
    folder String
    id String
    UUID of the resource
    managementInterface GetManagementInterfaceManagementInterface
    snippet String
    tfid String
    device string
    The device in which the resource is defined
    folder string
    id string
    UUID of the resource
    managementInterface GetManagementInterfaceManagementInterface
    snippet string
    tfid string
    device str
    The device in which the resource is defined
    folder str
    id str
    UUID of the resource
    management_interface GetManagementInterfaceManagementInterface
    snippet str
    tfid str
    device String
    The device in which the resource is defined
    folder String
    id String
    UUID of the resource
    managementInterface Property Map
    snippet String
    tfid String

    Supporting Types

    GetManagementInterfaceManagementInterface

    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

    GetManagementInterfaceManagementInterfaceMgmtType

    DhcpClient GetManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    Static GetManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

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

    DhcpClient GetManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    Static GetManagementInterfaceManagementInterfaceMgmtTypeStatic

    Static

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

    dhcpClient GetManagementInterfaceManagementInterfaceMgmtTypeDhcpClient
    Dhcp client
    static GetManagementInterfaceManagementInterfaceMgmtTypeStatic

    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.

    GetManagementInterfaceManagementInterfaceMgmtTypeDhcpClient

    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

    GetManagementInterfaceManagementInterfaceMgmtTypeStatic

    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

    GetManagementInterfaceManagementInterfacePermittedIp

    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

    GetManagementInterfaceManagementInterfaceService

    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

    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