1. Packages
  2. Strata Cloud Manager (Palo Alto SCM)
  3. API Docs
  4. getExternalDynamicListList
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

scm.getExternalDynamicListList

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = scm.getExternalDynamicListList({
        folder: "Shared",
    });
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.get_external_dynamic_list_list(folder="Shared")
    
    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 {
    		_, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
    			Folder: pulumi.StringRef("Shared"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Scm.GetExternalDynamicListList.Invoke(new()
        {
            Folder = "Shared",
        });
    
    });
    
    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) {
            final var example = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
                .folder("Shared")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: scm:getExternalDynamicListList
          Arguments:
            folder: Shared
    

    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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: scm:index/getExternalDynamicListList:getExternalDynamicListList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The Device param.
    Folder string
    The Folder param.
    Limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    Name string
    The Name param.
    Offset int
    The Offset param. Default: 0.
    Snippet string
    The Snippet param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    Name string
    The Name param.
    Offset int
    The Offset param. Default: 0.
    Snippet string
    The Snippet param.
    device String
    The Device param.
    folder String
    The Folder param.
    limit Integer
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    name String
    The Name param.
    offset Integer
    The Offset param. Default: 0.
    snippet String
    The Snippet param.
    device string
    The Device param.
    folder string
    The Folder param.
    limit number
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    name string
    The Name param.
    offset number
    The Offset param. Default: 0.
    snippet string
    The Snippet param.
    device str
    The Device param.
    folder str
    The Folder param.
    limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    name str
    The Name param.
    offset int
    The Offset param. Default: 0.
    snippet str
    The Snippet param.
    device String
    The Device param.
    folder String
    The Folder param.
    limit Number
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    name String
    The Name param.
    offset Number
    The Offset param. Default: 0.
    snippet String
    The Snippet param.

    getExternalDynamicListList Result

    The following output properties are available:

    Datas List<GetExternalDynamicListListData>
    The Data param.
    Id string
    The provider-assigned unique ID for this managed resource.
    Limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    Offset int
    The Offset param. Default: 0.
    Tfid string
    Total int
    The Total param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Snippet string
    The Snippet param.
    Datas []GetExternalDynamicListListData
    The Data param.
    Id string
    The provider-assigned unique ID for this managed resource.
    Limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    Offset int
    The Offset param. Default: 0.
    Tfid string
    Total int
    The Total param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    The Name param.
    Snippet string
    The Snippet param.
    datas List<GetExternalDynamicListListData>
    The Data param.
    id String
    The provider-assigned unique ID for this managed resource.
    limit Integer
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    offset Integer
    The Offset param. Default: 0.
    tfid String
    total Integer
    The Total param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    snippet String
    The Snippet param.
    datas GetExternalDynamicListListData[]
    The Data param.
    id string
    The provider-assigned unique ID for this managed resource.
    limit number
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    offset number
    The Offset param. Default: 0.
    tfid string
    total number
    The Total param.
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    The Name param.
    snippet string
    The Snippet param.
    datas Sequence[GetExternalDynamicListListData]
    The Data param.
    id str
    The provider-assigned unique ID for this managed resource.
    limit int
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    offset int
    The Offset param. Default: 0.
    tfid str
    total int
    The Total param.
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    The Name param.
    snippet str
    The Snippet param.
    datas List<Property Map>
    The Data param.
    id String
    The provider-assigned unique ID for this managed resource.
    limit Number
    The Limit param. A limit of -1 will return all configured items. Default: 200.
    offset Number
    The Offset param. Default: 0.
    tfid String
    total Number
    The Total param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    The Name param.
    snippet String
    The Snippet param.

    Supporting Types

    GetExternalDynamicListListData

    Id string
    UUID of the resource.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    Type GetExternalDynamicListListDataType
    The Type param.
    Id string
    UUID of the resource.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    Type GetExternalDynamicListListDataType
    The Type param.
    id String
    UUID of the resource.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    type GetExternalDynamicListListDataType
    The Type param.
    id string
    UUID of the resource.
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    type GetExternalDynamicListListDataType
    The Type param.
    id str
    UUID of the resource.
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    type GetExternalDynamicListListDataType
    The Type param.
    id String
    UUID of the resource.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    type Property Map
    The Type param.

    GetExternalDynamicListListDataType

    domain Property Map
    The Domain param.
    imei Property Map
    The Imei param.
    imsi Property Map
    The Imsi param.
    ip Property Map
    The Ip param.
    predefinedIp Property Map
    The PredefinedIp param.
    predefinedUrl Property Map
    The PredefinedUrl param.
    url Property Map
    The Url param.

    GetExternalDynamicListListDataTypeDomain

    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    DomainAuth GetExternalDynamicListListDataTypeDomainDomainAuth
    The DomainAuth param.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ExpandDomain bool
    Enable/Disable expand domain. Default: false.
    Recurring GetExternalDynamicListListDataTypeDomainRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    DomainAuth GetExternalDynamicListListDataTypeDomainDomainAuth
    The DomainAuth param.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ExpandDomain bool
    Enable/Disable expand domain. Default: false.
    Recurring GetExternalDynamicListListDataTypeDomainRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    domainAuth GetExternalDynamicListListDataTypeDomainDomainAuth
    The DomainAuth param.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    expandDomain Boolean
    Enable/Disable expand domain. Default: false.
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile string
    Profile for authenticating client certificates. Default: "None".
    description string
    The Description param. String length must not exceed 255 characters.
    domainAuth GetExternalDynamicListListDataTypeDomainDomainAuth
    The DomainAuth param.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    expandDomain boolean
    Enable/Disable expand domain. Default: false.
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    The Recurring param.
    url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificate_profile str
    Profile for authenticating client certificates. Default: "None".
    description str
    The Description param. String length must not exceed 255 characters.
    domain_auth GetExternalDynamicListListDataTypeDomainDomainAuth
    The DomainAuth param.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    expand_domain bool
    Enable/Disable expand domain. Default: false.
    recurring GetExternalDynamicListListDataTypeDomainRecurring
    The Recurring param.
    url str
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    domainAuth Property Map
    The DomainAuth param.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    expandDomain Boolean
    Enable/Disable expand domain. Default: false.
    recurring Property Map
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".

    GetExternalDynamicListListDataTypeDomainDomainAuth

    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.
    password string
    The Password param. String length must not exceed 255 characters.
    username string
    The Username param. String length must be between 1 and 255 characters.
    password str
    The Password param. String length must not exceed 255 characters.
    username str
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.

    GetExternalDynamicListListDataTypeDomainRecurring

    daily Property Map
    The Daily param.
    fiveMinute Boolean
    The FiveMinute param.
    hourly Boolean
    The Hourly param.
    monthly Property Map
    The Monthly param.
    weekly Property Map
    The Weekly param.

    GetExternalDynamicListListDataTypeDomainRecurringDaily

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".

    GetExternalDynamicListListDataTypeDomainRecurringMonthly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Integer
    The DayOfMonth param. Value must be between 1 and 31.
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth number
    The DayOfMonth param. Value must be between 1 and 31.
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_month int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Number
    The DayOfMonth param. Value must be between 1 and 31.

    GetExternalDynamicListListDataTypeDomainRecurringWeekly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_week str
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".

    GetExternalDynamicListListDataTypeImei

    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    ImeiAuth GetExternalDynamicListListDataTypeImeiImeiAuth
    The ImeiAuth param.
    Recurring GetExternalDynamicListListDataTypeImeiRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    ImeiAuth GetExternalDynamicListListDataTypeImeiImeiAuth
    The ImeiAuth param.
    Recurring GetExternalDynamicListListDataTypeImeiRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    imeiAuth GetExternalDynamicListListDataTypeImeiImeiAuth
    The ImeiAuth param.
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile string
    Profile for authenticating client certificates. Default: "None".
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    imeiAuth GetExternalDynamicListListDataTypeImeiImeiAuth
    The ImeiAuth param.
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    The Recurring param.
    url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificate_profile str
    Profile for authenticating client certificates. Default: "None".
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    imei_auth GetExternalDynamicListListDataTypeImeiImeiAuth
    The ImeiAuth param.
    recurring GetExternalDynamicListListDataTypeImeiRecurring
    The Recurring param.
    url str
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 32 characters.
    imeiAuth Property Map
    The ImeiAuth param.
    recurring Property Map
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".

    GetExternalDynamicListListDataTypeImeiImeiAuth

    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.
    password string
    The Password param. String length must not exceed 255 characters.
    username string
    The Username param. String length must be between 1 and 255 characters.
    password str
    The Password param. String length must not exceed 255 characters.
    username str
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.

    GetExternalDynamicListListDataTypeImeiRecurring

    daily Property Map
    The Daily param.
    fiveMinute Boolean
    The FiveMinute param.
    hourly Boolean
    The Hourly param.
    monthly Property Map
    The Monthly param.
    weekly Property Map
    The Weekly param.

    GetExternalDynamicListListDataTypeImeiRecurringDaily

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".

    GetExternalDynamicListListDataTypeImeiRecurringMonthly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Integer
    The DayOfMonth param. Value must be between 1 and 31.
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth number
    The DayOfMonth param. Value must be between 1 and 31.
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_month int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Number
    The DayOfMonth param. Value must be between 1 and 31.

    GetExternalDynamicListListDataTypeImeiRecurringWeekly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_week str
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".

    GetExternalDynamicListListDataTypeImsi

    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    ImsiAuth GetExternalDynamicListListDataTypeImsiImsiAuth
    The ImsiAuth param.
    Recurring GetExternalDynamicListListDataTypeImsiRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    ImsiAuth GetExternalDynamicListListDataTypeImsiImsiAuth
    The ImsiAuth param.
    Recurring GetExternalDynamicListListDataTypeImsiRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    imsiAuth GetExternalDynamicListListDataTypeImsiImsiAuth
    The ImsiAuth param.
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile string
    Profile for authenticating client certificates. Default: "None".
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    imsiAuth GetExternalDynamicListListDataTypeImsiImsiAuth
    The ImsiAuth param.
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    The Recurring param.
    url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificate_profile str
    Profile for authenticating client certificates. Default: "None".
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    imsi_auth GetExternalDynamicListListDataTypeImsiImsiAuth
    The ImsiAuth param.
    recurring GetExternalDynamicListListDataTypeImsiRecurring
    The Recurring param.
    url str
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 34 characters.
    imsiAuth Property Map
    The ImsiAuth param.
    recurring Property Map
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".

    GetExternalDynamicListListDataTypeImsiImsiAuth

    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.
    password string
    The Password param. String length must not exceed 255 characters.
    username string
    The Username param. String length must be between 1 and 255 characters.
    password str
    The Password param. String length must not exceed 255 characters.
    username str
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.

    GetExternalDynamicListListDataTypeImsiRecurring

    daily Property Map
    The Daily param.
    fiveMinute Boolean
    The FiveMinute param.
    hourly Boolean
    The Hourly param.
    monthly Property Map
    The Monthly param.
    weekly Property Map
    The Weekly param.

    GetExternalDynamicListListDataTypeImsiRecurringDaily

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".

    GetExternalDynamicListListDataTypeImsiRecurringMonthly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Integer
    The DayOfMonth param. Value must be between 1 and 31.
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth number
    The DayOfMonth param. Value must be between 1 and 31.
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_month int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Number
    The DayOfMonth param. Value must be between 1 and 31.

    GetExternalDynamicListListDataTypeImsiRecurringWeekly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_week str
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".

    GetExternalDynamicListListDataTypeIp

    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    IpAuth GetExternalDynamicListListDataTypeIpIpAuth
    The IpAuth param.
    Recurring GetExternalDynamicListListDataTypeIpRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    IpAuth GetExternalDynamicListListDataTypeIpIpAuth
    The IpAuth param.
    Recurring GetExternalDynamicListListDataTypeIpRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ipAuth GetExternalDynamicListListDataTypeIpIpAuth
    The IpAuth param.
    recurring GetExternalDynamicListListDataTypeIpRecurring
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile string
    Profile for authenticating client certificates. Default: "None".
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ipAuth GetExternalDynamicListListDataTypeIpIpAuth
    The IpAuth param.
    recurring GetExternalDynamicListListDataTypeIpRecurring
    The Recurring param.
    url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificate_profile str
    Profile for authenticating client certificates. Default: "None".
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ip_auth GetExternalDynamicListListDataTypeIpIpAuth
    The IpAuth param.
    recurring GetExternalDynamicListListDataTypeIpRecurring
    The Recurring param.
    url str
    The Url param. String length must not exceed 255 characters. Default: "http://".
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    ipAuth Property Map
    The IpAuth param.
    recurring Property Map
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".

    GetExternalDynamicListListDataTypeIpIpAuth

    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.
    password string
    The Password param. String length must not exceed 255 characters.
    username string
    The Username param. String length must be between 1 and 255 characters.
    password str
    The Password param. String length must not exceed 255 characters.
    username str
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.

    GetExternalDynamicListListDataTypeIpRecurring

    daily Property Map
    The Daily param.
    fiveMinute Boolean
    The FiveMinute param.
    hourly Boolean
    The Hourly param.
    monthly Property Map
    The Monthly param.
    weekly Property Map
    The Weekly param.

    GetExternalDynamicListListDataTypeIpRecurringDaily

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".

    GetExternalDynamicListListDataTypeIpRecurringMonthly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Integer
    The DayOfMonth param. Value must be between 1 and 31.
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth number
    The DayOfMonth param. Value must be between 1 and 31.
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_month int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Number
    The DayOfMonth param. Value must be between 1 and 31.

    GetExternalDynamicListListDataTypeIpRecurringWeekly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_week str
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".

    GetExternalDynamicListListDataTypePredefinedIp

    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Url string
    The Url param.
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Url string
    The Url param.
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url String
    The Url param.
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url string
    The Url param.
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url str
    The Url param.
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url String
    The Url param.

    GetExternalDynamicListListDataTypePredefinedUrl

    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Url string
    The Url param.
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Url string
    The Url param.
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url String
    The Url param.
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url string
    The Url param.
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url str
    The Url param.
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    url String
    The Url param.

    GetExternalDynamicListListDataTypeUrl

    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists List<string>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Recurring GetExternalDynamicListListDataTypeUrlRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    UrlAuth GetExternalDynamicListListDataTypeUrlUrlAuth
    The UrlAuth param.
    CertificateProfile string
    Profile for authenticating client certificates. Default: "None".
    Description string
    The Description param. String length must not exceed 255 characters.
    ExceptionLists []string
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    Recurring GetExternalDynamicListListDataTypeUrlRecurring
    The Recurring param.
    Url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    UrlAuth GetExternalDynamicListListDataTypeUrlUrlAuth
    The UrlAuth param.
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    urlAuth GetExternalDynamicListListDataTypeUrlUrlAuth
    The UrlAuth param.
    certificateProfile string
    Profile for authenticating client certificates. Default: "None".
    description string
    The Description param. String length must not exceed 255 characters.
    exceptionLists string[]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    The Recurring param.
    url string
    The Url param. String length must not exceed 255 characters. Default: "http://".
    urlAuth GetExternalDynamicListListDataTypeUrlUrlAuth
    The UrlAuth param.
    certificate_profile str
    Profile for authenticating client certificates. Default: "None".
    description str
    The Description param. String length must not exceed 255 characters.
    exception_lists Sequence[str]
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    recurring GetExternalDynamicListListDataTypeUrlRecurring
    The Recurring param.
    url str
    The Url param. String length must not exceed 255 characters. Default: "http://".
    url_auth GetExternalDynamicListListDataTypeUrlUrlAuth
    The UrlAuth param.
    certificateProfile String
    Profile for authenticating client certificates. Default: "None".
    description String
    The Description param. String length must not exceed 255 characters.
    exceptionLists List<String>
    The ExceptionList param. Individual elements in this list are subject to additional validation. String length must not exceed 255 characters.
    recurring Property Map
    The Recurring param.
    url String
    The Url param. String length must not exceed 255 characters. Default: "http://".
    urlAuth Property Map
    The UrlAuth param.

    GetExternalDynamicListListDataTypeUrlRecurring

    daily Property Map
    The Daily param.
    fiveMinute Boolean
    The FiveMinute param.
    hourly Boolean
    The Hourly param.
    monthly Property Map
    The Monthly param.
    weekly Property Map
    The Weekly param.

    GetExternalDynamicListListDataTypeUrlRecurringDaily

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".

    GetExternalDynamicListListDataTypeUrlRecurringMonthly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfMonth int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Integer
    The DayOfMonth param. Value must be between 1 and 31.
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth number
    The DayOfMonth param. Value must be between 1 and 31.
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_month int
    The DayOfMonth param. Value must be between 1 and 31.
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfMonth Number
    The DayOfMonth param. Value must be between 1 and 31.

    GetExternalDynamicListListDataTypeUrlRecurringWeekly

    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    At string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    DayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at string
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek string
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at str
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    day_of_week str
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".
    at String
    Time specification hh (e.g. 20). String length must be between 2 and 2 characters. String validation regex: ([01][0-9]|[2][0-3]). Default: "00".
    dayOfWeek String
    The DayOfWeek param. String must be one of these: "sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday".

    GetExternalDynamicListListDataTypeUrlUrlAuth

    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    Password string
    The Password param. String length must not exceed 255 characters.
    Username string
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.
    password string
    The Password param. String length must not exceed 255 characters.
    username string
    The Username param. String length must be between 1 and 255 characters.
    password str
    The Password param. String length must not exceed 255 characters.
    username str
    The Username param. String length must be between 1 and 255 characters.
    password String
    The Password param. String length must not exceed 255 characters.
    username String
    The Username param. String length must be between 1 and 255 characters.

    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.1.4 published on Tuesday, Sep 24, 2024 by Pulumi