1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getExternalDynamicListList
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";
    
    // Data source to fetch all external dynamic lists in the "Shared" folder.
    const allSharedEdls = scm.getExternalDynamicListList({
        folder: "All",
    });
    export const allSharedEdlsMap = allSharedEdls.then(allSharedEdls => allSharedEdls.datas);
    // Example of using pagination to get the first 5 EDLs.
    const paginatedEdls = scm.getExternalDynamicListList({
        folder: "All",
        limit: 5,
        offset: 0,
    });
    export const paginatedEdlsDetails = {
        totalInFolder: paginatedEdls.then(paginatedEdls => paginatedEdls.total),
        limitUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.limit),
        offsetUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.offset),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Data source to fetch all external dynamic lists in the "Shared" folder.
    all_shared_edls = scm.get_external_dynamic_list_list(folder="All")
    pulumi.export("allSharedEdlsMap", all_shared_edls.datas)
    # Example of using pagination to get the first 5 EDLs.
    paginated_edls = scm.get_external_dynamic_list_list(folder="All",
        limit=5,
        offset=0)
    pulumi.export("paginatedEdlsDetails", {
        "totalInFolder": paginated_edls.total,
        "limitUsed": paginated_edls.limit,
        "offsetUsed": paginated_edls.offset,
    })
    
    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 {
    		// Data source to fetch all external dynamic lists in the "Shared" folder.
    		allSharedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("allSharedEdlsMap", allSharedEdls.Datas)
    		// Example of using pagination to get the first 5 EDLs.
    		paginatedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
    			Folder: pulumi.StringRef("All"),
    			Limit:  pulumi.IntRef(5),
    			Offset: pulumi.IntRef(0),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("paginatedEdlsDetails", pulumi.IntMap{
    			"totalInFolder": paginatedEdls.Total,
    			"limitUsed":     paginatedEdls.Limit,
    			"offsetUsed":    paginatedEdls.Offset,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Data source to fetch all external dynamic lists in the "Shared" folder.
        var allSharedEdls = Scm.GetExternalDynamicListList.Invoke(new()
        {
            Folder = "All",
        });
    
        // Example of using pagination to get the first 5 EDLs.
        var paginatedEdls = Scm.GetExternalDynamicListList.Invoke(new()
        {
            Folder = "All",
            Limit = 5,
            Offset = 0,
        });
    
        return new Dictionary<string, object?>
        {
            ["allSharedEdlsMap"] = allSharedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Datas),
            ["paginatedEdlsDetails"] = 
            {
                { "totalInFolder", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Total) },
                { "limitUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Limit) },
                { "offsetUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Offset) },
            },
        };
    });
    
    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.GetExternalDynamicListListArgs;
    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) {
            // Data source to fetch all external dynamic lists in the "Shared" folder.
            final var allSharedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("allSharedEdlsMap", allSharedEdls.datas());
            // Example of using pagination to get the first 5 EDLs.
            final var paginatedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
                .folder("All")
                .limit(5)
                .offset(0)
                .build());
    
            ctx.export("paginatedEdlsDetails", Map.ofEntries(
                Map.entry("totalInFolder", paginatedEdls.total()),
                Map.entry("limitUsed", paginatedEdls.limit()),
                Map.entry("offsetUsed", paginatedEdls.offset())
            ));
        }
    }
    
    variables:
      # Data source to fetch all external dynamic lists in the "Shared" folder.
      allSharedEdls:
        fn::invoke:
          function: scm:getExternalDynamicListList
          arguments:
            folder: All
      # Example of using pagination to get the first 5 EDLs.
      paginatedEdls:
        fn::invoke:
          function: scm:getExternalDynamicListList
          arguments:
            folder: All
            limit: 5
            offset: 0
    outputs:
      # Creates a map where the key is the EDL ID and the value is the full object.
      allSharedEdlsMap: ${allSharedEdls.datas}
      # Outputs pagination details, such as the total count and the limit used.
      paginatedEdlsDetails:
        totalInFolder: ${paginatedEdls.total}
        limitUsed: ${paginatedEdls.limit}
        offsetUsed: ${paginatedEdls.offset}
    

    Using getExternalDynamicListList

    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 getExternalDynamicListList(args: GetExternalDynamicListListArgs, opts?: InvokeOptions): Promise<GetExternalDynamicListListResult>
    function getExternalDynamicListListOutput(args: GetExternalDynamicListListOutputArgs, opts?: InvokeOptions): Output<GetExternalDynamicListListResult>
    def get_external_dynamic_list_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) -> GetExternalDynamicListListResult
    def get_external_dynamic_list_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[GetExternalDynamicListListResult]
    func GetExternalDynamicListList(ctx *Context, args *GetExternalDynamicListListArgs, opts ...InvokeOption) (*GetExternalDynamicListListResult, error)
    func GetExternalDynamicListListOutput(ctx *Context, args *GetExternalDynamicListListOutputArgs, opts ...InvokeOption) GetExternalDynamicListListResultOutput

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

    public static class GetExternalDynamicListList 
    {
        public static Task<GetExternalDynamicListListResult> InvokeAsync(GetExternalDynamicListListArgs args, InvokeOptions? opts = null)
        public static Output<GetExternalDynamicListListResult> Invoke(GetExternalDynamicListListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
    public static Output<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getExternalDynamicListList:getExternalDynamicListList
      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.

    getExternalDynamicListList Result

    The following output properties are available:

    Datas List<GetExternalDynamicListListData>
    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 []GetExternalDynamicListListData
    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<GetExternalDynamicListListData>
    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 GetExternalDynamicListListData[]
    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[GetExternalDynamicListListData]
    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

    GetExternalDynamicListListData

    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the external dynamic list
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type GetExternalDynamicListListDataType
    Type
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the external dynamic list
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type GetExternalDynamicListListDataType
    Type
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the external dynamic list
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    tfid String
    type GetExternalDynamicListListDataType
    Type
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder in which the resource is defined
    id string
    The UUID of the external dynamic list
    name string
    The name of the external dynamic list
    snippet string
    The snippet in which the resource is defined
    tfid string
    type GetExternalDynamicListListDataType
    Type
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder in which the resource is defined
    id str
    The UUID of the external dynamic list
    name str
    The name of the external dynamic list
    snippet str
    The snippet in which the resource is defined
    tfid str
    type GetExternalDynamicListListDataType
    Type
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the external dynamic list
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    tfid String
    type Property Map
    Type

    GetExternalDynamicListListDataType

    GetExternalDynamicListListDataTypeDomain

    Auth GetExternalDynamicListListDataTypeDomainAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Exception list
    ExpandDomain bool
    Enable/Disable expand domain
    Recurring GetExternalDynamicListListDataTypeDomainRecurring
    Recurring
    Url string
    Url
    Auth GetExternalDynamicListListDataTypeDomainAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Exception list
    ExpandDomain bool
    Enable/Disable expand domain
    Recurring GetExternalDynamicListListDataTypeDomainRecurring
    Recurring
    Url string
    Url
    auth GetExternalDynamicListListDataTypeDomainAuth
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    expandDomain Boolean
    Enable/Disable expand domain
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    Recurring
    url String
    Url
    auth GetExternalDynamicListListDataTypeDomainAuth
    Auth
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Exception list
    expandDomain boolean
    Enable/Disable expand domain
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    Recurring
    url string
    Url
    auth GetExternalDynamicListListDataTypeDomainAuth
    Auth
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    expand_domain bool
    Enable/Disable expand domain
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    Recurring
    url str
    Url
    auth Property Map
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    expandDomain Boolean
    Enable/Disable expand domain
    recurring Property Map
    Recurring
    url String
    Url

    GetExternalDynamicListListDataTypeDomainAuth

    Password string
    Password
    Username string
    Username
    Password string
    Password
    Username string
    Username
    password String
    Password
    username String
    Username
    password string
    Password
    username string
    Username
    password str
    Password
    username str
    Username
    password String
    Password
    username String
    Username

    GetExternalDynamicListListDataTypeDomainRecurring

    GetExternalDynamicListListDataTypeDomainRecurringDaily

    At string
    Time specification hh (e.g. 20)
    At string
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)
    at string
    Time specification hh (e.g. 20)
    at str
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)

    GetExternalDynamicListListDataTypeDomainRecurringMonthly

    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Integer
    Day of month
    at string
    Time specification hh (e.g. 20)
    dayOfMonth number
    Day of month
    at str
    Time specification hh (e.g. 20)
    day_of_month int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Number
    Day of month

    GetExternalDynamicListListDataTypeDomainRecurringWeekly

    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week
    at string
    Time specification hh (e.g. 20)
    dayOfWeek string
    Day of week
    at str
    Time specification hh (e.g. 20)
    day_of_week str
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week

    GetExternalDynamicListListDataTypeImei

    Auth GetExternalDynamicListListDataTypeImeiAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Recurring GetExternalDynamicListListDataTypeImeiRecurring
    Recurring
    Url string
    Url
    Auth GetExternalDynamicListListDataTypeImeiAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Exception list
    Recurring GetExternalDynamicListListDataTypeImeiRecurring
    Recurring
    Url string
    Url
    auth GetExternalDynamicListListDataTypeImeiAuth
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    Recurring
    url String
    Url
    auth GetExternalDynamicListListDataTypeImeiAuth
    Auth
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Exception list
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    Recurring
    url string
    Url
    auth GetExternalDynamicListListDataTypeImeiAuth
    Auth
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    Recurring
    url str
    Url
    auth Property Map
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring Property Map
    Recurring
    url String
    Url

    GetExternalDynamicListListDataTypeImeiAuth

    Password string
    Password
    Username string
    Username
    Password string
    Password
    Username string
    Username
    password String
    Password
    username String
    Username
    password string
    Password
    username string
    Username
    password str
    Password
    username str
    Username
    password String
    Password
    username String
    Username

    GetExternalDynamicListListDataTypeImeiRecurring

    GetExternalDynamicListListDataTypeImeiRecurringDaily

    At string
    Time specification hh (e.g. 20)
    At string
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)
    at string
    Time specification hh (e.g. 20)
    at str
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)

    GetExternalDynamicListListDataTypeImeiRecurringMonthly

    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Integer
    Day of month
    at string
    Time specification hh (e.g. 20)
    dayOfMonth number
    Day of month
    at str
    Time specification hh (e.g. 20)
    day_of_month int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Number
    Day of month

    GetExternalDynamicListListDataTypeImeiRecurringWeekly

    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week
    at string
    Time specification hh (e.g. 20)
    dayOfWeek string
    Day of week
    at str
    Time specification hh (e.g. 20)
    day_of_week str
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week

    GetExternalDynamicListListDataTypeImsi

    Auth GetExternalDynamicListListDataTypeImsiAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Recurring GetExternalDynamicListListDataTypeImsiRecurring
    Recurring
    Url string
    Url
    Auth GetExternalDynamicListListDataTypeImsiAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Exception list
    Recurring GetExternalDynamicListListDataTypeImsiRecurring
    Recurring
    Url string
    Url
    auth GetExternalDynamicListListDataTypeImsiAuth
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    Recurring
    url String
    Url
    auth GetExternalDynamicListListDataTypeImsiAuth
    Auth
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Exception list
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    Recurring
    url string
    Url
    auth GetExternalDynamicListListDataTypeImsiAuth
    Auth
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    Recurring
    url str
    Url
    auth Property Map
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring Property Map
    Recurring
    url String
    Url

    GetExternalDynamicListListDataTypeImsiAuth

    Password string
    Password
    Username string
    Username
    Password string
    Password
    Username string
    Username
    password String
    Password
    username String
    Username
    password string
    Password
    username string
    Username
    password str
    Password
    username str
    Username
    password String
    Password
    username String
    Username

    GetExternalDynamicListListDataTypeImsiRecurring

    GetExternalDynamicListListDataTypeImsiRecurringDaily

    At string
    Time specification hh (e.g. 20)
    At string
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)
    at string
    Time specification hh (e.g. 20)
    at str
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)

    GetExternalDynamicListListDataTypeImsiRecurringMonthly

    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Integer
    Day of month
    at string
    Time specification hh (e.g. 20)
    dayOfMonth number
    Day of month
    at str
    Time specification hh (e.g. 20)
    day_of_month int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Number
    Day of month

    GetExternalDynamicListListDataTypeImsiRecurringWeekly

    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week
    at string
    Time specification hh (e.g. 20)
    dayOfWeek string
    Day of week
    at str
    Time specification hh (e.g. 20)
    day_of_week str
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week

    GetExternalDynamicListListDataTypeIp

    Auth GetExternalDynamicListListDataTypeIpAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Recurring GetExternalDynamicListListDataTypeIpRecurring
    Recurring
    Url string
    Url
    Auth GetExternalDynamicListListDataTypeIpAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Exception list
    Recurring GetExternalDynamicListListDataTypeIpRecurring
    Recurring
    Url string
    Url
    auth GetExternalDynamicListListDataTypeIpAuth
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring GetExternalDynamicListListDataTypeIpRecurring
    Recurring
    url String
    Url
    auth GetExternalDynamicListListDataTypeIpAuth
    Auth
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Exception list
    recurring GetExternalDynamicListListDataTypeIpRecurring
    Recurring
    url string
    Url
    auth GetExternalDynamicListListDataTypeIpAuth
    Auth
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    recurring GetExternalDynamicListListDataTypeIpRecurring
    Recurring
    url str
    Url
    auth Property Map
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring Property Map
    Recurring
    url String
    Url

    GetExternalDynamicListListDataTypeIpAuth

    Password string
    Password
    Username string
    Username
    Password string
    Password
    Username string
    Username
    password String
    Password
    username String
    Username
    password string
    Password
    username string
    Username
    password str
    Password
    username str
    Username
    password String
    Password
    username String
    Username

    GetExternalDynamicListListDataTypeIpRecurring

    GetExternalDynamicListListDataTypeIpRecurringDaily

    At string
    Time specification hh (e.g. 20)
    At string
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)
    at string
    Time specification hh (e.g. 20)
    at str
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)

    GetExternalDynamicListListDataTypeIpRecurringMonthly

    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Integer
    Day of month
    at string
    Time specification hh (e.g. 20)
    dayOfMonth number
    Day of month
    at str
    Time specification hh (e.g. 20)
    day_of_month int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Number
    Day of month

    GetExternalDynamicListListDataTypeIpRecurringWeekly

    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week
    at string
    Time specification hh (e.g. 20)
    dayOfWeek string
    Day of week
    at str
    Time specification hh (e.g. 20)
    day_of_week str
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week

    GetExternalDynamicListListDataTypePredefinedIp

    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Url string
    Url
    Description string
    Description
    ExceptionLists []string
    Exception list
    Url string
    Url
    description String
    Description
    exceptionLists List<String>
    Exception list
    url String
    Url
    description string
    Description
    exceptionLists string[]
    Exception list
    url string
    Url
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    url str
    Url
    description String
    Description
    exceptionLists List<String>
    Exception list
    url String
    Url

    GetExternalDynamicListListDataTypePredefinedUrl

    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Url string
    Url
    Description string
    Description
    ExceptionLists []string
    Exception list
    Url string
    Url
    description String
    Description
    exceptionLists List<String>
    Exception list
    url String
    Url
    description string
    Description
    exceptionLists string[]
    Exception list
    url string
    Url
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    url str
    Url
    description String
    Description
    exceptionLists List<String>
    Exception list
    url String
    Url

    GetExternalDynamicListListDataTypeUrl

    Auth GetExternalDynamicListListDataTypeUrlAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Exception list
    Recurring GetExternalDynamicListListDataTypeUrlRecurring
    Recurring
    Url string
    Url
    Auth GetExternalDynamicListListDataTypeUrlAuth
    Auth
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Exception list
    Recurring GetExternalDynamicListListDataTypeUrlRecurring
    Recurring
    Url string
    Url
    auth GetExternalDynamicListListDataTypeUrlAuth
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    Recurring
    url String
    Url
    auth GetExternalDynamicListListDataTypeUrlAuth
    Auth
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Exception list
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    Recurring
    url string
    Url
    auth GetExternalDynamicListListDataTypeUrlAuth
    Auth
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Exception list
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    Recurring
    url str
    Url
    auth Property Map
    Auth
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Exception list
    recurring Property Map
    Recurring
    url String
    Url

    GetExternalDynamicListListDataTypeUrlAuth

    Password string
    Password
    Username string
    Username
    Password string
    Password
    Username string
    Username
    password String
    Password
    username String
    Username
    password string
    Password
    username string
    Username
    password str
    Password
    username str
    Username
    password String
    Password
    username String
    Username

    GetExternalDynamicListListDataTypeUrlRecurring

    GetExternalDynamicListListDataTypeUrlRecurringDaily

    At string
    Time specification hh (e.g. 20)
    At string
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)
    at string
    Time specification hh (e.g. 20)
    at str
    Time specification hh (e.g. 20)
    at String
    Time specification hh (e.g. 20)

    GetExternalDynamicListListDataTypeUrlRecurringMonthly

    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    At string
    Time specification hh (e.g. 20)
    DayOfMonth int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Integer
    Day of month
    at string
    Time specification hh (e.g. 20)
    dayOfMonth number
    Day of month
    at str
    Time specification hh (e.g. 20)
    day_of_month int
    Day of month
    at String
    Time specification hh (e.g. 20)
    dayOfMonth Number
    Day of month

    GetExternalDynamicListListDataTypeUrlRecurringWeekly

    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    At string
    Time specification hh (e.g. 20)
    DayOfWeek string
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week
    at string
    Time specification hh (e.g. 20)
    dayOfWeek string
    Day of week
    at str
    Time specification hh (e.g. 20)
    day_of_week str
    Day of week
    at String
    Time specification hh (e.g. 20)
    dayOfWeek String
    Day of week

    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