1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getInterfaceManagementProfileList
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // -----------------------------------------------------------------------------
    // 6. DATA SOURCE: Fetch a list of Interface Management Profiles
    // This data source retrieves multiple Interface Management Profiles from SCM.
    // -----------------------------------------------------------------------------
    const allMgmtProfiles = scm.getInterfaceManagementProfileList({
        limit: 50,
        folder: "All",
    });
    export const fetchedMgmtProfileListSummary = {
        countOfProfilesFetched: allMgmtProfiles.then(allMgmtProfiles => allMgmtProfiles.total),
        firstProfileName: allMgmtProfiles.then(allMgmtProfiles => allMgmtProfiles.datas?.[0]?.name),
        data: allMgmtProfiles.then(allMgmtProfiles => allMgmtProfiles.datas),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # -----------------------------------------------------------------------------
    # 6. DATA SOURCE: Fetch a list of Interface Management Profiles
    # This data source retrieves multiple Interface Management Profiles from SCM.
    # -----------------------------------------------------------------------------
    all_mgmt_profiles = scm.get_interface_management_profile_list(limit=50,
        folder="All")
    pulumi.export("fetchedMgmtProfileListSummary", {
        "countOfProfilesFetched": all_mgmt_profiles.total,
        "firstProfileName": all_mgmt_profiles.datas[0].name,
        "data": all_mgmt_profiles.datas,
    })
    
    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 {
    		// -----------------------------------------------------------------------------
    		// 6. DATA SOURCE: Fetch a list of Interface Management Profiles
    		// This data source retrieves multiple Interface Management Profiles from SCM.
    		// -----------------------------------------------------------------------------
    		allMgmtProfiles, err := scm.GetInterfaceManagementProfileList(ctx, &scm.GetInterfaceManagementProfileListArgs{
    			Limit:  pulumi.IntRef(50),
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("fetchedMgmtProfileListSummary", pulumi.Map{
    			"countOfProfilesFetched": allMgmtProfiles.Total,
    			"firstProfileName":       allMgmtProfiles.Datas[0].Name,
    			"data":                   allMgmtProfiles.Datas,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // -----------------------------------------------------------------------------
        // 6. DATA SOURCE: Fetch a list of Interface Management Profiles
        // This data source retrieves multiple Interface Management Profiles from SCM.
        // -----------------------------------------------------------------------------
        var allMgmtProfiles = Scm.GetInterfaceManagementProfileList.Invoke(new()
        {
            Limit = 50,
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["fetchedMgmtProfileListSummary"] = 
            {
                { "countOfProfilesFetched", allMgmtProfiles.Apply(getInterfaceManagementProfileListResult => getInterfaceManagementProfileListResult.Total) },
                { "firstProfileName", allMgmtProfiles.Apply(getInterfaceManagementProfileListResult => getInterfaceManagementProfileListResult.Datas[0]?.Name) },
                { "data", allMgmtProfiles.Apply(getInterfaceManagementProfileListResult => getInterfaceManagementProfileListResult.Datas) },
            },
        };
    });
    
    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.GetInterfaceManagementProfileListArgs;
    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) {
            // -----------------------------------------------------------------------------
            // 6. DATA SOURCE: Fetch a list of Interface Management Profiles
            // This data source retrieves multiple Interface Management Profiles from SCM.
            // -----------------------------------------------------------------------------
            final var allMgmtProfiles = ScmFunctions.getInterfaceManagementProfileList(GetInterfaceManagementProfileListArgs.builder()
                .limit(50)
                .folder("All")
                .build());
    
            ctx.export("fetchedMgmtProfileListSummary", Map.ofEntries(
                Map.entry("countOfProfilesFetched", allMgmtProfiles.total()),
                Map.entry("firstProfileName", allMgmtProfiles.datas()[0].name()),
                Map.entry("data", allMgmtProfiles.datas())
            ));
        }
    }
    
    variables:
      # -----------------------------------------------------------------------------
      # 6. DATA SOURCE: Fetch a list of Interface Management Profiles
      # This data source retrieves multiple Interface Management Profiles from SCM.
      # -----------------------------------------------------------------------------
      allMgmtProfiles:
        fn::invoke:
          function: scm:getInterfaceManagementProfileList
          arguments:
            limit: 50
            folder: All
    outputs:
      # -----------------------------------------------------------------------------
      # 7. OUTPUT: Display the fetched Interface Management Profiles list data
      # -----------------------------------------------------------------------------
      fetchedMgmtProfileListSummary:
        countOfProfilesFetched: ${allMgmtProfiles.total}
        firstProfileName: ${allMgmtProfiles.datas[0].name}
        data: ${allMgmtProfiles.datas}
    

    Using getInterfaceManagementProfileList

    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 getInterfaceManagementProfileList(args: GetInterfaceManagementProfileListArgs, opts?: InvokeOptions): Promise<GetInterfaceManagementProfileListResult>
    function getInterfaceManagementProfileListOutput(args: GetInterfaceManagementProfileListOutputArgs, opts?: InvokeOptions): Output<GetInterfaceManagementProfileListResult>
    def get_interface_management_profile_list(device: Optional[str] = None,
                                              folder: Optional[str] = None,
                                              limit: Optional[int] = None,
                                              name: Optional[str] = None,
                                              offset: Optional[int] = None,
                                              snippet: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetInterfaceManagementProfileListResult
    def get_interface_management_profile_list_output(device: Optional[pulumi.Input[str]] = None,
                                              folder: Optional[pulumi.Input[str]] = None,
                                              limit: Optional[pulumi.Input[int]] = None,
                                              name: Optional[pulumi.Input[str]] = None,
                                              offset: Optional[pulumi.Input[int]] = None,
                                              snippet: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetInterfaceManagementProfileListResult]
    func GetInterfaceManagementProfileList(ctx *Context, args *GetInterfaceManagementProfileListArgs, opts ...InvokeOption) (*GetInterfaceManagementProfileListResult, error)
    func GetInterfaceManagementProfileListOutput(ctx *Context, args *GetInterfaceManagementProfileListOutputArgs, opts ...InvokeOption) GetInterfaceManagementProfileListResultOutput

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

    public static class GetInterfaceManagementProfileList 
    {
        public static Task<GetInterfaceManagementProfileListResult> InvokeAsync(GetInterfaceManagementProfileListArgs args, InvokeOptions? opts = null)
        public static Output<GetInterfaceManagementProfileListResult> Invoke(GetInterfaceManagementProfileListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetInterfaceManagementProfileListResult> getInterfaceManagementProfileList(GetInterfaceManagementProfileListArgs args, InvokeOptions options)
    public static Output<GetInterfaceManagementProfileListResult> getInterfaceManagementProfileList(GetInterfaceManagementProfileListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getInterfaceManagementProfileList:getInterfaceManagementProfileList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getInterfaceManagementProfileList Result

    The following output properties are available:

    Datas List<GetInterfaceManagementProfileListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetInterfaceManagementProfileListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetInterfaceManagementProfileListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetInterfaceManagementProfileListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetInterfaceManagementProfileListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetInterfaceManagementProfileListData

    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Http bool
    Allow HTTP?
    HttpOcsp bool
    Allow HTTP OCSP?
    Https bool
    Allow HTTPS?
    Id string
    UUID of the resource
    Name string
    Name
    PermittedIps List<GetInterfaceManagementProfileListDataPermittedIp>
    Allowed IP address(es)
    Ping bool
    Allow ping?
    ResponsePages bool
    Allow response pages?
    Snippet string
    The snippet in which the resource is defined
    Ssh bool
    Allow SSH?
    Telnet bool
    Allow telnet? Seriously, why would you do this?!?
    Tfid string
    UseridService bool
    Allow User-ID?
    UseridSyslogListenerSsl bool
    Allow User-ID syslog listener (SSL)?
    UseridSyslogListenerUdp bool
    Allow User-ID syslog listener (UDP)?
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Http bool
    Allow HTTP?
    HttpOcsp bool
    Allow HTTP OCSP?
    Https bool
    Allow HTTPS?
    Id string
    UUID of the resource
    Name string
    Name
    PermittedIps []GetInterfaceManagementProfileListDataPermittedIp
    Allowed IP address(es)
    Ping bool
    Allow ping?
    ResponsePages bool
    Allow response pages?
    Snippet string
    The snippet in which the resource is defined
    Ssh bool
    Allow SSH?
    Telnet bool
    Allow telnet? Seriously, why would you do this?!?
    Tfid string
    UseridService bool
    Allow User-ID?
    UseridSyslogListenerSsl bool
    Allow User-ID syslog listener (SSL)?
    UseridSyslogListenerUdp bool
    Allow User-ID syslog listener (UDP)?
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    http Boolean
    Allow HTTP?
    httpOcsp Boolean
    Allow HTTP OCSP?
    https Boolean
    Allow HTTPS?
    id String
    UUID of the resource
    name String
    Name
    permittedIps List<GetInterfaceManagementProfileListDataPermittedIp>
    Allowed IP address(es)
    ping Boolean
    Allow ping?
    responsePages Boolean
    Allow response pages?
    snippet String
    The snippet in which the resource is defined
    ssh Boolean
    Allow SSH?
    telnet Boolean
    Allow telnet? Seriously, why would you do this?!?
    tfid String
    useridService Boolean
    Allow User-ID?
    useridSyslogListenerSsl Boolean
    Allow User-ID syslog listener (SSL)?
    useridSyslogListenerUdp Boolean
    Allow User-ID syslog listener (UDP)?
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    http boolean
    Allow HTTP?
    httpOcsp boolean
    Allow HTTP OCSP?
    https boolean
    Allow HTTPS?
    id string
    UUID of the resource
    name string
    Name
    permittedIps GetInterfaceManagementProfileListDataPermittedIp[]
    Allowed IP address(es)
    ping boolean
    Allow ping?
    responsePages boolean
    Allow response pages?
    snippet string
    The snippet in which the resource is defined
    ssh boolean
    Allow SSH?
    telnet boolean
    Allow telnet? Seriously, why would you do this?!?
    tfid string
    useridService boolean
    Allow User-ID?
    useridSyslogListenerSsl boolean
    Allow User-ID syslog listener (SSL)?
    useridSyslogListenerUdp boolean
    Allow User-ID syslog listener (UDP)?
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    http bool
    Allow HTTP?
    http_ocsp bool
    Allow HTTP OCSP?
    https bool
    Allow HTTPS?
    id str
    UUID of the resource
    name str
    Name
    permitted_ips Sequence[GetInterfaceManagementProfileListDataPermittedIp]
    Allowed IP address(es)
    ping bool
    Allow ping?
    response_pages bool
    Allow response pages?
    snippet str
    The snippet in which the resource is defined
    ssh bool
    Allow SSH?
    telnet bool
    Allow telnet? Seriously, why would you do this?!?
    tfid str
    userid_service bool
    Allow User-ID?
    userid_syslog_listener_ssl bool
    Allow User-ID syslog listener (SSL)?
    userid_syslog_listener_udp bool
    Allow User-ID syslog listener (UDP)?
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    http Boolean
    Allow HTTP?
    httpOcsp Boolean
    Allow HTTP OCSP?
    https Boolean
    Allow HTTPS?
    id String
    UUID of the resource
    name String
    Name
    permittedIps List<Property Map>
    Allowed IP address(es)
    ping Boolean
    Allow ping?
    responsePages Boolean
    Allow response pages?
    snippet String
    The snippet in which the resource is defined
    ssh Boolean
    Allow SSH?
    telnet Boolean
    Allow telnet? Seriously, why would you do this?!?
    tfid String
    useridService Boolean
    Allow User-ID?
    useridSyslogListenerSsl Boolean
    Allow User-ID syslog listener (SSL)?
    useridSyslogListenerUdp Boolean
    Allow User-ID syslog listener (UDP)?

    GetInterfaceManagementProfileListDataPermittedIp

    Name string
    The allowed IP address or CIDR block.
    Name string
    The allowed IP address or CIDR block.
    name String
    The allowed IP address or CIDR block.
    name string
    The allowed IP address or CIDR block.
    name str
    The allowed IP address or CIDR block.
    name String
    The allowed IP address or CIDR block.

    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 v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate