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

    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
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Type ExternalDynamicListType
    Type
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Type ExternalDynamicListTypeArgs
    Type
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    type ExternalDynamicListType
    Type
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    name string
    The name of the external dynamic list
    snippet string
    The snippet in which the resource is defined
    type ExternalDynamicListType
    Type
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    name str
    The name of the external dynamic list
    snippet str
    The snippet in which the resource is defined
    type ExternalDynamicListTypeArgs
    Type
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    type Property Map
    Type

    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
    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
    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
    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
    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
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type ExternalDynamicListType
    Type
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the external dynamic list
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Type ExternalDynamicListTypeArgs
    Type
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    tfid String
    type ExternalDynamicListType
    Type
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder in which the resource is defined
    name string
    The name of the external dynamic list
    snippet string
    The snippet in which the resource is defined
    tfid string
    type ExternalDynamicListType
    Type
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder in which the resource is defined
    name str
    The name of the external dynamic list
    snippet str
    The snippet in which the resource is defined
    tfid str
    type ExternalDynamicListTypeArgs
    Type
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    name String
    The name of the external dynamic list
    snippet String
    The snippet in which the resource is defined
    tfid String
    type Property Map
    Type

    Supporting Types

    ExternalDynamicListType, ExternalDynamicListTypeArgs

    ExternalDynamicListTypeDomain, ExternalDynamicListTypeDomainArgs

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

    ExternalDynamicListTypeDomainAuth, ExternalDynamicListTypeDomainAuthArgs

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

    ExternalDynamicListTypeDomainRecurring, ExternalDynamicListTypeDomainRecurringArgs

    ExternalDynamicListTypeDomainRecurringDaily, ExternalDynamicListTypeDomainRecurringDailyArgs

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

    ExternalDynamicListTypeDomainRecurringMonthly, ExternalDynamicListTypeDomainRecurringMonthlyArgs

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

    ExternalDynamicListTypeDomainRecurringWeekly, ExternalDynamicListTypeDomainRecurringWeeklyArgs

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

    ExternalDynamicListTypeImei, ExternalDynamicListTypeImeiArgs

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

    ExternalDynamicListTypeImeiAuth, ExternalDynamicListTypeImeiAuthArgs

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

    ExternalDynamicListTypeImeiRecurring, ExternalDynamicListTypeImeiRecurringArgs

    ExternalDynamicListTypeImeiRecurringDaily, ExternalDynamicListTypeImeiRecurringDailyArgs

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

    ExternalDynamicListTypeImeiRecurringMonthly, ExternalDynamicListTypeImeiRecurringMonthlyArgs

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

    ExternalDynamicListTypeImeiRecurringWeekly, ExternalDynamicListTypeImeiRecurringWeeklyArgs

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

    ExternalDynamicListTypeImsi, ExternalDynamicListTypeImsiArgs

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

    ExternalDynamicListTypeImsiAuth, ExternalDynamicListTypeImsiAuthArgs

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

    ExternalDynamicListTypeImsiRecurring, ExternalDynamicListTypeImsiRecurringArgs

    ExternalDynamicListTypeImsiRecurringDaily, ExternalDynamicListTypeImsiRecurringDailyArgs

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

    ExternalDynamicListTypeImsiRecurringMonthly, ExternalDynamicListTypeImsiRecurringMonthlyArgs

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

    ExternalDynamicListTypeImsiRecurringWeekly, ExternalDynamicListTypeImsiRecurringWeeklyArgs

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

    ExternalDynamicListTypeIp, ExternalDynamicListTypeIpArgs

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

    ExternalDynamicListTypeIpAuth, ExternalDynamicListTypeIpAuthArgs

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

    ExternalDynamicListTypeIpRecurring, ExternalDynamicListTypeIpRecurringArgs

    ExternalDynamicListTypeIpRecurringDaily, ExternalDynamicListTypeIpRecurringDailyArgs

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

    ExternalDynamicListTypeIpRecurringMonthly, ExternalDynamicListTypeIpRecurringMonthlyArgs

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

    ExternalDynamicListTypeIpRecurringWeekly, ExternalDynamicListTypeIpRecurringWeeklyArgs

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

    ExternalDynamicListTypePredefinedIp, ExternalDynamicListTypePredefinedIpArgs

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

    ExternalDynamicListTypePredefinedUrl, ExternalDynamicListTypePredefinedUrlArgs

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

    ExternalDynamicListTypeUrl, ExternalDynamicListTypeUrlArgs

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

    ExternalDynamicListTypeUrlAuth, ExternalDynamicListTypeUrlAuthArgs

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

    ExternalDynamicListTypeUrlRecurring, ExternalDynamicListTypeUrlRecurringArgs

    ExternalDynamicListTypeUrlRecurringDaily, ExternalDynamicListTypeUrlRecurringDailyArgs

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

    ExternalDynamicListTypeUrlRecurringMonthly, ExternalDynamicListTypeUrlRecurringMonthlyArgs

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

    ExternalDynamicListTypeUrlRecurringWeekly, ExternalDynamicListTypeUrlRecurringWeeklyArgs

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

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate