ExternalDynamicList data source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Data source to look up a single external dynamic list by its ID.
const scmExternalDynamicListDs = scm.getExternalDynamicList({
id: "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
});
export const externalDynamicListDetails = {
id: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.id),
name: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.name),
folder: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.folder),
description: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.description),
url: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.url),
recurring: scmExternalDynamicListDs.then(scmExternalDynamicListDs => scmExternalDynamicListDs.type?.domain?.recurring),
};
import pulumi
import pulumi_scm as scm
# Data source to look up a single external dynamic list by its ID.
scm_external_dynamic_list_ds = scm.get_external_dynamic_list(id="ce39b7b5-f5bc-4276-9fe5-be56613e37ad")
pulumi.export("externalDynamicListDetails", {
"id": scm_external_dynamic_list_ds.id,
"name": scm_external_dynamic_list_ds.name,
"folder": scm_external_dynamic_list_ds.folder,
"description": scm_external_dynamic_list_ds.type.domain.description,
"url": scm_external_dynamic_list_ds.type.domain.url,
"recurring": scm_external_dynamic_list_ds.type.domain.recurring,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Data source to look up a single external dynamic list by its ID.
scmExternalDynamicListDs, err := scm.LookupExternalDynamicList(ctx, &scm.LookupExternalDynamicListArgs{
Id: "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
}, nil)
if err != nil {
return err
}
ctx.Export("externalDynamicListDetails", pulumi.Map{
"id": scmExternalDynamicListDs.Id,
"name": scmExternalDynamicListDs.Name,
"folder": scmExternalDynamicListDs.Folder,
"description": scmExternalDynamicListDs.Type.Domain.Description,
"url": scmExternalDynamicListDs.Type.Domain.Url,
"recurring": scmExternalDynamicListDs.Type.Domain.Recurring,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Data source to look up a single external dynamic list by its ID.
var scmExternalDynamicListDs = Scm.GetExternalDynamicList.Invoke(new()
{
Id = "ce39b7b5-f5bc-4276-9fe5-be56613e37ad",
});
return new Dictionary<string, object?>
{
["externalDynamicListDetails"] =
{
{ "id", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Id) },
{ "name", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Name) },
{ "folder", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Folder) },
{ "description", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Description) },
{ "url", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Url) },
{ "recurring", scmExternalDynamicListDs.Apply(getExternalDynamicListResult => getExternalDynamicListResult.Type?.Domain?.Recurring) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetExternalDynamicListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Data source to look up a single external dynamic list by its ID.
final var scmExternalDynamicListDs = ScmFunctions.getExternalDynamicList(GetExternalDynamicListArgs.builder()
.id("ce39b7b5-f5bc-4276-9fe5-be56613e37ad")
.build());
ctx.export("externalDynamicListDetails", Map.ofEntries(
Map.entry("id", scmExternalDynamicListDs.id()),
Map.entry("name", scmExternalDynamicListDs.name()),
Map.entry("folder", scmExternalDynamicListDs.folder()),
Map.entry("description", scmExternalDynamicListDs.type().domain().description()),
Map.entry("url", scmExternalDynamicListDs.type().domain().url()),
Map.entry("recurring", scmExternalDynamicListDs.type().domain().recurring())
));
}
}
variables:
# Data source to look up a single external dynamic list by its ID.
scmExternalDynamicListDs:
fn::invoke:
function: scm:getExternalDynamicList
arguments:
id: ce39b7b5-f5bc-4276-9fe5-be56613e37ad
outputs:
# Output the details of the looked-up external dynamic list.
externalDynamicListDetails:
id: ${scmExternalDynamicListDs.id}
name: ${scmExternalDynamicListDs.name}
folder: ${scmExternalDynamicListDs.folder}
description: ${scmExternalDynamicListDs.type.domain.description}
url: ${scmExternalDynamicListDs.type.domain.url}
recurring: ${scmExternalDynamicListDs.type.domain.recurring}
Using getExternalDynamicList
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getExternalDynamicList(args: GetExternalDynamicListArgs, opts?: InvokeOptions): Promise<GetExternalDynamicListResult>
function getExternalDynamicListOutput(args: GetExternalDynamicListOutputArgs, opts?: InvokeOptions): Output<GetExternalDynamicListResult>def get_external_dynamic_list(device: Optional[str] = None,
folder: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetExternalDynamicListResult
def get_external_dynamic_list_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetExternalDynamicListResult]func LookupExternalDynamicList(ctx *Context, args *LookupExternalDynamicListArgs, opts ...InvokeOption) (*LookupExternalDynamicListResult, error)
func LookupExternalDynamicListOutput(ctx *Context, args *LookupExternalDynamicListOutputArgs, opts ...InvokeOption) LookupExternalDynamicListResultOutput> Note: This function is named LookupExternalDynamicList in the Go SDK.
public static class GetExternalDynamicList
{
public static Task<GetExternalDynamicListResult> InvokeAsync(GetExternalDynamicListArgs args, InvokeOptions? opts = null)
public static Output<GetExternalDynamicListResult> Invoke(GetExternalDynamicListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetExternalDynamicListResult> getExternalDynamicList(GetExternalDynamicListArgs args, InvokeOptions options)
public static Output<GetExternalDynamicListResult> getExternalDynamicList(GetExternalDynamicListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getExternalDynamicList:getExternalDynamicList
arguments:
# arguments dictionaryThe following arguments are supported:
getExternalDynamicList Result
The following output properties are available:
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Folder string
- Id string
- The UUID of the external dynamic list
- Name string
- Snippet string
- Tfid string
- Type
Get
External Dynamic List Type
- Device string
- The device in which the resource is defined
- Encrypted
Values map[string]string - Folder string
- Id string
- The UUID of the external dynamic list
- Name string
- Snippet string
- Tfid string
- Type
Get
External Dynamic List Type
- device String
- The device in which the resource is defined
- encrypted
Values Map<String,String> - folder String
- id String
- The UUID of the external dynamic list
- name String
- snippet String
- tfid String
- type
Get
External Dynamic List Type
- device string
- The device in which the resource is defined
- encrypted
Values {[key: string]: string} - folder string
- id string
- The UUID of the external dynamic list
- name string
- snippet string
- tfid string
- type
Get
External Dynamic List Type
- device str
- The device in which the resource is defined
- encrypted_
values Mapping[str, str] - folder str
- id str
- The UUID of the external dynamic list
- name str
- snippet str
- tfid str
- type
Get
External Dynamic List Type
- device String
- The device in which the resource is defined
- encrypted
Values Map<String> - folder String
- id String
- The UUID of the external dynamic list
- name String
- snippet String
- tfid String
- type Property Map
Supporting Types
GetExternalDynamicListType
- Domain
Get
External Dynamic List Type Domain - Domain settings for Custom Domain type
- Imei
Get
External Dynamic List Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Imsi
Get
External Dynamic List Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Ip
Get
External Dynamic List Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Ip GetExternal Dynamic List Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Url GetExternal Dynamic List Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Url
Get
External Dynamic List Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- Domain
Get
External Dynamic List Type Domain - Domain settings for Custom Domain type
- Imei
Get
External Dynamic List Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Imsi
Get
External Dynamic List Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Ip
Get
External Dynamic List Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Ip GetExternal Dynamic List Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Url GetExternal Dynamic List Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Url
Get
External Dynamic List Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Ip GetExternal Dynamic List Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Url GetExternal Dynamic List Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Ip GetExternal Dynamic List Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Url GetExternal Dynamic List Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined_
ip GetExternal Dynamic List Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined_
url GetExternal Dynamic List Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- 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, andurl.- imsi Property Map
IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip Property Map
IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Ip Property Map Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Url Property Map Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url Property Map
URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
GetExternalDynamicListTypeDomain
- Auth
Get
External Dynamic List Type Domain Auth - Authentication settings for Custom Domain type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - Domain Exception List for Custom Domain type
- Expand
Domain bool - Enable/Disable expand domain
- Recurring
Get
External Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- Auth
Get
External Dynamic List Type Domain Auth - Authentication settings for Custom Domain type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - Domain Exception List for Custom Domain type
- Expand
Domain bool - Enable/Disable expand domain
- Recurring
Get
External Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- auth
Get
External Dynamic List Type Domain Auth - Authentication settings for Custom Domain type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - Domain Exception List for Custom Domain type
- expand
Domain Boolean - Enable/Disable expand domain
- recurring
Get
External Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
- auth
Get
External Dynamic List Type Domain Auth - Authentication settings for Custom Domain type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - Domain Exception List for Custom Domain type
- expand
Domain boolean - Enable/Disable expand domain
- recurring
Get
External Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url string
- External URL for Custom Domain type
- auth
Get
External Dynamic List Type Domain Auth - 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
Get
External Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url str
- External URL for Custom Domain type
- auth Property Map
- Authentication settings for Custom Domain type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - Domain Exception List for Custom Domain type
- expand
Domain Boolean - Enable/Disable expand domain
- recurring Property Map
- Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
GetExternalDynamicListTypeDomainAuth
GetExternalDynamicListTypeDomainRecurring
- Daily
Get
External Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute GetExternal Dynamic List Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute GetExternal Dynamic List Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute GetExternal Dynamic List Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute GetExternal Dynamic List Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five_
minute GetExternal Dynamic List Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily Property Map
- Daily settings for Domain recurring
- five
Minute Property Map Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly Property Map
Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly Property Map
Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly Property Map
Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
GetExternalDynamicListTypeDomainRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for Domain
- At string
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
- at string
- Daily Time specification hh (e.g. 20) for Domain
- at str
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
GetExternalDynamicListTypeDomainRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for domain
- Day
Of intMonth - Day setting for monthly Domain updates
- At string
- Monthly Time specification hh (e.g. 20) for domain
- Day
Of intMonth - Day setting for monthly Domain updates
- at String
- Monthly Time specification hh (e.g. 20) for domain
- day
Of IntegerMonth - Day setting for monthly Domain updates
- at string
- Monthly Time specification hh (e.g. 20) for domain
- day
Of numberMonth - Day setting for monthly Domain updates
- at str
- Monthly Time specification hh (e.g. 20) for domain
- day_
of_ intmonth - Day setting for monthly Domain updates
- at String
- Monthly Time specification hh (e.g. 20) for domain
- day
Of NumberMonth - Day setting for monthly Domain updates
GetExternalDynamicListTypeDomainRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for Domain
- day_
of_ strweek - Day of week
GetExternalDynamicListTypeImei
- Auth
Get
External Dynamic List Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- Certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- Description string
- IMEI Description for Custom IMEI type
- Exception
Lists List<string> - IMEI Exception List for Custom IMEI type
- Recurring
Get
External Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- Auth
Get
External Dynamic List Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- Certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- Description string
- IMEI Description for Custom IMEI type
- Exception
Lists []string - IMEI Exception List for Custom IMEI type
- Recurring
Get
External Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile String - IMEI Certificate Profile for Custom IMEI type
- description String
- IMEI Description for Custom IMEI type
- exception
Lists List<String> - IMEI Exception List for Custom IMEI type
- recurring
Get
External Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- description string
- IMEI Description for Custom IMEI type
- exception
Lists string[] - IMEI Exception List for Custom IMEI type
- recurring
Get
External Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url string
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List Type Imei Auth - 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
Get
External Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url str
- IMEI URL for Custom IMEI type
- auth Property Map
- IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile String - IMEI Certificate Profile for Custom IMEI type
- description String
- IMEI Description for Custom IMEI type
- exception
Lists List<String> - IMEI Exception List for Custom IMEI type
- recurring Property Map
- Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
GetExternalDynamicListTypeImeiAuth
GetExternalDynamicListTypeImeiRecurring
- Daily
Get
External Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute GetExternal Dynamic List Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute GetExternal Dynamic List Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute GetExternal Dynamic List Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute GetExternal Dynamic List Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five_
minute GetExternal Dynamic List Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily Property Map
- Daily interval settings for IMEI updates
- five
Minute Property Map Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly Property Map
Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly Property Map
Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly Property Map
Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
GetExternalDynamicListTypeImeiRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
- at string
- Daily Time specification hh (e.g. 20) for IMEI
- at str
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
GetExternalDynamicListTypeImeiRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IMEI
- Day
Of intMonth - Day of month for IMEI updates
- At string
- Monthly Time specification hh (e.g. 20) for IMEI
- Day
Of intMonth - Day of month for IMEI updates
- at String
- Monthly Time specification hh (e.g. 20) for IMEI
- day
Of IntegerMonth - Day of month for IMEI updates
- at string
- Monthly Time specification hh (e.g. 20) for IMEI
- day
Of numberMonth - Day of month for IMEI updates
- at str
- Monthly Time specification hh (e.g. 20) for IMEI
- day_
of_ intmonth - Day of month for IMEI updates
- at String
- Monthly Time specification hh (e.g. 20) for IMEI
- day
Of NumberMonth - Day of month for IMEI updates
GetExternalDynamicListTypeImeiRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IMEI
- day_
of_ strweek - Day of week
GetExternalDynamicListTypeImsi
- Auth
Get
External Dynamic List Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- Certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- Description string
- IMSI Description for Custom IMSI type
- Exception
Lists List<string> - IMSI Exception List for Custom IMSI type
- Recurring
Get
External Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- Auth
Get
External Dynamic List Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- Certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- Description string
- IMSI Description for Custom IMSI type
- Exception
Lists []string - IMSI Exception List for Custom IMSI type
- Recurring
Get
External Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- certificate
Profile String - IMSI Certificate Profile for Custom IMSI type
- description String
- IMSI Description for Custom IMSI type
- exception
Lists List<String> - IMSI Exception List for Custom IMSI type
- recurring
Get
External Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- description string
- IMSI Description for Custom IMSI type
- exception
Lists string[] - IMSI Exception List for Custom IMSI type
- recurring
Get
External Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url string
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List Type Imsi Auth - 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
Get
External Dynamic List Type Imsi Recurring - 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
- certificate
Profile String - IMSI Certificate Profile for Custom IMSI type
- description String
- IMSI Description for Custom IMSI type
- exception
Lists List<String> - IMSI Exception List for Custom IMSI type
- recurring Property Map
- IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
GetExternalDynamicListTypeImsiAuth
GetExternalDynamicListTypeImsiRecurring
- Daily
Get
External Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute GetExternal Dynamic List Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute GetExternal Dynamic List Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute GetExternal Dynamic List Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute GetExternal Dynamic List Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five_
minute GetExternal Dynamic List Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily Property Map
- Daily interval settings for IMSI updates
- five
Minute Property Map Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly Property Map
Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly Property Map
Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly Property Map
Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
GetExternalDynamicListTypeImsiRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
- at string
- Daily Time specification hh (e.g. 20) for IMSI
- at str
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
GetExternalDynamicListTypeImsiRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IMSI
- Day
Of intMonth - Day of the month for monthly IMSI updates
- At string
- Monthly Time specification hh (e.g. 20) for IMSI
- Day
Of intMonth - Day of the month for monthly IMSI updates
- at String
- Monthly Time specification hh (e.g. 20) for IMSI
- day
Of IntegerMonth - Day of the month for monthly IMSI updates
- at string
- Monthly Time specification hh (e.g. 20) for IMSI
- day
Of numberMonth - Day of the month for monthly IMSI updates
- at str
- Monthly Time specification hh (e.g. 20) for IMSI
- day_
of_ intmonth - Day of the month for monthly IMSI updates
- at String
- Monthly Time specification hh (e.g. 20) for IMSI
- day
Of NumberMonth - Day of the month for monthly IMSI updates
GetExternalDynamicListTypeImsiRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IMSI
- day_
of_ strweek - Day of week
GetExternalDynamicListTypeIp
- Auth
Get
External Dynamic List Type Ip Auth - Authentication settings for Custom IP type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - IP Exception List for Custom IP type
- Recurring
Get
External Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- Auth
Get
External Dynamic List Type Ip Auth - Authentication settings for Custom IP type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - IP Exception List for Custom IP type
- Recurring
Get
External Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- auth
Get
External Dynamic List Type Ip Auth - Authentication settings for Custom IP type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - IP Exception List for Custom IP type
- recurring
Get
External Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
- auth
Get
External Dynamic List Type Ip Auth - Authentication settings for Custom IP type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - IP Exception List for Custom IP type
- recurring
Get
External Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url string
- External URL for Custom IP type
- auth
Get
External Dynamic List Type Ip Auth - 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
Get
External Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url str
- External URL for Custom IP type
- auth Property Map
- Authentication settings for Custom IP type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - IP Exception List for Custom IP type
- recurring Property Map
- Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
GetExternalDynamicListTypeIpAuth
GetExternalDynamicListTypeIpRecurring
- Daily
Get
External Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute GetExternal Dynamic List Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute GetExternal Dynamic List Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute GetExternal Dynamic List Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute GetExternal Dynamic List Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five_
minute GetExternal Dynamic List Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily Property Map
- Daily settings for IP recurring
- five
Minute Property Map Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly Property Map
Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly Property Map
Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly Property Map
Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
GetExternalDynamicListTypeIpRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IP
- At string
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
- at string
- Daily Time specification hh (e.g. 20) for IP
- at str
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
GetExternalDynamicListTypeIpRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IP
- Day
Of intMonth - Day setting for monthly IP updates
- At string
- Monthly Time specification hh (e.g. 20) for IP
- Day
Of intMonth - Day setting for monthly IP updates
- at String
- Monthly Time specification hh (e.g. 20) for IP
- day
Of IntegerMonth - Day setting for monthly IP updates
- at string
- Monthly Time specification hh (e.g. 20) for IP
- day
Of numberMonth - Day setting for monthly IP updates
- at str
- Monthly Time specification hh (e.g. 20) for IP
- day_
of_ intmonth - Day setting for monthly IP updates
- at String
- Monthly Time specification hh (e.g. 20) for IP
- day
Of NumberMonth - Day setting for monthly IP updates
GetExternalDynamicListTypeIpRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IP
- day_
of_ strweek - Day of week
GetExternalDynamicListTypePredefinedIp
- Description string
- Description
- Exception
Lists List<string> - IP Exception List for Predefined IP type
- Url string
- URL source for Predefined IP type
- Description string
- Description
- Exception
Lists []string - IP Exception List for Predefined IP type
- Url string
- URL source for Predefined IP type
- description String
- Description
- exception
Lists List<String> - IP Exception List for Predefined IP type
- url String
- URL source for Predefined IP type
- description string
- Description
- exception
Lists 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
- exception
Lists List<String> - IP Exception List for Predefined IP type
- url String
- URL source for Predefined IP type
GetExternalDynamicListTypePredefinedUrl
- Description string
- Description
- Exception
Lists List<string> - URL Exception List for Predefined URL type
- Url string
- URL source for Predefined URL type
- Description string
- Description
- Exception
Lists []string - URL Exception List for Predefined URL type
- Url string
- URL source for Predefined URL type
- description String
- Description
- exception
Lists List<String> - URL Exception List for Predefined URL type
- url String
- URL source for Predefined URL type
- description string
- Description
- exception
Lists 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
- exception
Lists List<String> - URL Exception List for Predefined URL type
- url String
- URL source for Predefined URL type
GetExternalDynamicListTypeUrl
- Auth
Get
External Dynamic List Type Url Auth - Authentication settings for Custom URL type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - URL Exception List for Custom URL type
- Recurring
Get
External Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- Auth
Get
External Dynamic List Type Url Auth - Authentication settings for Custom URL type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - URL Exception List for Custom URL type
- Recurring
Get
External Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- auth
Get
External Dynamic List Type Url Auth - Authentication settings for Custom URL type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - URL Exception List for Custom URL type
- recurring
Get
External Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
- auth
Get
External Dynamic List Type Url Auth - Authentication settings for Custom URL type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - URL Exception List for Custom URL type
- recurring
Get
External Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url string
- External URL for Custom URL type
- auth
Get
External Dynamic List Type Url Auth - 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
Get
External Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url str
- External URL for Custom URL type
- auth Property Map
- Authentication settings for Custom URL type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - URL Exception List for Custom URL type
- recurring Property Map
- Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
GetExternalDynamicListTypeUrlAuth
GetExternalDynamicListTypeUrlRecurring
- Daily
Get
External Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute GetExternal Dynamic List Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute GetExternal Dynamic List Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute GetExternal Dynamic List Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute GetExternal Dynamic List Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five_
minute GetExternal Dynamic List Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily Property Map
- Daily settings for URL recurring
- five
Minute Property Map Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly Property Map
Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly Property Map
Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly Property Map
Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
GetExternalDynamicListTypeUrlRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for URL
- At string
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
- at string
- Daily Time specification hh (e.g. 20) for URL
- at str
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
GetExternalDynamicListTypeUrlRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for URL
- Day
Of intMonth - Day setting for monthly URL updates
- At string
- Monthly Time specification hh (e.g. 20) for URL
- Day
Of intMonth - Day setting for monthly URL updates
- at String
- Monthly Time specification hh (e.g. 20) for URL
- day
Of IntegerMonth - Day setting for monthly URL updates
- at string
- Monthly Time specification hh (e.g. 20) for URL
- day
Of numberMonth - Day setting for monthly URL updates
- at str
- Monthly Time specification hh (e.g. 20) for URL
- day_
of_ intmonth - Day setting for monthly URL updates
- at String
- Monthly Time specification hh (e.g. 20) for URL
- day
Of NumberMonth - Day setting for monthly URL updates
GetExternalDynamicListTypeUrlRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for URL
- day_
of_ strweek - Day of week
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
