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

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Data source to fetch all external dynamic lists in the "All" folder.
    const allSharedEdls = scm.getExternalDynamicListList({
        folder: "All",
    });
    export const allSharedEdlsMap = allSharedEdls.then(allSharedEdls => allSharedEdls.datas);
    // Example of using pagination to get the first 5 EDLs.
    const paginatedEdls = scm.getExternalDynamicListList({
        folder: "All",
        limit: 5,
        offset: 0,
    });
    export const paginatedEdlsDetails = {
        totalInFolder: paginatedEdls.then(paginatedEdls => paginatedEdls.total),
        limitUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.limit),
        offsetUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.offset),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Data source to fetch all external dynamic lists in the "All" folder.
    all_shared_edls = scm.get_external_dynamic_list_list(folder="All")
    pulumi.export("allSharedEdlsMap", all_shared_edls.datas)
    # Example of using pagination to get the first 5 EDLs.
    paginated_edls = scm.get_external_dynamic_list_list(folder="All",
        limit=5,
        offset=0)
    pulumi.export("paginatedEdlsDetails", {
        "totalInFolder": paginated_edls.total,
        "limitUsed": paginated_edls.limit,
        "offsetUsed": paginated_edls.offset,
    })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Data source to fetch all external dynamic lists in the "All" folder.
    		allSharedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("allSharedEdlsMap", allSharedEdls.Datas)
    		// Example of using pagination to get the first 5 EDLs.
    		paginatedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
    			Folder: pulumi.StringRef("All"),
    			Limit:  pulumi.IntRef(5),
    			Offset: pulumi.IntRef(0),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("paginatedEdlsDetails", pulumi.IntMap{
    			"totalInFolder": paginatedEdls.Total,
    			"limitUsed":     paginatedEdls.Limit,
    			"offsetUsed":    paginatedEdls.Offset,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Data source to fetch all external dynamic lists in the "All" folder.
        var allSharedEdls = Scm.GetExternalDynamicListList.Invoke(new()
        {
            Folder = "All",
        });
    
        // Example of using pagination to get the first 5 EDLs.
        var paginatedEdls = Scm.GetExternalDynamicListList.Invoke(new()
        {
            Folder = "All",
            Limit = 5,
            Offset = 0,
        });
    
        return new Dictionary<string, object?>
        {
            ["allSharedEdlsMap"] = allSharedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Datas),
            ["paginatedEdlsDetails"] = 
            {
                { "totalInFolder", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Total) },
                { "limitUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Limit) },
                { "offsetUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Offset) },
            },
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetExternalDynamicListListArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Data source to fetch all external dynamic lists in the "All" folder.
            final var allSharedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("allSharedEdlsMap", allSharedEdls.datas());
            // Example of using pagination to get the first 5 EDLs.
            final var paginatedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
                .folder("All")
                .limit(5)
                .offset(0)
                .build());
    
            ctx.export("paginatedEdlsDetails", Map.ofEntries(
                Map.entry("totalInFolder", paginatedEdls.total()),
                Map.entry("limitUsed", paginatedEdls.limit()),
                Map.entry("offsetUsed", paginatedEdls.offset())
            ));
        }
    }
    
    variables:
      # Data source to fetch all external dynamic lists in the "All" folder.
      allSharedEdls:
        fn::invoke:
          function: scm:getExternalDynamicListList
          arguments:
            folder: All
      # Example of using pagination to get the first 5 EDLs.
      paginatedEdls:
        fn::invoke:
          function: scm:getExternalDynamicListList
          arguments:
            folder: All
            limit: 5
            offset: 0
    outputs:
      # Creates a map where the key is the EDL ID and the value is the full object.
      allSharedEdlsMap: ${allSharedEdls.datas}
      # Outputs pagination details, such as the total count and the limit used.
      paginatedEdlsDetails:
        totalInFolder: ${paginatedEdls.total}
        limitUsed: ${paginatedEdls.limit}
        offsetUsed: ${paginatedEdls.offset}
    

    Using getExternalDynamicListList

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getExternalDynamicListList(args: GetExternalDynamicListListArgs, opts?: InvokeOptions): Promise<GetExternalDynamicListListResult>
    function getExternalDynamicListListOutput(args: GetExternalDynamicListListOutputArgs, opts?: InvokeOptions): Output<GetExternalDynamicListListResult>
    def get_external_dynamic_list_list(device: Optional[str] = None,
                                       folder: Optional[str] = None,
                                       limit: Optional[int] = None,
                                       name: Optional[str] = None,
                                       offset: Optional[int] = None,
                                       snippet: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetExternalDynamicListListResult
    def get_external_dynamic_list_list_output(device: Optional[pulumi.Input[str]] = None,
                                       folder: Optional[pulumi.Input[str]] = None,
                                       limit: Optional[pulumi.Input[int]] = None,
                                       name: Optional[pulumi.Input[str]] = None,
                                       offset: Optional[pulumi.Input[int]] = None,
                                       snippet: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetExternalDynamicListListResult]
    func GetExternalDynamicListList(ctx *Context, args *GetExternalDynamicListListArgs, opts ...InvokeOption) (*GetExternalDynamicListListResult, error)
    func GetExternalDynamicListListOutput(ctx *Context, args *GetExternalDynamicListListOutputArgs, opts ...InvokeOption) GetExternalDynamicListListResultOutput

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

    public static class GetExternalDynamicListList 
    {
        public static Task<GetExternalDynamicListListResult> InvokeAsync(GetExternalDynamicListListArgs args, InvokeOptions? opts = null)
        public static Output<GetExternalDynamicListListResult> Invoke(GetExternalDynamicListListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
    public static Output<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getExternalDynamicListList:getExternalDynamicListList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getExternalDynamicListList Result

    The following output properties are available:

    Datas List<GetExternalDynamicListListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetExternalDynamicListListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetExternalDynamicListListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetExternalDynamicListListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetExternalDynamicListListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetExternalDynamicListListData

    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder of the item. Default: Shared.
    Id string
    The UUID of the external dynamic list
    Name string
    The name of the item.
    Snippet string
    The snippet of the item.
    Tfid string
    The Terraform ID.
    Type GetExternalDynamicListListDataType
    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 of the item. Default: Shared.
    Id string
    The UUID of the external dynamic list
    Name string
    The name of the item.
    Snippet string
    The snippet of the item.
    Tfid string
    The Terraform ID.
    Type GetExternalDynamicListListDataType
    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 of the item. Default: Shared.
    id String
    The UUID of the external dynamic list
    name String
    The name of the item.
    snippet String
    The snippet of the item.
    tfid String
    The Terraform ID.
    type GetExternalDynamicListListDataType
    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 of the item. Default: Shared.
    id string
    The UUID of the external dynamic list
    name string
    The name of the item.
    snippet string
    The snippet of the item.
    tfid string
    The Terraform ID.
    type GetExternalDynamicListListDataType
    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 of the item. Default: Shared.
    id str
    The UUID of the external dynamic list
    name str
    The name of the item.
    snippet str
    The snippet of the item.
    tfid str
    The Terraform ID.
    type GetExternalDynamicListListDataType
    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 of the item. Default: Shared.
    id String
    The UUID of the external dynamic list
    name String
    The name of the item.
    snippet String
    The snippet of the item.
    tfid String
    The Terraform ID.
    type Property Map
    Type configuration for External Dynamic List

    GetExternalDynamicListListDataType

    Domain GetExternalDynamicListListDataTypeDomain
    Domain settings for Custom Domain type
    Imei GetExternalDynamicListListDataTypeImei

    IMEI Configuration settings

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

    Imsi GetExternalDynamicListListDataTypeImsi

    IMSI Config for Custom IMSI type

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

    Ip GetExternalDynamicListListDataTypeIp

    IP settings for Custom IP type

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

    PredefinedIp GetExternalDynamicListListDataTypePredefinedIp

    Predefined IP settings for EDL type

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

    PredefinedUrl GetExternalDynamicListListDataTypePredefinedUrl

    Predefined URL settings for EDL type

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

    Url GetExternalDynamicListListDataTypeUrl

    URL settings for Custom URL type

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

    Domain GetExternalDynamicListListDataTypeDomain
    Domain settings for Custom Domain type
    Imei GetExternalDynamicListListDataTypeImei

    IMEI Configuration settings

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

    Imsi GetExternalDynamicListListDataTypeImsi

    IMSI Config for Custom IMSI type

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

    Ip GetExternalDynamicListListDataTypeIp

    IP settings for Custom IP type

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

    PredefinedIp GetExternalDynamicListListDataTypePredefinedIp

    Predefined IP settings for EDL type

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

    PredefinedUrl GetExternalDynamicListListDataTypePredefinedUrl

    Predefined URL settings for EDL type

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

    Url GetExternalDynamicListListDataTypeUrl

    URL settings for Custom URL type

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

    domain GetExternalDynamicListListDataTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListListDataTypeImei

    IMEI Configuration settings

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

    imsi GetExternalDynamicListListDataTypeImsi

    IMSI Config for Custom IMSI type

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

    ip GetExternalDynamicListListDataTypeIp

    IP settings for Custom IP type

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

    predefinedIp GetExternalDynamicListListDataTypePredefinedIp

    Predefined IP settings for EDL type

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

    predefinedUrl GetExternalDynamicListListDataTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url GetExternalDynamicListListDataTypeUrl

    URL settings for Custom URL type

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

    domain GetExternalDynamicListListDataTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListListDataTypeImei

    IMEI Configuration settings

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

    imsi GetExternalDynamicListListDataTypeImsi

    IMSI Config for Custom IMSI type

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

    ip GetExternalDynamicListListDataTypeIp

    IP settings for Custom IP type

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

    predefinedIp GetExternalDynamicListListDataTypePredefinedIp

    Predefined IP settings for EDL type

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

    predefinedUrl GetExternalDynamicListListDataTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url GetExternalDynamicListListDataTypeUrl

    URL settings for Custom URL type

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

    domain GetExternalDynamicListListDataTypeDomain
    Domain settings for Custom Domain type
    imei GetExternalDynamicListListDataTypeImei

    IMEI Configuration settings

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

    imsi GetExternalDynamicListListDataTypeImsi

    IMSI Config for Custom IMSI type

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

    ip GetExternalDynamicListListDataTypeIp

    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 GetExternalDynamicListListDataTypePredefinedIp

    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 GetExternalDynamicListListDataTypePredefinedUrl

    Predefined URL settings for EDL type

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

    url GetExternalDynamicListListDataTypeUrl

    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.

    GetExternalDynamicListListDataTypeDomain

    Auth GetExternalDynamicListListDataTypeDomainAuth
    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 GetExternalDynamicListListDataTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    Auth GetExternalDynamicListListDataTypeDomainAuth
    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 GetExternalDynamicListListDataTypeDomainRecurring
    Update Schedule for Custom Domain type
    Url string
    External URL for Custom Domain type
    auth GetExternalDynamicListListDataTypeDomainAuth
    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 GetExternalDynamicListListDataTypeDomainRecurring
    Update Schedule for Custom Domain type
    url String
    External URL for Custom Domain type
    auth GetExternalDynamicListListDataTypeDomainAuth
    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 GetExternalDynamicListListDataTypeDomainRecurring
    Update Schedule for Custom Domain type
    url string
    External URL for Custom Domain type
    auth GetExternalDynamicListListDataTypeDomainAuth
    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 GetExternalDynamicListListDataTypeDomainRecurring
    Update Schedule for Custom Domain type
    url str
    External URL for Custom Domain type
    auth Property Map
    Authentication settings for Custom Domain type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    Domain Exception List for Custom Domain type
    expandDomain Boolean
    Enable/Disable expand domain
    recurring Property Map
    Update Schedule for Custom Domain type
    url String
    External URL for Custom Domain type

    GetExternalDynamicListListDataTypeDomainAuth

    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

    GetExternalDynamicListListDataTypeDomainRecurring

    Daily GetExternalDynamicListListDataTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute GetExternalDynamicListListDataTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    Hourly GetExternalDynamicListListDataTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    Monthly GetExternalDynamicListListDataTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    Weekly GetExternalDynamicListListDataTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    Daily GetExternalDynamicListListDataTypeDomainRecurringDaily
    Daily settings for Domain recurring
    FiveMinute GetExternalDynamicListListDataTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    Hourly GetExternalDynamicListListDataTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    Monthly GetExternalDynamicListListDataTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    Weekly GetExternalDynamicListListDataTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily GetExternalDynamicListListDataTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute GetExternalDynamicListListDataTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly GetExternalDynamicListListDataTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly GetExternalDynamicListListDataTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly GetExternalDynamicListListDataTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily GetExternalDynamicListListDataTypeDomainRecurringDaily
    Daily settings for Domain recurring
    fiveMinute GetExternalDynamicListListDataTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly GetExternalDynamicListListDataTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly GetExternalDynamicListListDataTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly GetExternalDynamicListListDataTypeDomainRecurringWeekly

    Weekly settings for Domain recurring

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

    daily GetExternalDynamicListListDataTypeDomainRecurringDaily
    Daily settings for Domain recurring
    five_minute GetExternalDynamicListListDataTypeDomainRecurringFiveMinute

    Five minute settings for Domain recurring

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

    hourly GetExternalDynamicListListDataTypeDomainRecurringHourly

    Hourly settings for Domain recurring

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

    monthly GetExternalDynamicListListDataTypeDomainRecurringMonthly

    Monthly settings for Domain recurring

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

    weekly GetExternalDynamicListListDataTypeDomainRecurringWeekly

    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.

    GetExternalDynamicListListDataTypeDomainRecurringDaily

    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

    GetExternalDynamicListListDataTypeDomainRecurringMonthly

    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

    GetExternalDynamicListListDataTypeDomainRecurringWeekly

    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

    GetExternalDynamicListListDataTypeImei

    Auth GetExternalDynamicListListDataTypeImeiAuth
    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 GetExternalDynamicListListDataTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    Auth GetExternalDynamicListListDataTypeImeiAuth
    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 GetExternalDynamicListListDataTypeImeiRecurring
    Recurring interval for IMEI updates
    Url string
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListListDataTypeImeiAuth
    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 GetExternalDynamicListListDataTypeImeiRecurring
    Recurring interval for IMEI updates
    url String
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListListDataTypeImeiAuth
    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 GetExternalDynamicListListDataTypeImeiRecurring
    Recurring interval for IMEI updates
    url string
    IMEI URL for Custom IMEI type
    auth GetExternalDynamicListListDataTypeImeiAuth
    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 GetExternalDynamicListListDataTypeImeiRecurring
    Recurring interval for IMEI updates
    url str
    IMEI URL for Custom IMEI type
    auth Property Map
    IMEI Auth Cnfig for Custom IMEI type
    certificateProfile String
    IMEI Certificate Profile for Custom IMEI type
    description String
    IMEI Description for Custom IMEI type
    exceptionLists List<String>
    IMEI Exception List for Custom IMEI type
    recurring Property Map
    Recurring interval for IMEI updates
    url String
    IMEI URL for Custom IMEI type

    GetExternalDynamicListListDataTypeImeiAuth

    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

    GetExternalDynamicListListDataTypeImeiRecurring

    Daily GetExternalDynamicListListDataTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute GetExternalDynamicListListDataTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    Hourly GetExternalDynamicListListDataTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    Monthly GetExternalDynamicListListDataTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    Weekly GetExternalDynamicListListDataTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    Daily GetExternalDynamicListListDataTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    FiveMinute GetExternalDynamicListListDataTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    Hourly GetExternalDynamicListListDataTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    Monthly GetExternalDynamicListListDataTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    Weekly GetExternalDynamicListListDataTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily GetExternalDynamicListListDataTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute GetExternalDynamicListListDataTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly GetExternalDynamicListListDataTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly GetExternalDynamicListListDataTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly GetExternalDynamicListListDataTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily GetExternalDynamicListListDataTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    fiveMinute GetExternalDynamicListListDataTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly GetExternalDynamicListListDataTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly GetExternalDynamicListListDataTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly GetExternalDynamicListListDataTypeImeiRecurringWeekly

    Weekly interval settings for IMEI updates

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

    daily GetExternalDynamicListListDataTypeImeiRecurringDaily
    Daily interval settings for IMEI updates
    five_minute GetExternalDynamicListListDataTypeImeiRecurringFiveMinute

    Five-minute interval settings for IMEI updates

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

    hourly GetExternalDynamicListListDataTypeImeiRecurringHourly

    Hourly interval settings for IMEI updates

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

    monthly GetExternalDynamicListListDataTypeImeiRecurringMonthly

    Monthly interval settings for IMEI updates

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

    weekly GetExternalDynamicListListDataTypeImeiRecurringWeekly

    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.

    GetExternalDynamicListListDataTypeImeiRecurringDaily

    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

    GetExternalDynamicListListDataTypeImeiRecurringMonthly

    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

    GetExternalDynamicListListDataTypeImeiRecurringWeekly

    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

    GetExternalDynamicListListDataTypeImsi

    Auth GetExternalDynamicListListDataTypeImsiAuth
    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 GetExternalDynamicListListDataTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    Auth GetExternalDynamicListListDataTypeImsiAuth
    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 GetExternalDynamicListListDataTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    Url string
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListListDataTypeImsiAuth
    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 GetExternalDynamicListListDataTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url String
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListListDataTypeImsiAuth
    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 GetExternalDynamicListListDataTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url string
    IMSI URL for Custom IMSI type
    auth GetExternalDynamicListListDataTypeImsiAuth
    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 GetExternalDynamicListListDataTypeImsiRecurring
    IMSI Recuring Config for Custom IMSI type
    url str
    IMSI URL for Custom IMSI type
    auth Property Map
    IMSI Auth Config for Custom IMSI type
    certificateProfile String
    IMSI Certificate Profile for Custom IMSI type
    description String
    IMSI Description for Custom IMSI type
    exceptionLists List<String>
    IMSI Exception List for Custom IMSI type
    recurring Property Map
    IMSI Recuring Config for Custom IMSI type
    url String
    IMSI URL for Custom IMSI type

    GetExternalDynamicListListDataTypeImsiAuth

    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

    GetExternalDynamicListListDataTypeImsiRecurring

    Daily GetExternalDynamicListListDataTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute GetExternalDynamicListListDataTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    Hourly GetExternalDynamicListListDataTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    Monthly GetExternalDynamicListListDataTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    Weekly GetExternalDynamicListListDataTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    Daily GetExternalDynamicListListDataTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    FiveMinute GetExternalDynamicListListDataTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    Hourly GetExternalDynamicListListDataTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    Monthly GetExternalDynamicListListDataTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    Weekly GetExternalDynamicListListDataTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily GetExternalDynamicListListDataTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute GetExternalDynamicListListDataTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly GetExternalDynamicListListDataTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly GetExternalDynamicListListDataTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly GetExternalDynamicListListDataTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily GetExternalDynamicListListDataTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    fiveMinute GetExternalDynamicListListDataTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly GetExternalDynamicListListDataTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly GetExternalDynamicListListDataTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly GetExternalDynamicListListDataTypeImsiRecurringWeekly

    Weekly interval settings for IMSI updates

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

    daily GetExternalDynamicListListDataTypeImsiRecurringDaily
    Daily interval settings for IMSI updates
    five_minute GetExternalDynamicListListDataTypeImsiRecurringFiveMinute

    Five-minute interval settings for IMSI updates

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

    hourly GetExternalDynamicListListDataTypeImsiRecurringHourly

    Hourly interval settings for IMSI updates

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

    monthly GetExternalDynamicListListDataTypeImsiRecurringMonthly

    Monthly interval settings for IMSI updates

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

    weekly GetExternalDynamicListListDataTypeImsiRecurringWeekly

    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.

    GetExternalDynamicListListDataTypeImsiRecurringDaily

    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

    GetExternalDynamicListListDataTypeImsiRecurringMonthly

    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

    GetExternalDynamicListListDataTypeImsiRecurringWeekly

    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

    GetExternalDynamicListListDataTypeIp

    Auth GetExternalDynamicListListDataTypeIpAuth
    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 GetExternalDynamicListListDataTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    Auth GetExternalDynamicListListDataTypeIpAuth
    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 GetExternalDynamicListListDataTypeIpRecurring
    Update Schedule for Custom IP type
    Url string
    External URL for Custom IP type
    auth GetExternalDynamicListListDataTypeIpAuth
    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 GetExternalDynamicListListDataTypeIpRecurring
    Update Schedule for Custom IP type
    url String
    External URL for Custom IP type
    auth GetExternalDynamicListListDataTypeIpAuth
    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 GetExternalDynamicListListDataTypeIpRecurring
    Update Schedule for Custom IP type
    url string
    External URL for Custom IP type
    auth GetExternalDynamicListListDataTypeIpAuth
    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 GetExternalDynamicListListDataTypeIpRecurring
    Update Schedule for Custom IP type
    url str
    External URL for Custom IP type
    auth Property Map
    Authentication settings for Custom IP type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    IP Exception List for Custom IP type
    recurring Property Map
    Update Schedule for Custom IP type
    url String
    External URL for Custom IP type

    GetExternalDynamicListListDataTypeIpAuth

    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

    GetExternalDynamicListListDataTypeIpRecurring

    Daily GetExternalDynamicListListDataTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute GetExternalDynamicListListDataTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    Hourly GetExternalDynamicListListDataTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    Monthly GetExternalDynamicListListDataTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    Weekly GetExternalDynamicListListDataTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    Daily GetExternalDynamicListListDataTypeIpRecurringDaily
    Daily settings for IP recurring
    FiveMinute GetExternalDynamicListListDataTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    Hourly GetExternalDynamicListListDataTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    Monthly GetExternalDynamicListListDataTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    Weekly GetExternalDynamicListListDataTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily GetExternalDynamicListListDataTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute GetExternalDynamicListListDataTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly GetExternalDynamicListListDataTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly GetExternalDynamicListListDataTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly GetExternalDynamicListListDataTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily GetExternalDynamicListListDataTypeIpRecurringDaily
    Daily settings for IP recurring
    fiveMinute GetExternalDynamicListListDataTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly GetExternalDynamicListListDataTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly GetExternalDynamicListListDataTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly GetExternalDynamicListListDataTypeIpRecurringWeekly

    Weekly settings for IP recurring

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

    daily GetExternalDynamicListListDataTypeIpRecurringDaily
    Daily settings for IP recurring
    five_minute GetExternalDynamicListListDataTypeIpRecurringFiveMinute

    Five minute settings for IP recurring

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

    hourly GetExternalDynamicListListDataTypeIpRecurringHourly

    Hourly settings for IP recurring

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

    monthly GetExternalDynamicListListDataTypeIpRecurringMonthly

    Monthly settings for IP recurring

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

    weekly GetExternalDynamicListListDataTypeIpRecurringWeekly

    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.

    GetExternalDynamicListListDataTypeIpRecurringDaily

    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

    GetExternalDynamicListListDataTypeIpRecurringMonthly

    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

    GetExternalDynamicListListDataTypeIpRecurringWeekly

    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

    GetExternalDynamicListListDataTypePredefinedIp

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

    GetExternalDynamicListListDataTypePredefinedUrl

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

    GetExternalDynamicListListDataTypeUrl

    Auth GetExternalDynamicListListDataTypeUrlAuth
    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 GetExternalDynamicListListDataTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    Auth GetExternalDynamicListListDataTypeUrlAuth
    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 GetExternalDynamicListListDataTypeUrlRecurring
    Update Schedule for Custom URL type
    Url string
    External URL for Custom URL type
    auth GetExternalDynamicListListDataTypeUrlAuth
    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 GetExternalDynamicListListDataTypeUrlRecurring
    Update Schedule for Custom URL type
    url String
    External URL for Custom URL type
    auth GetExternalDynamicListListDataTypeUrlAuth
    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 GetExternalDynamicListListDataTypeUrlRecurring
    Update Schedule for Custom URL type
    url string
    External URL for Custom URL type
    auth GetExternalDynamicListListDataTypeUrlAuth
    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 GetExternalDynamicListListDataTypeUrlRecurring
    Update Schedule for Custom URL type
    url str
    External URL for Custom URL type
    auth Property Map
    Authentication settings for Custom URL type
    certificateProfile String
    Profile for authenticating client certificates
    description String
    Description
    exceptionLists List<String>
    URL Exception List for Custom URL type
    recurring Property Map
    Update Schedule for Custom URL type
    url String
    External URL for Custom URL type

    GetExternalDynamicListListDataTypeUrlAuth

    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

    GetExternalDynamicListListDataTypeUrlRecurring

    Daily GetExternalDynamicListListDataTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute GetExternalDynamicListListDataTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    Hourly GetExternalDynamicListListDataTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    Monthly GetExternalDynamicListListDataTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    Weekly GetExternalDynamicListListDataTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    Daily GetExternalDynamicListListDataTypeUrlRecurringDaily
    Daily settings for URL recurring
    FiveMinute GetExternalDynamicListListDataTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    Hourly GetExternalDynamicListListDataTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    Monthly GetExternalDynamicListListDataTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    Weekly GetExternalDynamicListListDataTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily GetExternalDynamicListListDataTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute GetExternalDynamicListListDataTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly GetExternalDynamicListListDataTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly GetExternalDynamicListListDataTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly GetExternalDynamicListListDataTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily GetExternalDynamicListListDataTypeUrlRecurringDaily
    Daily settings for URL recurring
    fiveMinute GetExternalDynamicListListDataTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly GetExternalDynamicListListDataTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly GetExternalDynamicListListDataTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly GetExternalDynamicListListDataTypeUrlRecurringWeekly

    Weekly settings for URL recurring

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

    daily GetExternalDynamicListListDataTypeUrlRecurringDaily
    Daily settings for URL recurring
    five_minute GetExternalDynamicListListDataTypeUrlRecurringFiveMinute

    Five minute settings for URL recurring

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

    hourly GetExternalDynamicListListDataTypeUrlRecurringHourly

    Hourly settings for URL recurring

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

    monthly GetExternalDynamicListListDataTypeUrlRecurringMonthly

    Monthly settings for URL recurring

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

    weekly GetExternalDynamicListListDataTypeUrlRecurringWeekly

    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.

    GetExternalDynamicListListDataTypeUrlRecurringDaily

    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

    GetExternalDynamicListListDataTypeUrlRecurringMonthly

    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

    GetExternalDynamicListListDataTypeUrlRecurringWeekly

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

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate