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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // This resource creates a domain-based External Dynamic List (EDL).
    // The EDL will fetch a list of domains from the specified URL daily.
    const scmEdl1 = new scm.ExternalDynamicList("scm_edl_1", {
        folder: "All",
        name: "scm_edl_1",
        type: {
            domain: {
                description: "List of malicious domains to block, updated daily.",
                url: "http://some-threat-feed.com/domains.txt",
                recurring: {
                    daily: {
                        at: "03",
                    },
                },
            },
        },
    });
    const scmEdl2 = new scm.ExternalDynamicList("scm_edl_2", {
        folder: "All",
        name: "scm_edl_2",
        type: {
            ip: {
                description: "IP threat feed with basic auth, updated hourly.",
                url: "https://threats.example.com/ips.txt",
                recurring: {
                    hourly: {},
                },
            },
        },
    });
    const scmEdl3 = new scm.ExternalDynamicList("scm_edl_3", {
        folder: "All",
        name: "scm_edl_3",
        type: {
            url: {
                description: "List of phishing URLs, updated every Monday at 2 AM.",
                url: "https://phish-block.example.com/urls.txt",
                recurring: {
                    weekly: {
                        dayOfWeek: "monday",
                        at: "02",
                    },
                },
            },
        },
    });
    const scmEdl4 = new scm.ExternalDynamicList("scm_edl_4", {
        folder: "All",
        name: "scm_edl_4",
        type: {
            predefinedIp: {
                description: "Palo Alto Networks-provided list of high-risk IP addresses.",
                url: "panw-highrisk-ip-list",
            },
        },
    });
    const scmEdl5 = new scm.ExternalDynamicList("scm_edl_5", {
        folder: "All",
        name: "scm_edl_5",
        type: {
            ip: {
                description: "IP threat feed that requires authentication.",
                url: "https://secure-feed.example.com/ips.txt",
                certificateProfile: "test-cert-list-qekwys",
                auth: {
                    username: "my-api-user",
                    password: "a-very-secret-password-123!",
                },
                recurring: {
                    fiveMinute: {},
                },
            },
        },
    });
    
    import pulumi
    import pulumi_scm as scm
    
    # This resource creates a domain-based External Dynamic List (EDL).
    # The EDL will fetch a list of domains from the specified URL daily.
    scm_edl1 = scm.ExternalDynamicList("scm_edl_1",
        folder="All",
        name="scm_edl_1",
        type={
            "domain": {
                "description": "List of malicious domains to block, updated daily.",
                "url": "http://some-threat-feed.com/domains.txt",
                "recurring": {
                    "daily": {
                        "at": "03",
                    },
                },
            },
        })
    scm_edl2 = scm.ExternalDynamicList("scm_edl_2",
        folder="All",
        name="scm_edl_2",
        type={
            "ip": {
                "description": "IP threat feed with basic auth, updated hourly.",
                "url": "https://threats.example.com/ips.txt",
                "recurring": {
                    "hourly": {},
                },
            },
        })
    scm_edl3 = scm.ExternalDynamicList("scm_edl_3",
        folder="All",
        name="scm_edl_3",
        type={
            "url": {
                "description": "List of phishing URLs, updated every Monday at 2 AM.",
                "url": "https://phish-block.example.com/urls.txt",
                "recurring": {
                    "weekly": {
                        "day_of_week": "monday",
                        "at": "02",
                    },
                },
            },
        })
    scm_edl4 = scm.ExternalDynamicList("scm_edl_4",
        folder="All",
        name="scm_edl_4",
        type={
            "predefined_ip": {
                "description": "Palo Alto Networks-provided list of high-risk IP addresses.",
                "url": "panw-highrisk-ip-list",
            },
        })
    scm_edl5 = scm.ExternalDynamicList("scm_edl_5",
        folder="All",
        name="scm_edl_5",
        type={
            "ip": {
                "description": "IP threat feed that requires authentication.",
                "url": "https://secure-feed.example.com/ips.txt",
                "certificate_profile": "test-cert-list-qekwys",
                "auth": {
                    "username": "my-api-user",
                    "password": "a-very-secret-password-123!",
                },
                "recurring": {
                    "five_minute": {},
                },
            },
        })
    
    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 {
    		// This resource creates a domain-based External Dynamic List (EDL).
    		// The EDL will fetch a list of domains from the specified URL daily.
    		_, err := scm.NewExternalDynamicList(ctx, "scm_edl_1", &scm.ExternalDynamicListArgs{
    			Folder: pulumi.String("All"),
    			Name:   pulumi.String("scm_edl_1"),
    			Type: &scm.ExternalDynamicListTypeArgs{
    				Domain: &scm.ExternalDynamicListTypeDomainArgs{
    					Description: pulumi.String("List of malicious domains to block, updated daily."),
    					Url:         pulumi.String("http://some-threat-feed.com/domains.txt"),
    					Recurring: &scm.ExternalDynamicListTypeDomainRecurringArgs{
    						Daily: &scm.ExternalDynamicListTypeDomainRecurringDailyArgs{
    							At: pulumi.String("03"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewExternalDynamicList(ctx, "scm_edl_2", &scm.ExternalDynamicListArgs{
    			Folder: pulumi.String("All"),
    			Name:   pulumi.String("scm_edl_2"),
    			Type: &scm.ExternalDynamicListTypeArgs{
    				Ip: &scm.ExternalDynamicListTypeIpArgs{
    					Description: pulumi.String("IP threat feed with basic auth, updated hourly."),
    					Url:         pulumi.String("https://threats.example.com/ips.txt"),
    					Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
    						Hourly: &scm.ExternalDynamicListTypeIpRecurringHourlyArgs{},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewExternalDynamicList(ctx, "scm_edl_3", &scm.ExternalDynamicListArgs{
    			Folder: pulumi.String("All"),
    			Name:   pulumi.String("scm_edl_3"),
    			Type: &scm.ExternalDynamicListTypeArgs{
    				Url: &scm.ExternalDynamicListTypeUrlArgs{
    					Description: pulumi.String("List of phishing URLs, updated every Monday at 2 AM."),
    					Url:         pulumi.String("https://phish-block.example.com/urls.txt"),
    					Recurring: &scm.ExternalDynamicListTypeUrlRecurringArgs{
    						Weekly: &scm.ExternalDynamicListTypeUrlRecurringWeeklyArgs{
    							DayOfWeek: pulumi.String("monday"),
    							At:        pulumi.String("02"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewExternalDynamicList(ctx, "scm_edl_4", &scm.ExternalDynamicListArgs{
    			Folder: pulumi.String("All"),
    			Name:   pulumi.String("scm_edl_4"),
    			Type: &scm.ExternalDynamicListTypeArgs{
    				PredefinedIp: &scm.ExternalDynamicListTypePredefinedIpArgs{
    					Description: pulumi.String("Palo Alto Networks-provided list of high-risk IP addresses."),
    					Url:         pulumi.String("panw-highrisk-ip-list"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewExternalDynamicList(ctx, "scm_edl_5", &scm.ExternalDynamicListArgs{
    			Folder: pulumi.String("All"),
    			Name:   pulumi.String("scm_edl_5"),
    			Type: &scm.ExternalDynamicListTypeArgs{
    				Ip: &scm.ExternalDynamicListTypeIpArgs{
    					Description:        pulumi.String("IP threat feed that requires authentication."),
    					Url:                pulumi.String("https://secure-feed.example.com/ips.txt"),
    					CertificateProfile: pulumi.String("test-cert-list-qekwys"),
    					Auth: &scm.ExternalDynamicListTypeIpAuthArgs{
    						Username: pulumi.String("my-api-user"),
    						Password: pulumi.String("a-very-secret-password-123!"),
    					},
    					Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
    						FiveMinute: &scm.ExternalDynamicListTypeIpRecurringFiveMinuteArgs{},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // This resource creates a domain-based External Dynamic List (EDL).
        // The EDL will fetch a list of domains from the specified URL daily.
        var scmEdl1 = new Scm.ExternalDynamicList("scm_edl_1", new()
        {
            Folder = "All",
            Name = "scm_edl_1",
            Type = new Scm.Inputs.ExternalDynamicListTypeArgs
            {
                Domain = new Scm.Inputs.ExternalDynamicListTypeDomainArgs
                {
                    Description = "List of malicious domains to block, updated daily.",
                    Url = "http://some-threat-feed.com/domains.txt",
                    Recurring = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringArgs
                    {
                        Daily = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringDailyArgs
                        {
                            At = "03",
                        },
                    },
                },
            },
        });
    
        var scmEdl2 = new Scm.ExternalDynamicList("scm_edl_2", new()
        {
            Folder = "All",
            Name = "scm_edl_2",
            Type = new Scm.Inputs.ExternalDynamicListTypeArgs
            {
                Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
                {
                    Description = "IP threat feed with basic auth, updated hourly.",
                    Url = "https://threats.example.com/ips.txt",
                    Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
                    {
                        Hourly = null,
                    },
                },
            },
        });
    
        var scmEdl3 = new Scm.ExternalDynamicList("scm_edl_3", new()
        {
            Folder = "All",
            Name = "scm_edl_3",
            Type = new Scm.Inputs.ExternalDynamicListTypeArgs
            {
                Url = new Scm.Inputs.ExternalDynamicListTypeUrlArgs
                {
                    Description = "List of phishing URLs, updated every Monday at 2 AM.",
                    Url = "https://phish-block.example.com/urls.txt",
                    Recurring = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringArgs
                    {
                        Weekly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs
                        {
                            DayOfWeek = "monday",
                            At = "02",
                        },
                    },
                },
            },
        });
    
        var scmEdl4 = new Scm.ExternalDynamicList("scm_edl_4", new()
        {
            Folder = "All",
            Name = "scm_edl_4",
            Type = new Scm.Inputs.ExternalDynamicListTypeArgs
            {
                PredefinedIp = new Scm.Inputs.ExternalDynamicListTypePredefinedIpArgs
                {
                    Description = "Palo Alto Networks-provided list of high-risk IP addresses.",
                    Url = "panw-highrisk-ip-list",
                },
            },
        });
    
        var scmEdl5 = new Scm.ExternalDynamicList("scm_edl_5", new()
        {
            Folder = "All",
            Name = "scm_edl_5",
            Type = new Scm.Inputs.ExternalDynamicListTypeArgs
            {
                Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
                {
                    Description = "IP threat feed that requires authentication.",
                    Url = "https://secure-feed.example.com/ips.txt",
                    CertificateProfile = "test-cert-list-qekwys",
                    Auth = new Scm.Inputs.ExternalDynamicListTypeIpAuthArgs
                    {
                        Username = "my-api-user",
                        Password = "a-very-secret-password-123!",
                    },
                    Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
                    {
                        FiveMinute = null,
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ExternalDynamicList;
    import com.pulumi.scm.ExternalDynamicListArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainRecurringArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainRecurringDailyArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeIpArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringHourlyArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlRecurringArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypePredefinedIpArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeIpAuthArgs;
    import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringFiveMinuteArgs;
    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) {
            // This resource creates a domain-based External Dynamic List (EDL).
            // The EDL will fetch a list of domains from the specified URL daily.
            var scmEdl1 = new ExternalDynamicList("scmEdl1", ExternalDynamicListArgs.builder()
                .folder("All")
                .name("scm_edl_1")
                .type(ExternalDynamicListTypeArgs.builder()
                    .domain(ExternalDynamicListTypeDomainArgs.builder()
                        .description("List of malicious domains to block, updated daily.")
                        .url("http://some-threat-feed.com/domains.txt")
                        .recurring(ExternalDynamicListTypeDomainRecurringArgs.builder()
                            .daily(ExternalDynamicListTypeDomainRecurringDailyArgs.builder()
                                .at("03")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            var scmEdl2 = new ExternalDynamicList("scmEdl2", ExternalDynamicListArgs.builder()
                .folder("All")
                .name("scm_edl_2")
                .type(ExternalDynamicListTypeArgs.builder()
                    .ip(ExternalDynamicListTypeIpArgs.builder()
                        .description("IP threat feed with basic auth, updated hourly.")
                        .url("https://threats.example.com/ips.txt")
                        .recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
                            .hourly(ExternalDynamicListTypeIpRecurringHourlyArgs.builder()
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            var scmEdl3 = new ExternalDynamicList("scmEdl3", ExternalDynamicListArgs.builder()
                .folder("All")
                .name("scm_edl_3")
                .type(ExternalDynamicListTypeArgs.builder()
                    .url(ExternalDynamicListTypeUrlArgs.builder()
                        .description("List of phishing URLs, updated every Monday at 2 AM.")
                        .url("https://phish-block.example.com/urls.txt")
                        .recurring(ExternalDynamicListTypeUrlRecurringArgs.builder()
                            .weekly(ExternalDynamicListTypeUrlRecurringWeeklyArgs.builder()
                                .dayOfWeek("monday")
                                .at("02")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            var scmEdl4 = new ExternalDynamicList("scmEdl4", ExternalDynamicListArgs.builder()
                .folder("All")
                .name("scm_edl_4")
                .type(ExternalDynamicListTypeArgs.builder()
                    .predefinedIp(ExternalDynamicListTypePredefinedIpArgs.builder()
                        .description("Palo Alto Networks-provided list of high-risk IP addresses.")
                        .url("panw-highrisk-ip-list")
                        .build())
                    .build())
                .build());
    
            var scmEdl5 = new ExternalDynamicList("scmEdl5", ExternalDynamicListArgs.builder()
                .folder("All")
                .name("scm_edl_5")
                .type(ExternalDynamicListTypeArgs.builder()
                    .ip(ExternalDynamicListTypeIpArgs.builder()
                        .description("IP threat feed that requires authentication.")
                        .url("https://secure-feed.example.com/ips.txt")
                        .certificateProfile("test-cert-list-qekwys")
                        .auth(ExternalDynamicListTypeIpAuthArgs.builder()
                            .username("my-api-user")
                            .password("a-very-secret-password-123!")
                            .build())
                        .recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
                            .fiveMinute(ExternalDynamicListTypeIpRecurringFiveMinuteArgs.builder()
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # This resource creates a domain-based External Dynamic List (EDL).
      # The EDL will fetch a list of domains from the specified URL daily.
      scmEdl1:
        type: scm:ExternalDynamicList
        name: scm_edl_1
        properties:
          folder: All
          name: scm_edl_1
          type:
            domain:
              description: List of malicious domains to block, updated daily.
              url: http://some-threat-feed.com/domains.txt
              recurring:
                daily:
                  at: '03'
      scmEdl2:
        type: scm:ExternalDynamicList
        name: scm_edl_2
        properties:
          folder: All
          name: scm_edl_2
          type:
            ip:
              description: IP threat feed with basic auth, updated hourly.
              url: https://threats.example.com/ips.txt
              recurring:
                hourly: {}
      scmEdl3:
        type: scm:ExternalDynamicList
        name: scm_edl_3
        properties:
          folder: All
          name: scm_edl_3
          type:
            url:
              description: List of phishing URLs, updated every Monday at 2 AM.
              url: https://phish-block.example.com/urls.txt
              recurring:
                weekly:
                  dayOfWeek: monday
                  at: '02'
      scmEdl4:
        type: scm:ExternalDynamicList
        name: scm_edl_4
        properties:
          folder: All
          name: scm_edl_4
          type:
            predefinedIp:
              description: Palo Alto Networks-provided list of high-risk IP addresses.
              url: panw-highrisk-ip-list
      scmEdl5:
        type: scm:ExternalDynamicList
        name: scm_edl_5
        properties:
          folder: All
          name: scm_edl_5
          type:
            ip:
              description: IP threat feed that requires authentication.
              url: https://secure-feed.example.com/ips.txt
              certificateProfile: test-cert-list-qekwys
              auth:
                username: my-api-user
                password: a-very-secret-password-123!
              recurring:
                fiveMinute: {}
    

    Create ExternalDynamicList Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ExternalDynamicList(name: string, args?: ExternalDynamicListArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalDynamicList(resource_name: str,
                            args: Optional[ExternalDynamicListArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ExternalDynamicList(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            device: Optional[str] = None,
                            folder: Optional[str] = None,
                            name: Optional[str] = None,
                            snippet: Optional[str] = None,
                            type: Optional[ExternalDynamicListTypeArgs] = None)
    func NewExternalDynamicList(ctx *Context, name string, args *ExternalDynamicListArgs, opts ...ResourceOption) (*ExternalDynamicList, error)
    public ExternalDynamicList(string name, ExternalDynamicListArgs? args = null, CustomResourceOptions? opts = null)
    public ExternalDynamicList(String name, ExternalDynamicListArgs args)
    public ExternalDynamicList(String name, ExternalDynamicListArgs args, CustomResourceOptions options)
    
    type: scm:ExternalDynamicList
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ExternalDynamicListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ExternalDynamicListArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ExternalDynamicListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExternalDynamicListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExternalDynamicListArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var externalDynamicListResource = new Scm.ExternalDynamicList("externalDynamicListResource", new()
    {
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
        Type = new Scm.Inputs.ExternalDynamicListTypeArgs
        {
            Domain = new Scm.Inputs.ExternalDynamicListTypeDomainArgs
            {
                Recurring = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringArgs
                {
                    Daily = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringDailyArgs
                    {
                        At = "string",
                    },
                    FiveMinute = null,
                    Hourly = null,
                    Monthly = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringMonthlyArgs
                    {
                        At = "string",
                        DayOfMonth = 0,
                    },
                    Weekly = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringWeeklyArgs
                    {
                        At = "string",
                        DayOfWeek = "string",
                    },
                },
                Url = "string",
                Auth = new Scm.Inputs.ExternalDynamicListTypeDomainAuthArgs
                {
                    Password = "string",
                    Username = "string",
                },
                CertificateProfile = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
                ExpandDomain = false,
            },
            Imei = new Scm.Inputs.ExternalDynamicListTypeImeiArgs
            {
                Recurring = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringArgs
                {
                    Daily = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringDailyArgs
                    {
                        At = "string",
                    },
                    FiveMinute = null,
                    Hourly = null,
                    Monthly = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringMonthlyArgs
                    {
                        At = "string",
                        DayOfMonth = 0,
                    },
                    Weekly = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringWeeklyArgs
                    {
                        At = "string",
                        DayOfWeek = "string",
                    },
                },
                Url = "string",
                Auth = new Scm.Inputs.ExternalDynamicListTypeImeiAuthArgs
                {
                    Password = "string",
                    Username = "string",
                },
                CertificateProfile = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
            Imsi = new Scm.Inputs.ExternalDynamicListTypeImsiArgs
            {
                Recurring = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringArgs
                {
                    Daily = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringDailyArgs
                    {
                        At = "string",
                    },
                    FiveMinute = null,
                    Hourly = null,
                    Monthly = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringMonthlyArgs
                    {
                        At = "string",
                        DayOfMonth = 0,
                    },
                    Weekly = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringWeeklyArgs
                    {
                        At = "string",
                        DayOfWeek = "string",
                    },
                },
                Url = "string",
                Auth = new Scm.Inputs.ExternalDynamicListTypeImsiAuthArgs
                {
                    Password = "string",
                    Username = "string",
                },
                CertificateProfile = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
            Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
            {
                Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
                {
                    Daily = new Scm.Inputs.ExternalDynamicListTypeIpRecurringDailyArgs
                    {
                        At = "string",
                    },
                    FiveMinute = null,
                    Hourly = null,
                    Monthly = new Scm.Inputs.ExternalDynamicListTypeIpRecurringMonthlyArgs
                    {
                        At = "string",
                        DayOfMonth = 0,
                    },
                    Weekly = new Scm.Inputs.ExternalDynamicListTypeIpRecurringWeeklyArgs
                    {
                        At = "string",
                        DayOfWeek = "string",
                    },
                },
                Url = "string",
                Auth = new Scm.Inputs.ExternalDynamicListTypeIpAuthArgs
                {
                    Password = "string",
                    Username = "string",
                },
                CertificateProfile = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
            PredefinedIp = new Scm.Inputs.ExternalDynamicListTypePredefinedIpArgs
            {
                Url = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
            PredefinedUrl = new Scm.Inputs.ExternalDynamicListTypePredefinedUrlArgs
            {
                Url = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
            Url = new Scm.Inputs.ExternalDynamicListTypeUrlArgs
            {
                Recurring = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringArgs
                {
                    Daily = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringDailyArgs
                    {
                        At = "string",
                    },
                    FiveMinute = null,
                    Hourly = null,
                    Monthly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringMonthlyArgs
                    {
                        At = "string",
                        DayOfMonth = 0,
                    },
                    Weekly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs
                    {
                        At = "string",
                        DayOfWeek = "string",
                    },
                },
                Url = "string",
                Auth = new Scm.Inputs.ExternalDynamicListTypeUrlAuthArgs
                {
                    Password = "string",
                    Username = "string",
                },
                CertificateProfile = "string",
                Description = "string",
                ExceptionLists = new[]
                {
                    "string",
                },
            },
        },
    });
    
    example, err := scm.NewExternalDynamicList(ctx, "externalDynamicListResource", &scm.ExternalDynamicListArgs{
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    	Type: &scm.ExternalDynamicListTypeArgs{
    		Domain: &scm.ExternalDynamicListTypeDomainArgs{
    			Recurring: &scm.ExternalDynamicListTypeDomainRecurringArgs{
    				Daily: &scm.ExternalDynamicListTypeDomainRecurringDailyArgs{
    					At: pulumi.String("string"),
    				},
    				FiveMinute: &scm.ExternalDynamicListTypeDomainRecurringFiveMinuteArgs{},
    				Hourly:     &scm.ExternalDynamicListTypeDomainRecurringHourlyArgs{},
    				Monthly: &scm.ExternalDynamicListTypeDomainRecurringMonthlyArgs{
    					At:         pulumi.String("string"),
    					DayOfMonth: pulumi.Int(0),
    				},
    				Weekly: &scm.ExternalDynamicListTypeDomainRecurringWeeklyArgs{
    					At:        pulumi.String("string"),
    					DayOfWeek: pulumi.String("string"),
    				},
    			},
    			Url: pulumi.String("string"),
    			Auth: &scm.ExternalDynamicListTypeDomainAuthArgs{
    				Password: pulumi.String("string"),
    				Username: pulumi.String("string"),
    			},
    			CertificateProfile: pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ExpandDomain: pulumi.Bool(false),
    		},
    		Imei: &scm.ExternalDynamicListTypeImeiArgs{
    			Recurring: &scm.ExternalDynamicListTypeImeiRecurringArgs{
    				Daily: &scm.ExternalDynamicListTypeImeiRecurringDailyArgs{
    					At: pulumi.String("string"),
    				},
    				FiveMinute: &scm.ExternalDynamicListTypeImeiRecurringFiveMinuteArgs{},
    				Hourly:     &scm.ExternalDynamicListTypeImeiRecurringHourlyArgs{},
    				Monthly: &scm.ExternalDynamicListTypeImeiRecurringMonthlyArgs{
    					At:         pulumi.String("string"),
    					DayOfMonth: pulumi.Int(0),
    				},
    				Weekly: &scm.ExternalDynamicListTypeImeiRecurringWeeklyArgs{
    					At:        pulumi.String("string"),
    					DayOfWeek: pulumi.String("string"),
    				},
    			},
    			Url: pulumi.String("string"),
    			Auth: &scm.ExternalDynamicListTypeImeiAuthArgs{
    				Password: pulumi.String("string"),
    				Username: pulumi.String("string"),
    			},
    			CertificateProfile: pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		Imsi: &scm.ExternalDynamicListTypeImsiArgs{
    			Recurring: &scm.ExternalDynamicListTypeImsiRecurringArgs{
    				Daily: &scm.ExternalDynamicListTypeImsiRecurringDailyArgs{
    					At: pulumi.String("string"),
    				},
    				FiveMinute: &scm.ExternalDynamicListTypeImsiRecurringFiveMinuteArgs{},
    				Hourly:     &scm.ExternalDynamicListTypeImsiRecurringHourlyArgs{},
    				Monthly: &scm.ExternalDynamicListTypeImsiRecurringMonthlyArgs{
    					At:         pulumi.String("string"),
    					DayOfMonth: pulumi.Int(0),
    				},
    				Weekly: &scm.ExternalDynamicListTypeImsiRecurringWeeklyArgs{
    					At:        pulumi.String("string"),
    					DayOfWeek: pulumi.String("string"),
    				},
    			},
    			Url: pulumi.String("string"),
    			Auth: &scm.ExternalDynamicListTypeImsiAuthArgs{
    				Password: pulumi.String("string"),
    				Username: pulumi.String("string"),
    			},
    			CertificateProfile: pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		Ip: &scm.ExternalDynamicListTypeIpArgs{
    			Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
    				Daily: &scm.ExternalDynamicListTypeIpRecurringDailyArgs{
    					At: pulumi.String("string"),
    				},
    				FiveMinute: &scm.ExternalDynamicListTypeIpRecurringFiveMinuteArgs{},
    				Hourly:     &scm.ExternalDynamicListTypeIpRecurringHourlyArgs{},
    				Monthly: &scm.ExternalDynamicListTypeIpRecurringMonthlyArgs{
    					At:         pulumi.String("string"),
    					DayOfMonth: pulumi.Int(0),
    				},
    				Weekly: &scm.ExternalDynamicListTypeIpRecurringWeeklyArgs{
    					At:        pulumi.String("string"),
    					DayOfWeek: pulumi.String("string"),
    				},
    			},
    			Url: pulumi.String("string"),
    			Auth: &scm.ExternalDynamicListTypeIpAuthArgs{
    				Password: pulumi.String("string"),
    				Username: pulumi.String("string"),
    			},
    			CertificateProfile: pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		PredefinedIp: &scm.ExternalDynamicListTypePredefinedIpArgs{
    			Url:         pulumi.String("string"),
    			Description: pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		PredefinedUrl: &scm.ExternalDynamicListTypePredefinedUrlArgs{
    			Url:         pulumi.String("string"),
    			Description: pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		Url: &scm.ExternalDynamicListTypeUrlArgs{
    			Recurring: &scm.ExternalDynamicListTypeUrlRecurringArgs{
    				Daily: &scm.ExternalDynamicListTypeUrlRecurringDailyArgs{
    					At: pulumi.String("string"),
    				},
    				FiveMinute: &scm.ExternalDynamicListTypeUrlRecurringFiveMinuteArgs{},
    				Hourly:     &scm.ExternalDynamicListTypeUrlRecurringHourlyArgs{},
    				Monthly: &scm.ExternalDynamicListTypeUrlRecurringMonthlyArgs{
    					At:         pulumi.String("string"),
    					DayOfMonth: pulumi.Int(0),
    				},
    				Weekly: &scm.ExternalDynamicListTypeUrlRecurringWeeklyArgs{
    					At:        pulumi.String("string"),
    					DayOfWeek: pulumi.String("string"),
    				},
    			},
    			Url: pulumi.String("string"),
    			Auth: &scm.ExternalDynamicListTypeUrlAuthArgs{
    				Password: pulumi.String("string"),
    				Username: pulumi.String("string"),
    			},
    			CertificateProfile: pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			ExceptionLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var externalDynamicListResource = new ExternalDynamicList("externalDynamicListResource", ExternalDynamicListArgs.builder()
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .type(ExternalDynamicListTypeArgs.builder()
            .domain(ExternalDynamicListTypeDomainArgs.builder()
                .recurring(ExternalDynamicListTypeDomainRecurringArgs.builder()
                    .daily(ExternalDynamicListTypeDomainRecurringDailyArgs.builder()
                        .at("string")
                        .build())
                    .fiveMinute(ExternalDynamicListTypeDomainRecurringFiveMinuteArgs.builder()
                        .build())
                    .hourly(ExternalDynamicListTypeDomainRecurringHourlyArgs.builder()
                        .build())
                    .monthly(ExternalDynamicListTypeDomainRecurringMonthlyArgs.builder()
                        .at("string")
                        .dayOfMonth(0)
                        .build())
                    .weekly(ExternalDynamicListTypeDomainRecurringWeeklyArgs.builder()
                        .at("string")
                        .dayOfWeek("string")
                        .build())
                    .build())
                .url("string")
                .auth(ExternalDynamicListTypeDomainAuthArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .certificateProfile("string")
                .description("string")
                .exceptionLists("string")
                .expandDomain(false)
                .build())
            .imei(ExternalDynamicListTypeImeiArgs.builder()
                .recurring(ExternalDynamicListTypeImeiRecurringArgs.builder()
                    .daily(ExternalDynamicListTypeImeiRecurringDailyArgs.builder()
                        .at("string")
                        .build())
                    .fiveMinute(ExternalDynamicListTypeImeiRecurringFiveMinuteArgs.builder()
                        .build())
                    .hourly(ExternalDynamicListTypeImeiRecurringHourlyArgs.builder()
                        .build())
                    .monthly(ExternalDynamicListTypeImeiRecurringMonthlyArgs.builder()
                        .at("string")
                        .dayOfMonth(0)
                        .build())
                    .weekly(ExternalDynamicListTypeImeiRecurringWeeklyArgs.builder()
                        .at("string")
                        .dayOfWeek("string")
                        .build())
                    .build())
                .url("string")
                .auth(ExternalDynamicListTypeImeiAuthArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .certificateProfile("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .imsi(ExternalDynamicListTypeImsiArgs.builder()
                .recurring(ExternalDynamicListTypeImsiRecurringArgs.builder()
                    .daily(ExternalDynamicListTypeImsiRecurringDailyArgs.builder()
                        .at("string")
                        .build())
                    .fiveMinute(ExternalDynamicListTypeImsiRecurringFiveMinuteArgs.builder()
                        .build())
                    .hourly(ExternalDynamicListTypeImsiRecurringHourlyArgs.builder()
                        .build())
                    .monthly(ExternalDynamicListTypeImsiRecurringMonthlyArgs.builder()
                        .at("string")
                        .dayOfMonth(0)
                        .build())
                    .weekly(ExternalDynamicListTypeImsiRecurringWeeklyArgs.builder()
                        .at("string")
                        .dayOfWeek("string")
                        .build())
                    .build())
                .url("string")
                .auth(ExternalDynamicListTypeImsiAuthArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .certificateProfile("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .ip(ExternalDynamicListTypeIpArgs.builder()
                .recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
                    .daily(ExternalDynamicListTypeIpRecurringDailyArgs.builder()
                        .at("string")
                        .build())
                    .fiveMinute(ExternalDynamicListTypeIpRecurringFiveMinuteArgs.builder()
                        .build())
                    .hourly(ExternalDynamicListTypeIpRecurringHourlyArgs.builder()
                        .build())
                    .monthly(ExternalDynamicListTypeIpRecurringMonthlyArgs.builder()
                        .at("string")
                        .dayOfMonth(0)
                        .build())
                    .weekly(ExternalDynamicListTypeIpRecurringWeeklyArgs.builder()
                        .at("string")
                        .dayOfWeek("string")
                        .build())
                    .build())
                .url("string")
                .auth(ExternalDynamicListTypeIpAuthArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .certificateProfile("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .predefinedIp(ExternalDynamicListTypePredefinedIpArgs.builder()
                .url("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .predefinedUrl(ExternalDynamicListTypePredefinedUrlArgs.builder()
                .url("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .url(ExternalDynamicListTypeUrlArgs.builder()
                .recurring(ExternalDynamicListTypeUrlRecurringArgs.builder()
                    .daily(ExternalDynamicListTypeUrlRecurringDailyArgs.builder()
                        .at("string")
                        .build())
                    .fiveMinute(ExternalDynamicListTypeUrlRecurringFiveMinuteArgs.builder()
                        .build())
                    .hourly(ExternalDynamicListTypeUrlRecurringHourlyArgs.builder()
                        .build())
                    .monthly(ExternalDynamicListTypeUrlRecurringMonthlyArgs.builder()
                        .at("string")
                        .dayOfMonth(0)
                        .build())
                    .weekly(ExternalDynamicListTypeUrlRecurringWeeklyArgs.builder()
                        .at("string")
                        .dayOfWeek("string")
                        .build())
                    .build())
                .url("string")
                .auth(ExternalDynamicListTypeUrlAuthArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .certificateProfile("string")
                .description("string")
                .exceptionLists("string")
                .build())
            .build())
        .build());
    
    external_dynamic_list_resource = scm.ExternalDynamicList("externalDynamicListResource",
        device="string",
        folder="string",
        name="string",
        snippet="string",
        type={
            "domain": {
                "recurring": {
                    "daily": {
                        "at": "string",
                    },
                    "five_minute": {},
                    "hourly": {},
                    "monthly": {
                        "at": "string",
                        "day_of_month": 0,
                    },
                    "weekly": {
                        "at": "string",
                        "day_of_week": "string",
                    },
                },
                "url": "string",
                "auth": {
                    "password": "string",
                    "username": "string",
                },
                "certificate_profile": "string",
                "description": "string",
                "exception_lists": ["string"],
                "expand_domain": False,
            },
            "imei": {
                "recurring": {
                    "daily": {
                        "at": "string",
                    },
                    "five_minute": {},
                    "hourly": {},
                    "monthly": {
                        "at": "string",
                        "day_of_month": 0,
                    },
                    "weekly": {
                        "at": "string",
                        "day_of_week": "string",
                    },
                },
                "url": "string",
                "auth": {
                    "password": "string",
                    "username": "string",
                },
                "certificate_profile": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
            "imsi": {
                "recurring": {
                    "daily": {
                        "at": "string",
                    },
                    "five_minute": {},
                    "hourly": {},
                    "monthly": {
                        "at": "string",
                        "day_of_month": 0,
                    },
                    "weekly": {
                        "at": "string",
                        "day_of_week": "string",
                    },
                },
                "url": "string",
                "auth": {
                    "password": "string",
                    "username": "string",
                },
                "certificate_profile": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
            "ip": {
                "recurring": {
                    "daily": {
                        "at": "string",
                    },
                    "five_minute": {},
                    "hourly": {},
                    "monthly": {
                        "at": "string",
                        "day_of_month": 0,
                    },
                    "weekly": {
                        "at": "string",
                        "day_of_week": "string",
                    },
                },
                "url": "string",
                "auth": {
                    "password": "string",
                    "username": "string",
                },
                "certificate_profile": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
            "predefined_ip": {
                "url": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
            "predefined_url": {
                "url": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
            "url": {
                "recurring": {
                    "daily": {
                        "at": "string",
                    },
                    "five_minute": {},
                    "hourly": {},
                    "monthly": {
                        "at": "string",
                        "day_of_month": 0,
                    },
                    "weekly": {
                        "at": "string",
                        "day_of_week": "string",
                    },
                },
                "url": "string",
                "auth": {
                    "password": "string",
                    "username": "string",
                },
                "certificate_profile": "string",
                "description": "string",
                "exception_lists": ["string"],
            },
        })
    
    const externalDynamicListResource = new scm.ExternalDynamicList("externalDynamicListResource", {
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
        type: {
            domain: {
                recurring: {
                    daily: {
                        at: "string",
                    },
                    fiveMinute: {},
                    hourly: {},
                    monthly: {
                        at: "string",
                        dayOfMonth: 0,
                    },
                    weekly: {
                        at: "string",
                        dayOfWeek: "string",
                    },
                },
                url: "string",
                auth: {
                    password: "string",
                    username: "string",
                },
                certificateProfile: "string",
                description: "string",
                exceptionLists: ["string"],
                expandDomain: false,
            },
            imei: {
                recurring: {
                    daily: {
                        at: "string",
                    },
                    fiveMinute: {},
                    hourly: {},
                    monthly: {
                        at: "string",
                        dayOfMonth: 0,
                    },
                    weekly: {
                        at: "string",
                        dayOfWeek: "string",
                    },
                },
                url: "string",
                auth: {
                    password: "string",
                    username: "string",
                },
                certificateProfile: "string",
                description: "string",
                exceptionLists: ["string"],
            },
            imsi: {
                recurring: {
                    daily: {
                        at: "string",
                    },
                    fiveMinute: {},
                    hourly: {},
                    monthly: {
                        at: "string",
                        dayOfMonth: 0,
                    },
                    weekly: {
                        at: "string",
                        dayOfWeek: "string",
                    },
                },
                url: "string",
                auth: {
                    password: "string",
                    username: "string",
                },
                certificateProfile: "string",
                description: "string",
                exceptionLists: ["string"],
            },
            ip: {
                recurring: {
                    daily: {
                        at: "string",
                    },
                    fiveMinute: {},
                    hourly: {},
                    monthly: {
                        at: "string",
                        dayOfMonth: 0,
                    },
                    weekly: {
                        at: "string",
                        dayOfWeek: "string",
                    },
                },
                url: "string",
                auth: {
                    password: "string",
                    username: "string",
                },
                certificateProfile: "string",
                description: "string",
                exceptionLists: ["string"],
            },
            predefinedIp: {
                url: "string",
                description: "string",
                exceptionLists: ["string"],
            },
            predefinedUrl: {
                url: "string",
                description: "string",
                exceptionLists: ["string"],
            },
            url: {
                recurring: {
                    daily: {
                        at: "string",
                    },
                    fiveMinute: {},
                    hourly: {},
                    monthly: {
                        at: "string",
                        dayOfMonth: 0,
                    },
                    weekly: {
                        at: "string",
                        dayOfWeek: "string",
                    },
                },
                url: "string",
                auth: {
                    password: "string",
                    username: "string",
                },
                certificateProfile: "string",
                description: "string",
                exceptionLists: ["string"],
            },
        },
    });
    
    type: scm:ExternalDynamicList
    properties:
        device: string
        folder: string
        name: string
        snippet: string
        type:
            domain:
                auth:
                    password: string
                    username: string
                certificateProfile: string
                description: string
                exceptionLists:
                    - string
                expandDomain: false
                recurring:
                    daily:
                        at: string
                    fiveMinute: {}
                    hourly: {}
                    monthly:
                        at: string
                        dayOfMonth: 0
                    weekly:
                        at: string
                        dayOfWeek: string
                url: string
            imei:
                auth:
                    password: string
                    username: string
                certificateProfile: string
                description: string
                exceptionLists:
                    - string
                recurring:
                    daily:
                        at: string
                    fiveMinute: {}
                    hourly: {}
                    monthly:
                        at: string
                        dayOfMonth: 0
                    weekly:
                        at: string
                        dayOfWeek: string
                url: string
            imsi:
                auth:
                    password: string
                    username: string
                certificateProfile: string
                description: string
                exceptionLists:
                    - string
                recurring:
                    daily:
                        at: string
                    fiveMinute: {}
                    hourly: {}
                    monthly:
                        at: string
                        dayOfMonth: 0
                    weekly:
                        at: string
                        dayOfWeek: string
                url: string
            ip:
                auth:
                    password: string
                    username: string
                certificateProfile: string
                description: string
                exceptionLists:
                    - string
                recurring:
                    daily:
                        at: string
                    fiveMinute: {}
                    hourly: {}
                    monthly:
                        at: string
                        dayOfMonth: 0
                    weekly:
                        at: string
                        dayOfWeek: string
                url: string
            predefinedIp:
                description: string
                exceptionLists:
                    - string
                url: string
            predefinedUrl:
                description: string
                exceptionLists:
                    - string
                url: string
            url:
                auth:
                    password: string
                    username: string
                certificateProfile: string
                description: string
                exceptionLists:
                    - string
                recurring:
                    daily:
                        at: string
                    fiveMinute: {}
                    hourly: {}
                    monthly:
                        at: string
                        dayOfMonth: 0
                    weekly:
                        at: string
                        dayOfWeek: string
                url: string
    

    ExternalDynamicList Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ExternalDynamicList resource accepts the following input properties:

    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the external dynamic list
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Type ExternalDynamicListType
    Type configuration for External Dynamic List
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the external dynamic list
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Type ExternalDynamicListTypeArgs
    Type configuration for External Dynamic List
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the external dynamic list
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    type ExternalDynamicListType
    Type configuration for External Dynamic List
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    The name of the external dynamic list
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    type ExternalDynamicListType
    Type configuration for External Dynamic List
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    The name of the external dynamic list
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    type ExternalDynamicListTypeArgs
    Type configuration for External Dynamic List
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the external dynamic list
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    type Property Map
    Type configuration for External Dynamic List

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ExternalDynamicList resource produces the following output properties:

    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.

    Look up Existing ExternalDynamicList Resource

    Get an existing ExternalDynamicList resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ExternalDynamicListState, opts?: CustomResourceOptions): ExternalDynamicList
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            encrypted_values: Optional[Mapping[str, str]] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            type: Optional[ExternalDynamicListTypeArgs] = None) -> ExternalDynamicList
    func GetExternalDynamicList(ctx *Context, name string, id IDInput, state *ExternalDynamicListState, opts ...ResourceOption) (*ExternalDynamicList, error)
    public static ExternalDynamicList Get(string name, Input<string> id, ExternalDynamicListState? state, CustomResourceOptions? opts = null)
    public static ExternalDynamicList get(String name, Output<String> id, ExternalDynamicListState state, CustomResourceOptions options)
    resources:  _:    type: scm:ExternalDynamicList    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the external dynamic list
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    Type ExternalDynamicListType
    Type configuration for External Dynamic List
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the external dynamic list
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    Type ExternalDynamicListTypeArgs
    Type configuration for External Dynamic List
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the external dynamic list
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    type ExternalDynamicListType
    Type configuration for External Dynamic List
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    The name of the external dynamic list
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    The Terraform ID.
    type ExternalDynamicListType
    Type configuration for External Dynamic List
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    The name of the external dynamic list
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    The Terraform ID.
    type ExternalDynamicListTypeArgs
    Type configuration for External Dynamic List
    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

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the external dynamic list
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    type Property Map
    Type configuration for External Dynamic List

    Supporting Types

    ExternalDynamicListType, ExternalDynamicListTypeArgs

    Domain ExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    Imei ExternalDynamicListTypeImei

    IMEI Configuration settings

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

    Imsi ExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

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

    Ip ExternalDynamicListTypeIp

    IP settings for Custom IP type

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

    PredefinedIp ExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

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

    PredefinedUrl ExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

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

    Url ExternalDynamicListTypeUrl

    URL settings for Custom URL type

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

    Domain ExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    Imei ExternalDynamicListTypeImei

    IMEI Configuration settings

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

    Imsi ExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

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

    Ip ExternalDynamicListTypeIp

    IP settings for Custom IP type

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

    PredefinedIp ExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

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

    PredefinedUrl ExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

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

    Url ExternalDynamicListTypeUrl

    URL settings for Custom URL type

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

    domain ExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei ExternalDynamicListTypeImei

    IMEI Configuration settings

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

    imsi ExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

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

    ip ExternalDynamicListTypeIp

    IP settings for Custom IP type

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

    predefinedIp ExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

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

    predefinedUrl ExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url ExternalDynamicListTypeUrl

    URL settings for Custom URL type

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

    domain ExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei ExternalDynamicListTypeImei

    IMEI Configuration settings

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

    imsi ExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

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

    ip ExternalDynamicListTypeIp

    IP settings for Custom IP type

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

    predefinedIp ExternalDynamicListTypePredefinedIp

    Predefined IP settings for EDL type

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

    predefinedUrl ExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url ExternalDynamicListTypeUrl

    URL settings for Custom URL type

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

    domain ExternalDynamicListTypeDomain
    Domain settings for Custom Domain type
    imei ExternalDynamicListTypeImei

    IMEI Configuration settings

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

    imsi ExternalDynamicListTypeImsi

    IMSI Config for Custom IMSI type

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

    ip ExternalDynamicListTypeIp

    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 ExternalDynamicListTypePredefinedIp

    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 ExternalDynamicListTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url ExternalDynamicListTypeUrl

    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.

    ExternalDynamicListTypeDomain, ExternalDynamicListTypeDomainArgs

    Recurring ExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    Auth ExternalDynamicListTypeDomainAuth
    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 ExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    Auth ExternalDynamicListTypeDomainAuth
    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 ExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url String
    External URL for Custom Domain type
    auth ExternalDynamicListTypeDomainAuth
    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 ExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url string
    External URL for Custom Domain type
    auth ExternalDynamicListTypeDomainAuth
    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 ExternalDynamicListTypeDomainRecurring
    Update Schedule for Custom Domain type
    url str
    External URL for Custom Domain type
    auth ExternalDynamicListTypeDomainAuth
    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 Property Map
    Update Schedule for Custom Domain type
    url String
    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

    ExternalDynamicListTypeDomainAuth, ExternalDynamicListTypeDomainAuthArgs

    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

    ExternalDynamicListTypeDomainRecurring, ExternalDynamicListTypeDomainRecurringArgs

    Daily ExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute ExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    Hourly ExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    Monthly ExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    Weekly ExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    Daily ExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute ExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    Hourly ExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    Monthly ExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    Weekly ExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily ExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute ExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly ExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly ExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly ExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily ExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute ExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly ExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly ExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly ExternalDynamicListTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily ExternalDynamicListTypeDomainRecurringDaily
    Daily settings for Domain recurring
    five_minute ExternalDynamicListTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly ExternalDynamicListTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly ExternalDynamicListTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly ExternalDynamicListTypeDomainRecurringWeekly

    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.

    ExternalDynamicListTypeDomainRecurringDaily, ExternalDynamicListTypeDomainRecurringDailyArgs

    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

    ExternalDynamicListTypeDomainRecurringMonthly, ExternalDynamicListTypeDomainRecurringMonthlyArgs

    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

    ExternalDynamicListTypeDomainRecurringWeekly, ExternalDynamicListTypeDomainRecurringWeeklyArgs

    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

    ExternalDynamicListTypeImei, ExternalDynamicListTypeImeiArgs

    Recurring ExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    Auth ExternalDynamicListTypeImeiAuth
    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 ExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    Auth ExternalDynamicListTypeImeiAuth
    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 ExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url String
    IMEI URL for Custom IMEI type
    auth ExternalDynamicListTypeImeiAuth
    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 ExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url string
    IMEI URL for Custom IMEI type
    auth ExternalDynamicListTypeImeiAuth
    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 ExternalDynamicListTypeImeiRecurring
    Recurring interval for IMEI updates
    url str
    IMEI URL for Custom IMEI type
    auth ExternalDynamicListTypeImeiAuth
    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 Property Map
    Recurring interval for IMEI updates
    url String
    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

    ExternalDynamicListTypeImeiAuth, ExternalDynamicListTypeImeiAuthArgs

    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

    ExternalDynamicListTypeImeiRecurring, ExternalDynamicListTypeImeiRecurringArgs

    Daily ExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute ExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    Hourly ExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    Monthly ExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    Weekly ExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    Daily ExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute ExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    Hourly ExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    Monthly ExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    Weekly ExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily ExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute ExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly ExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly ExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly ExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily ExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute ExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly ExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly ExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly ExternalDynamicListTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily ExternalDynamicListTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    five_minute ExternalDynamicListTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly ExternalDynamicListTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly ExternalDynamicListTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly ExternalDynamicListTypeImeiRecurringWeekly

    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.

    ExternalDynamicListTypeImeiRecurringDaily, ExternalDynamicListTypeImeiRecurringDailyArgs

    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

    ExternalDynamicListTypeImeiRecurringMonthly, ExternalDynamicListTypeImeiRecurringMonthlyArgs

    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

    ExternalDynamicListTypeImeiRecurringWeekly, ExternalDynamicListTypeImeiRecurringWeeklyArgs

    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

    ExternalDynamicListTypeImsi, ExternalDynamicListTypeImsiArgs

    Recurring ExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    Auth ExternalDynamicListTypeImsiAuth
    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 ExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    Auth ExternalDynamicListTypeImsiAuth
    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 ExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url String
    IMSI URL for Custom IMSI type
    auth ExternalDynamicListTypeImsiAuth
    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 ExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url string
    IMSI URL for Custom IMSI type
    auth ExternalDynamicListTypeImsiAuth
    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 ExternalDynamicListTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url str
    IMSI URL for Custom IMSI type
    auth ExternalDynamicListTypeImsiAuth
    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 Property Map
    IMSI Recuring Config for Custom IMSI type
    url String
    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

    ExternalDynamicListTypeImsiAuth, ExternalDynamicListTypeImsiAuthArgs

    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

    ExternalDynamicListTypeImsiRecurring, ExternalDynamicListTypeImsiRecurringArgs

    Daily ExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute ExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    Hourly ExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    Monthly ExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    Weekly ExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    Daily ExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute ExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    Hourly ExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    Monthly ExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    Weekly ExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily ExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute ExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly ExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly ExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly ExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily ExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute ExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly ExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly ExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly ExternalDynamicListTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily ExternalDynamicListTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    five_minute ExternalDynamicListTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly ExternalDynamicListTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly ExternalDynamicListTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly ExternalDynamicListTypeImsiRecurringWeekly

    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.

    ExternalDynamicListTypeImsiRecurringDaily, ExternalDynamicListTypeImsiRecurringDailyArgs

    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

    ExternalDynamicListTypeImsiRecurringMonthly, ExternalDynamicListTypeImsiRecurringMonthlyArgs

    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

    ExternalDynamicListTypeImsiRecurringWeekly, ExternalDynamicListTypeImsiRecurringWeeklyArgs

    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

    ExternalDynamicListTypeIp, ExternalDynamicListTypeIpArgs

    Recurring ExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    Auth ExternalDynamicListTypeIpAuth
    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 ExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    Auth ExternalDynamicListTypeIpAuth
    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 ExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url String
    External URL for Custom IP type
    auth ExternalDynamicListTypeIpAuth
    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 ExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url string
    External URL for Custom IP type
    auth ExternalDynamicListTypeIpAuth
    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 ExternalDynamicListTypeIpRecurring
    Update Schedule for Custom IP type
    url str
    External URL for Custom IP type
    auth ExternalDynamicListTypeIpAuth
    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 Property Map
    Update Schedule for Custom IP type
    url String
    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

    ExternalDynamicListTypeIpAuth, ExternalDynamicListTypeIpAuthArgs

    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

    ExternalDynamicListTypeIpRecurring, ExternalDynamicListTypeIpRecurringArgs

    Daily ExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute ExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    Hourly ExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    Monthly ExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    Weekly ExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    Daily ExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute ExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    Hourly ExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    Monthly ExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    Weekly ExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily ExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute ExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly ExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly ExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly ExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily ExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute ExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly ExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly ExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly ExternalDynamicListTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily ExternalDynamicListTypeIpRecurringDaily
    Daily settings for IP recurring
    five_minute ExternalDynamicListTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly ExternalDynamicListTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly ExternalDynamicListTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly ExternalDynamicListTypeIpRecurringWeekly

    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.

    ExternalDynamicListTypeIpRecurringDaily, ExternalDynamicListTypeIpRecurringDailyArgs

    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

    ExternalDynamicListTypeIpRecurringMonthly, ExternalDynamicListTypeIpRecurringMonthlyArgs

    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

    ExternalDynamicListTypeIpRecurringWeekly, ExternalDynamicListTypeIpRecurringWeeklyArgs

    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

    ExternalDynamicListTypePredefinedIp, ExternalDynamicListTypePredefinedIpArgs

    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 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 str
    URL source for Predefined IP type
    description str
    Description
    exception_lists Sequence[str]
    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

    ExternalDynamicListTypePredefinedUrl, ExternalDynamicListTypePredefinedUrlArgs

    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 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 str
    URL source for Predefined URL type
    description str
    Description
    exception_lists Sequence[str]
    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

    ExternalDynamicListTypeUrl, ExternalDynamicListTypeUrlArgs

    Recurring ExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    Auth ExternalDynamicListTypeUrlAuth
    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 ExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    Auth ExternalDynamicListTypeUrlAuth
    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 ExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url String
    External URL for Custom URL type
    auth ExternalDynamicListTypeUrlAuth
    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 ExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url string
    External URL for Custom URL type
    auth ExternalDynamicListTypeUrlAuth
    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 ExternalDynamicListTypeUrlRecurring
    Update Schedule for Custom URL type
    url str
    External URL for Custom URL type
    auth ExternalDynamicListTypeUrlAuth
    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 Property Map
    Update Schedule for Custom URL type
    url String
    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

    ExternalDynamicListTypeUrlAuth, ExternalDynamicListTypeUrlAuthArgs

    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

    ExternalDynamicListTypeUrlRecurring, ExternalDynamicListTypeUrlRecurringArgs

    Daily ExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute ExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    Hourly ExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    Monthly ExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    Weekly ExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    Daily ExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute ExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    Hourly ExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    Monthly ExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    Weekly ExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily ExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute ExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly ExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly ExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly ExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily ExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute ExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly ExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly ExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly ExternalDynamicListTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily ExternalDynamicListTypeUrlRecurringDaily
    Daily settings for URL recurring
    five_minute ExternalDynamicListTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly ExternalDynamicListTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly ExternalDynamicListTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly ExternalDynamicListTypeUrlRecurringWeekly

    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.

    ExternalDynamicListTypeUrlRecurringDaily, ExternalDynamicListTypeUrlRecurringDailyArgs

    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

    ExternalDynamicListTypeUrlRecurringMonthly, ExternalDynamicListTypeUrlRecurringMonthlyArgs

    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

    ExternalDynamicListTypeUrlRecurringWeekly, ExternalDynamicListTypeUrlRecurringWeeklyArgs

    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

    Import

    The following command can be used to import a resource not managed by Terraform:

    terraform import scm_external_dynamic_list.example folder:::id
    

    or

    terraform import scm_external_dynamic_list.example :snippet::id
    

    or

    terraform import scm_external_dynamic_list.example ::device:id
    

    Note: Please provide just one of folder, snippet, or device for the import command.

    To learn more about importing existing cloud resources, see Importing resources.

    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