1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getExternalDynamicList
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi

    ExternalDynamicList data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Data source to look up a single external dynamic list by its ID.
    const scmExternalDynamicListDs = scm.getExternalDynamicList({
        id: "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
    });
    export const externalDynamicListDetails = {
        id: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.id),
        name: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.name),
        folder: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.folder),
        description: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.description),
        url: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.url),
        recurring: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.recurring),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Data source to look up a single external dynamic list by its ID.
    scm_external_dynamic_list_ds = scm.get_external_dynamic_list(id="ce39b7b5-f5bc-4276-9fe5-be56613e37ad")
    pulumi.export("externalDynamicListDetails", {
        "id": scm_external_dynamic_list_ds.id,
        "name": scm_external_dynamic_list_ds.name,
        "folder": scm_external_dynamic_list_ds.folder,
        "description": scm_external_dynamic_list_ds.type.domain.description,
        "url": scm_external_dynamic_list_ds.type.domain.url,
        "recurring": scm_external_dynamic_list_ds.type.domain.recurring,
    })
    
    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 look up a single external dynamic list by its ID.
    		scmExternalDynamicListDs, err := scm.LookupExternalDynamicList(ctx, &scm.LookupExternalDynamicListArgs{
    			Id: "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("externalDynamicListDetails", pulumi.Map{
    			"id":          scmExternalDynamicListDs.Id,
    			"name":        scmExternalDynamicListDs.Name,
    			"folder":      scmExternalDynamicListDs.Folder,
    			"description": scmExternalDynamicListDs.Type.Domain.Description,
    			"url":         scmExternalDynamicListDs.Type.Domain.Url,
    			"recurring":   scmExternalDynamicListDs.Type.Domain.Recurring,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Data source to look up a single external dynamic list by its ID.
        var scmExternalDynamicListDs = Scm.GetExternalDynamicList.Invoke(new()
        {
            Id = "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
        });
    
        return new Dictionary<string, object?>
        {
            ["externalDynamicListDetails"] = 
            {
                { "id", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Id) },
                { "name", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Name) },
                { "folder", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Folder) },
                { "description", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Description) },
                { "url", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Url) },
                { "recurring", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Recurring) },
            },
        };
    });
    
    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.GetExternalDynamicListArgs;
    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 look up a single external dynamic list by its ID.
            final var scmExternalDynamicListDs = ScmFunctions.getExternalDynamicList(GetExternalDynamicListArgs.builder()
                .id("ce39b7b5-f5bc-4276-9fe5-be56613e37ad")
                .build());
    
            ctx.export("externalDynamicListDetails", Map.ofEntries(
                Map.entry("id", scmExternalDynamicListDs.id()),
                Map.entry("name", scmExternalDynamicListDs.name()),
                Map.entry("folder", scmExternalDynamicListDs.folder()),
                Map.entry("description", scmExternalDynamicListDs.type().domain().description()),
                Map.entry("url", scmExternalDynamicListDs.type().domain().url()),
                Map.entry("recurring", scmExternalDynamicListDs.type().domain().recurring())
            ));
        }
    }
    
    variables:
      # Data source to look up a single external dynamic list by its ID.
      scmExternalDynamicListDs:
        fn::invoke:
          function: scm:getExternalDynamicList
          arguments:
            id: ce39b7b5-f5bc-4276-9fe5-be56613e37ad
    outputs:
      # Output the details of the looked-up external dynamic list.
      externalDynamicListDetails:
        id: ${scmExternalDynamicListDs.id}
        name: ${scmExternalDynamicListDs.name}
        folder: ${scmExternalDynamicListDs.folder}
        description: ${scmExternalDynamicListDs.type.domain.description}
        url: ${scmExternalDynamicListDs.type.domain.url}
        recurring: ${scmExternalDynamicListDs.type.domain.recurring}
    

    Using getExternalDynamicList

    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 getExternalDynamicList(args: GetExternalDynamicListArgs, opts?: InvokeOptions): Promise<GetExternalDynamicListResult>
    function getExternalDynamicListOutput(args: GetExternalDynamicListOutputArgs, opts?: InvokeOptions): Output<GetExternalDynamicListResult>
    def get_external_dynamic_list(device: Optional[str] = None,
                                  folder: Optional[str] = None,
                                  id: Optional[str] = None,
                                  name: Optional[str] = None,
                                  snippet: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetExternalDynamicListResult
    def get_external_dynamic_list_output(device: Optional[pulumi.Input[str]] = None,
                                  folder: Optional[pulumi.Input[str]] = None,
                                  id: Optional[pulumi.Input[str]] = None,
                                  name: Optional[pulumi.Input[str]] = None,
                                  snippet: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetExternalDynamicListResult]
    func LookupExternalDynamicList(ctx *Context, args *LookupExternalDynamicListArgs, opts ...InvokeOption) (*LookupExternalDynamicListResult, error)
    func LookupExternalDynamicListOutput(ctx *Context, args *LookupExternalDynamicListOutputArgs, opts ...InvokeOption) LookupExternalDynamicListResultOutput

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

    public static class GetExternalDynamicList 
    {
        public static Task<GetExternalDynamicListResult> InvokeAsync(GetExternalDynamicListArgs args, InvokeOptions? opts = null)
        public static Output<GetExternalDynamicListResult> Invoke(GetExternalDynamicListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetExternalDynamicListResult> getExternalDynamicList(GetExternalDynamicListArgs args, InvokeOptions options)
    public static Output<GetExternalDynamicListResult> getExternalDynamicList(GetExternalDynamicListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getExternalDynamicList:getExternalDynamicList
      arguments:
        # arguments dictionary

    The following arguments are supported:

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

    getExternalDynamicList Result

    The following output properties are available:

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

    Supporting Types

    GetExternalDynamicListType

    Domain GetExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    Imei GetExternalDynamicListTypeImei

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Imsi GetExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Ip GetExternalDynamicListTypeIp

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    PredefinedIp GetExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    PredefinedUrl GetExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Url GetExternalDynamicListTypeUrl

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Domain GetExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    Imei GetExternalDynamicListTypeImei

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Imsi GetExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Ip GetExternalDynamicListTypeIp

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    PredefinedIp GetExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    PredefinedUrl GetExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    Url GetExternalDynamicListTypeUrl

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    domain GetExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListTypeImei

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    imsi GetExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    ip GetExternalDynamicListTypeIp

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedIp GetExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedUrl GetExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    url GetExternalDynamicListTypeUrl

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    domain GetExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListTypeImei

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    imsi GetExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    ip GetExternalDynamicListTypeIp

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedIp GetExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedUrl GetExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    url GetExternalDynamicListTypeUrl

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    domain GetExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListTypeImei

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    imsi GetExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    ip GetExternalDynamicListTypeIp

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefined_ip GetExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefined_url GetExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    url GetExternalDynamicListTypeUrl

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    domain Property Map
    Domain settings for Custom Domain type
    imei Property Map

    IMEI Configuration settings

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    imsi Property Map

    IMSI Config for Custom IMSI type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    ip Property Map

    IP settings for Custom IP type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedIp Property Map

    Predefined IP settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    predefinedUrl Property Map

    Predefined URL settings for EDL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    url Property Map

    URL settings for Custom URL type

    ℹ️ Note: You must specify exactly one of domain, imei, imsi, ip, predefined_ip, predefined_url, and url.

    GetExternalDynamicListTypeDomain

    Auth GetExternalDynamicListTypeDomainAuth
    Authentication settings for Custom Domain type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    Domain Exception List for Custom Domain type
    ExpandDomain bool
    Enable/Disable expand domain
    Recurring GetExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    Auth GetExternalDynamicListTypeDomainAuth
    Authentication settings for Custom Domain type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    Domain Exception List for Custom Domain type
    ExpandDomain bool
    Enable/Disable expand domain
    Recurring GetExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    auth GetExternalDynamicListTypeDomainAuth
    Authentication settings for Custom Domain type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Domain Exception List for Custom Domain type
    expandDomain Boolean
    Enable/Disable expand domain
    recurring GetExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url String
    External URL for Custom Domain type
    auth GetExternalDynamicListTypeDomainAuth
    Authentication settings for Custom Domain type
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    Domain Exception List for Custom Domain type
    expandDomain boolean
    Enable/Disable expand domain
    recurring GetExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url string
    External URL for Custom Domain type
    auth GetExternalDynamicListTypeDomainAuth
    Authentication settings for Custom Domain type
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    Domain Exception List for Custom Domain type
    expand_domain bool
    Enable/Disable expand domain
    recurring GetExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url str
    External URL for Custom Domain type
    auth Property Map
    Authentication settings for Custom Domain type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Domain Exception List for Custom Domain type
    expandDomain Boolean
    Enable/Disable expand domain
    recurring Property Map
    Update Schedule for Custom Domain type
    url String
    External URL for Custom Domain type

    GetExternalDynamicListTypeDomainAuth

    Password string
    Password for Custom Domain authentication
    Username string
    Username for Custom Domain authentication
    Password string
    Password for Custom Domain authentication
    Username string
    Username for Custom Domain authentication
    password String
    Password for Custom Domain authentication
    username String
    Username for Custom Domain authentication
    password string
    Password for Custom Domain authentication
    username string
    Username for Custom Domain authentication
    password str
    Password for Custom Domain authentication
    username str
    Username for Custom Domain authentication
    password String
    Password for Custom Domain authentication
    username String
    Username for Custom Domain authentication

    GetExternalDynamicListTypeDomainRecurring

    Daily GetExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute GetExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Daily GetExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute GetExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute GetExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute GetExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    five_minute GetExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily Property Map
    Daily settings for Domain recurring
    fiveMinute Property Map

    Five minute settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly Property Map

    Hourly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly Property Map

    Monthly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly Property Map

    Weekly settings for Domain recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    GetExternalDynamicListTypeDomainRecurringDaily

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

    GetExternalDynamicListTypeDomainRecurringMonthly

    At string
    Monthly Time specification hh (e.g. 20) for domain
    DayOfMonth int
    Day setting for monthly Domain updates
    At string
    Monthly Time specification hh (e.g. 20) for domain
    DayOfMonth int
    Day setting for monthly Domain updates
    at String
    Monthly Time specification hh (e.g. 20) for domain
    dayOfMonth Integer
    Day setting for monthly Domain updates
    at string
    Monthly Time specification hh (e.g. 20) for domain
    dayOfMonth number
    Day setting for monthly Domain updates
    at str
    Monthly Time specification hh (e.g. 20) for domain
    day_of_month int
    Day setting for monthly Domain updates
    at String
    Monthly Time specification hh (e.g. 20) for domain
    dayOfMonth Number
    Day setting for monthly Domain updates

    GetExternalDynamicListTypeDomainRecurringWeekly

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

    GetExternalDynamicListTypeImei

    Auth GetExternalDynamicListTypeImeiAuth
    IMEI Auth Cnfig for Custom IMEI type
    CertificateProfile string
    IMEI Certificate Profile for Custom IMEI type
    Description string
    IMEI Description for Custom IMEI type
    ExceptionLists List<string>
    IMEI Exception List for Custom IMEI type
    Recurring GetExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    Auth GetExternalDynamicListTypeImeiAuth
    IMEI Auth Cnfig for Custom IMEI type
    CertificateProfile string
    IMEI Certificate Profile for Custom IMEI type
    Description string
    IMEI Description for Custom IMEI type
    ExceptionLists []string
    IMEI Exception List for Custom IMEI type
    Recurring GetExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListTypeImeiAuth
    IMEI Auth Cnfig for Custom IMEI type
    certificateProfile String
    IMEI Certificate Profile for Custom IMEI type
    description String
    IMEI Description for Custom IMEI type
    exceptionLists List<String>
    IMEI Exception List for Custom IMEI type
    recurring GetExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url String
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListTypeImeiAuth
    IMEI Auth Cnfig for Custom IMEI type
    certificateProfile string
    IMEI Certificate Profile for Custom IMEI type
    description string
    IMEI Description for Custom IMEI type
    exceptionLists string[]
    IMEI Exception List for Custom IMEI type
    recurring GetExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url string
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListTypeImeiAuth
    IMEI Auth Cnfig for Custom IMEI type
    certificate_profile str
    IMEI Certificate Profile for Custom IMEI type
    description str
    IMEI Description for Custom IMEI type
    exception_lists Sequence[str]
    IMEI Exception List for Custom IMEI type
    recurring GetExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url str
    IMEI URL for Custom IMEI type
    auth Property Map
    IMEI Auth Cnfig for Custom IMEI type
    certificateProfile String
    IMEI Certificate Profile for Custom IMEI type
    description String
    IMEI Description for Custom IMEI type
    exceptionLists List<String>
    IMEI Exception List for Custom IMEI type
    recurring Property Map
    Recurring interval for IMEI updates
    url String
    IMEI URL for Custom IMEI type

    GetExternalDynamicListTypeImeiAuth

    Password string
    IMEI Auth Password for Custom IMEI type
    Username string
    IMEI Auth username for Custom IMEI type
    Password string
    IMEI Auth Password for Custom IMEI type
    Username string
    IMEI Auth username for Custom IMEI type
    password String
    IMEI Auth Password for Custom IMEI type
    username String
    IMEI Auth username for Custom IMEI type
    password string
    IMEI Auth Password for Custom IMEI type
    username string
    IMEI Auth username for Custom IMEI type
    password str
    IMEI Auth Password for Custom IMEI type
    username str
    IMEI Auth username for Custom IMEI type
    password String
    IMEI Auth Password for Custom IMEI type
    username String
    IMEI Auth username for Custom IMEI type

    GetExternalDynamicListTypeImeiRecurring

    Daily GetExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute GetExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Daily GetExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute GetExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute GetExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute GetExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    five_minute GetExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily Property Map
    Daily interval settings for IMEI updates
    fiveMinute Property Map

    Five-minute interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly Property Map

    Hourly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly Property Map

    Monthly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly Property Map

    Weekly interval settings for IMEI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    GetExternalDynamicListTypeImeiRecurringDaily

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

    GetExternalDynamicListTypeImeiRecurringMonthly

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

    GetExternalDynamicListTypeImeiRecurringWeekly

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

    GetExternalDynamicListTypeImsi

    Auth GetExternalDynamicListTypeImsiAuth
    IMSI Auth Config for Custom IMSI type
    CertificateProfile string
    IMSI Certificate Profile for Custom IMSI type
    Description string
    IMSI Description for Custom IMSI type
    ExceptionLists List<string>
    IMSI Exception List for Custom IMSI type
    Recurring GetExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    Auth GetExternalDynamicListTypeImsiAuth
    IMSI Auth Config for Custom IMSI type
    CertificateProfile string
    IMSI Certificate Profile for Custom IMSI type
    Description string
    IMSI Description for Custom IMSI type
    ExceptionLists []string
    IMSI Exception List for Custom IMSI type
    Recurring GetExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListTypeImsiAuth
    IMSI Auth Config for Custom IMSI type
    certificateProfile String
    IMSI Certificate Profile for Custom IMSI type
    description String
    IMSI Description for Custom IMSI type
    exceptionLists List<String>
    IMSI Exception List for Custom IMSI type
    recurring GetExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url String
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListTypeImsiAuth
    IMSI Auth Config for Custom IMSI type
    certificateProfile string
    IMSI Certificate Profile for Custom IMSI type
    description string
    IMSI Description for Custom IMSI type
    exceptionLists string[]
    IMSI Exception List for Custom IMSI type
    recurring GetExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url string
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListTypeImsiAuth
    IMSI Auth Config for Custom IMSI type
    certificate_profile str
    IMSI Certificate Profile for Custom IMSI type
    description str
    IMSI Description for Custom IMSI type
    exception_lists Sequence[str]
    IMSI Exception List for Custom IMSI type
    recurring GetExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url str
    IMSI URL for Custom IMSI type
    auth Property Map
    IMSI Auth Config for Custom IMSI type
    certificateProfile String
    IMSI Certificate Profile for Custom IMSI type
    description String
    IMSI Description for Custom IMSI type
    exceptionLists List<String>
    IMSI Exception List for Custom IMSI type
    recurring Property Map
    IMSI Recuring Config for Custom IMSI type
    url String
    IMSI URL for Custom IMSI type

    GetExternalDynamicListTypeImsiAuth

    Password string
    IMSI Auth Password for Custom IMSI type
    Username string
    IMSI Auth Username for Custom IMSI type
    Password string
    IMSI Auth Password for Custom IMSI type
    Username string
    IMSI Auth Username for Custom IMSI type
    password String
    IMSI Auth Password for Custom IMSI type
    username String
    IMSI Auth Username for Custom IMSI type
    password string
    IMSI Auth Password for Custom IMSI type
    username string
    IMSI Auth Username for Custom IMSI type
    password str
    IMSI Auth Password for Custom IMSI type
    username str
    IMSI Auth Username for Custom IMSI type
    password String
    IMSI Auth Password for Custom IMSI type
    username String
    IMSI Auth Username for Custom IMSI type

    GetExternalDynamicListTypeImsiRecurring

    Daily GetExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute GetExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Daily GetExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute GetExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute GetExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute GetExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    five_minute GetExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily Property Map
    Daily interval settings for IMSI updates
    fiveMinute Property Map

    Five-minute interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly Property Map

    Hourly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly Property Map

    Monthly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly Property Map

    Weekly interval settings for IMSI updates

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    GetExternalDynamicListTypeImsiRecurringDaily

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

    GetExternalDynamicListTypeImsiRecurringMonthly

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

    GetExternalDynamicListTypeImsiRecurringWeekly

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

    GetExternalDynamicListTypeIp

    Auth GetExternalDynamicListTypeIpAuth
    Authentication settings for Custom IP type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    IP Exception List for Custom IP type
    Recurring GetExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    Auth GetExternalDynamicListTypeIpAuth
    Authentication settings for Custom IP type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    IP Exception List for Custom IP type
    Recurring GetExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    auth GetExternalDynamicListTypeIpAuth
    Authentication settings for Custom IP type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    IP Exception List for Custom IP type
    recurring GetExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url String
    External URL for Custom IP type
    auth GetExternalDynamicListTypeIpAuth
    Authentication settings for Custom IP type
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    IP Exception List for Custom IP type
    recurring GetExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url string
    External URL for Custom IP type
    auth GetExternalDynamicListTypeIpAuth
    Authentication settings for Custom IP type
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    IP Exception List for Custom IP type
    recurring GetExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url str
    External URL for Custom IP type
    auth Property Map
    Authentication settings for Custom IP type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    IP Exception List for Custom IP type
    recurring Property Map
    Update Schedule for Custom IP type
    url String
    External URL for Custom IP type

    GetExternalDynamicListTypeIpAuth

    Password string
    Password for Custom IP authentication
    Username string
    Username for Custom IP authentication
    Password string
    Password for Custom IP authentication
    Username string
    Username for Custom IP authentication
    password String
    Password for Custom IP authentication
    username String
    Username for Custom IP authentication
    password string
    Password for Custom IP authentication
    username string
    Username for Custom IP authentication
    password str
    Password for Custom IP authentication
    username str
    Username for Custom IP authentication
    password String
    Password for Custom IP authentication
    username String
    Username for Custom IP authentication

    GetExternalDynamicListTypeIpRecurring

    Daily GetExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute GetExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Daily GetExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute GetExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute GetExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute GetExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    five_minute GetExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily Property Map
    Daily settings for IP recurring
    fiveMinute Property Map

    Five minute settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly Property Map

    Hourly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly Property Map

    Monthly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly Property Map

    Weekly settings for IP recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    GetExternalDynamicListTypeIpRecurringDaily

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

    GetExternalDynamicListTypeIpRecurringMonthly

    At string
    Monthly Time specification hh (e.g. 20) for IP
    DayOfMonth int
    Day setting for monthly IP updates
    At string
    Monthly Time specification hh (e.g. 20) for IP
    DayOfMonth int
    Day setting for monthly IP updates
    at String
    Monthly Time specification hh (e.g. 20) for IP
    dayOfMonth Integer
    Day setting for monthly IP updates
    at string
    Monthly Time specification hh (e.g. 20) for IP
    dayOfMonth number
    Day setting for monthly IP updates
    at str
    Monthly Time specification hh (e.g. 20) for IP
    day_of_month int
    Day setting for monthly IP updates
    at String
    Monthly Time specification hh (e.g. 20) for IP
    dayOfMonth Number
    Day setting for monthly IP updates

    GetExternalDynamicListTypeIpRecurringWeekly

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

    GetExternalDynamicListTypePredefinedIp

    Description string
    Description
    ExceptionLists List<string>
    IP Exception List for Predefined IP type
    Url string
    URL source for Predefined IP type
    Description string
    Description
    ExceptionLists []string
    IP Exception List for Predefined IP type
    Url string
    URL source for Predefined IP type
    description String
    Description
    exceptionLists List<String>
    IP Exception List for Predefined IP type
    url String
    URL source for Predefined IP type
    description string
    Description
    exceptionLists string[]
    IP Exception List for Predefined IP type
    url string
    URL source for Predefined IP type
    description str
    Description
    exception_lists Sequence[str]
    IP Exception List for Predefined IP type
    url str
    URL source for Predefined IP type
    description String
    Description
    exceptionLists List<String>
    IP Exception List for Predefined IP type
    url String
    URL source for Predefined IP type

    GetExternalDynamicListTypePredefinedUrl

    Description string
    Description
    ExceptionLists List<string>
    URL Exception List for Predefined URL type
    Url string
    URL source for Predefined URL type
    Description string
    Description
    ExceptionLists []string
    URL Exception List for Predefined URL type
    Url string
    URL source for Predefined URL type
    description String
    Description
    exceptionLists List<String>
    URL Exception List for Predefined URL type
    url String
    URL source for Predefined URL type
    description string
    Description
    exceptionLists string[]
    URL Exception List for Predefined URL type
    url string
    URL source for Predefined URL type
    description str
    Description
    exception_lists Sequence[str]
    URL Exception List for Predefined URL type
    url str
    URL source for Predefined URL type
    description String
    Description
    exceptionLists List<String>
    URL Exception List for Predefined URL type
    url String
    URL source for Predefined URL type

    GetExternalDynamicListTypeUrl

    Auth GetExternalDynamicListTypeUrlAuth
    Authentication settings for Custom URL type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists List<string>
    URL Exception List for Custom URL type
    Recurring GetExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    Auth GetExternalDynamicListTypeUrlAuth
    Authentication settings for Custom URL type
    CertificateProfile string
    Profile for authenticating client certificates
    Description string
    Description
    ExceptionLists []string
    URL Exception List for Custom URL type
    Recurring GetExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    auth GetExternalDynamicListTypeUrlAuth
    Authentication settings for Custom URL type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    URL Exception List for Custom URL type
    recurring GetExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url String
    External URL for Custom URL type
    auth GetExternalDynamicListTypeUrlAuth
    Authentication settings for Custom URL type
    certificateProfile string
    Profile for authenticating client certificates
    description string
    Description
    exceptionLists string[]
    URL Exception List for Custom URL type
    recurring GetExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url string
    External URL for Custom URL type
    auth GetExternalDynamicListTypeUrlAuth
    Authentication settings for Custom URL type
    certificate_profile str
    Profile for authenticating client certificates
    description str
    Description
    exception_lists Sequence[str]
    URL Exception List for Custom URL type
    recurring GetExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url str
    External URL for Custom URL type
    auth Property Map
    Authentication settings for Custom URL type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    URL Exception List for Custom URL type
    recurring Property Map
    Update Schedule for Custom URL type
    url String
    External URL for Custom URL type

    GetExternalDynamicListTypeUrlAuth

    Password string
    Password for Custom URL authentication
    Username string
    Username for Custom URL authentication
    Password string
    Password for Custom URL authentication
    Username string
    Username for Custom URL authentication
    password String
    Password for Custom URL authentication
    username String
    Username for Custom URL authentication
    password string
    Password for Custom URL authentication
    username string
    Username for Custom URL authentication
    password str
    Password for Custom URL authentication
    username str
    Username for Custom URL authentication
    password String
    Password for Custom URL authentication
    username String
    Username for Custom URL authentication

    GetExternalDynamicListTypeUrlRecurring

    Daily GetExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute GetExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Daily GetExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute GetExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Hourly GetExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Monthly GetExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    Weekly GetExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute GetExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute GetExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily GetExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    five_minute GetExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly GetExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly GetExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly GetExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    daily Property Map
    Daily settings for URL recurring
    fiveMinute Property Map

    Five minute settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    hourly Property Map

    Hourly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    monthly Property Map

    Monthly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    weekly Property Map

    Weekly settings for URL recurring

    ℹ️ Note: You must specify exactly one of daily, five_minute, hourly, monthly, and weekly.

    GetExternalDynamicListTypeUrlRecurringDaily

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

    GetExternalDynamicListTypeUrlRecurringMonthly

    At string
    Monthly Time specification hh (e.g. 20) for URL
    DayOfMonth int
    Day setting for monthly URL updates
    At string
    Monthly Time specification hh (e.g. 20) for URL
    DayOfMonth int
    Day setting for monthly URL updates
    at String
    Monthly Time specification hh (e.g. 20) for URL
    dayOfMonth Integer
    Day setting for monthly URL updates
    at string
    Monthly Time specification hh (e.g. 20) for URL
    dayOfMonth number
    Day setting for monthly URL updates
    at str
    Monthly Time specification hh (e.g. 20) for URL
    day_of_month int
    Day setting for monthly URL updates
    at String
    Monthly Time specification hh (e.g. 20) for URL
    dayOfMonth Number
    Day setting for monthly URL updates

    GetExternalDynamicListTypeUrlRecurringWeekly

    At string
    Weekly Time specification hh (e.g. 20) for URL
    DayOfWeek string
    Day of week
    At string
    Weekly Time specification hh (e.g. 20) for URL
    DayOfWeek string
    Day of week
    at String
    Weekly Time specification hh (e.g. 20) for URL
    dayOfWeek String
    Day of week
    at string
    Weekly Time specification hh (e.g. 20) for URL
    dayOfWeek string
    Day of week
    at str
    Weekly Time specification hh (e.g. 20) for URL
    day_of_week str
    Day of week
    at String
    Weekly Time specification hh (e.g. 20) for URL
    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 v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate