Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 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 dictionaryThe following arguments are supported:
getInterfaceManagementProfileList Result
The following output properties are available:
- Datas
List<Get
Interface Management Profile List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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
[]Get
Interface Management Profile List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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<Get
Interface Management Profile List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- 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
Get
Interface Management Profile List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- The Terraform ID.
- 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[Get
Interface Management Profile List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- The Terraform ID.
- 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
- The Terraform ID.
- 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 of the item. Default: Shared.
- Http bool
- Allow HTTP?
- Http
Ocsp bool - Allow HTTP OCSP?
- Https bool
- Allow HTTPS?
- Id string
- UUID of the resource
- Name string
- The name of the item.
- Permitted
Ips List<GetInterface Management Profile List Data Permitted Ip> - Allowed IP address(es)
- Ping bool
- Allow ping?
- Response
Pages bool - Allow response pages?
- Snippet string
- The snippet of the item.
- Ssh bool
- Allow SSH?
- Telnet bool
- Allow telnet? Seriously, why would you do this?!?
- Tfid string
- The Terraform ID.
- Userid
Service bool - Allow User-ID?
- Userid
Syslog boolListener Ssl - Allow User-ID syslog listener (SSL)?
- Userid
Syslog boolListener Udp - Allow User-ID syslog listener (UDP)?
- Device string
- The device in which the resource is defined
- Folder string
- The folder of the item. Default: Shared.
- Http bool
- Allow HTTP?
- Http
Ocsp bool - Allow HTTP OCSP?
- Https bool
- Allow HTTPS?
- Id string
- UUID of the resource
- Name string
- The name of the item.
- Permitted
Ips []GetInterface Management Profile List Data Permitted Ip - Allowed IP address(es)
- Ping bool
- Allow ping?
- Response
Pages bool - Allow response pages?
- Snippet string
- The snippet of the item.
- Ssh bool
- Allow SSH?
- Telnet bool
- Allow telnet? Seriously, why would you do this?!?
- Tfid string
- The Terraform ID.
- Userid
Service bool - Allow User-ID?
- Userid
Syslog boolListener Ssl - Allow User-ID syslog listener (SSL)?
- Userid
Syslog boolListener Udp - Allow User-ID syslog listener (UDP)?
- device String
- The device in which the resource is defined
- folder String
- The folder of the item. Default: Shared.
- http Boolean
- Allow HTTP?
- http
Ocsp Boolean - Allow HTTP OCSP?
- https Boolean
- Allow HTTPS?
- id String
- UUID of the resource
- name String
- The name of the item.
- permitted
Ips List<GetInterface Management Profile List Data Permitted Ip> - Allowed IP address(es)
- ping Boolean
- Allow ping?
- response
Pages Boolean - Allow response pages?
- snippet String
- The snippet of the item.
- ssh Boolean
- Allow SSH?
- telnet Boolean
- Allow telnet? Seriously, why would you do this?!?
- tfid String
- The Terraform ID.
- userid
Service Boolean - Allow User-ID?
- userid
Syslog BooleanListener Ssl - Allow User-ID syslog listener (SSL)?
- userid
Syslog BooleanListener Udp - Allow User-ID syslog listener (UDP)?
- device string
- The device in which the resource is defined
- folder string
- The folder of the item. Default: Shared.
- http boolean
- Allow HTTP?
- http
Ocsp boolean - Allow HTTP OCSP?
- https boolean
- Allow HTTPS?
- id string
- UUID of the resource
- name string
- The name of the item.
- permitted
Ips GetInterface Management Profile List Data Permitted Ip[] - Allowed IP address(es)
- ping boolean
- Allow ping?
- response
Pages boolean - Allow response pages?
- snippet string
- The snippet of the item.
- ssh boolean
- Allow SSH?
- telnet boolean
- Allow telnet? Seriously, why would you do this?!?
- tfid string
- The Terraform ID.
- userid
Service boolean - Allow User-ID?
- userid
Syslog booleanListener Ssl - Allow User-ID syslog listener (SSL)?
- userid
Syslog booleanListener Udp - Allow User-ID syslog listener (UDP)?
- device str
- The device in which the resource is defined
- folder str
- The folder of the item. Default: Shared.
- http bool
- Allow HTTP?
- http_
ocsp bool - Allow HTTP OCSP?
- https bool
- Allow HTTPS?
- id str
- UUID of the resource
- name str
- The name of the item.
- permitted_
ips Sequence[GetInterface Management Profile List Data Permitted Ip] - Allowed IP address(es)
- ping bool
- Allow ping?
- response_
pages bool - Allow response pages?
- snippet str
- The snippet of the item.
- ssh bool
- Allow SSH?
- telnet bool
- Allow telnet? Seriously, why would you do this?!?
- tfid str
- The Terraform ID.
- userid_
service bool - Allow User-ID?
- userid_
syslog_ boollistener_ ssl - Allow User-ID syslog listener (SSL)?
- userid_
syslog_ boollistener_ udp - Allow User-ID syslog listener (UDP)?
- device String
- The device in which the resource is defined
- folder String
- The folder of the item. Default: Shared.
- http Boolean
- Allow HTTP?
- http
Ocsp Boolean - Allow HTTP OCSP?
- https Boolean
- Allow HTTPS?
- id String
- UUID of the resource
- name String
- The name of the item.
- permitted
Ips List<Property Map> - Allowed IP address(es)
- ping Boolean
- Allow ping?
- response
Pages Boolean - Allow response pages?
- snippet String
- The snippet of the item.
- ssh Boolean
- Allow SSH?
- telnet Boolean
- Allow telnet? Seriously, why would you do this?!?
- tfid String
- The Terraform ID.
- userid
Service Boolean - Allow User-ID?
- userid
Syslog BooleanListener Ssl - Allow User-ID syslog listener (SSL)?
- userid
Syslog BooleanListener Udp - 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
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
