ExternalDynamicList resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// This resource creates a domain-based External Dynamic List (EDL).
// The EDL will fetch a list of domains from the specified URL daily.
const scmEdl1 = new scm.ExternalDynamicList("scm_edl_1", {
folder: "All",
name: "scm_edl_1",
type: {
domain: {
description: "List of malicious domains to block, updated daily.",
url: "http://some-threat-feed.com/domains.txt",
recurring: {
daily: {
at: "03",
},
},
},
},
});
const scmEdl2 = new scm.ExternalDynamicList("scm_edl_2", {
folder: "All",
name: "scm_edl_2",
type: {
ip: {
description: "IP threat feed with basic auth, updated hourly.",
url: "https://threats.example.com/ips.txt",
recurring: {
hourly: {},
},
},
},
});
const scmEdl3 = new scm.ExternalDynamicList("scm_edl_3", {
folder: "All",
name: "scm_edl_3",
type: {
url: {
description: "List of phishing URLs, updated every Monday at 2 AM.",
url: "https://phish-block.example.com/urls.txt",
recurring: {
weekly: {
dayOfWeek: "monday",
at: "02",
},
},
},
},
});
const scmEdl4 = new scm.ExternalDynamicList("scm_edl_4", {
folder: "All",
name: "scm_edl_4",
type: {
predefinedIp: {
description: "Palo Alto Networks-provided list of high-risk IP addresses.",
url: "panw-highrisk-ip-list",
},
},
});
const scmEdl5 = new scm.ExternalDynamicList("scm_edl_5", {
folder: "All",
name: "scm_edl_5",
type: {
ip: {
description: "IP threat feed that requires authentication.",
url: "https://secure-feed.example.com/ips.txt",
certificateProfile: "test-cert-list-qekwys",
auth: {
username: "my-api-user",
password: "a-very-secret-password-123!",
},
recurring: {
fiveMinute: {},
},
},
},
});
import pulumi
import pulumi_scm as scm
# This resource creates a domain-based External Dynamic List (EDL).
# The EDL will fetch a list of domains from the specified URL daily.
scm_edl1 = scm.ExternalDynamicList("scm_edl_1",
folder="All",
name="scm_edl_1",
type={
"domain": {
"description": "List of malicious domains to block, updated daily.",
"url": "http://some-threat-feed.com/domains.txt",
"recurring": {
"daily": {
"at": "03",
},
},
},
})
scm_edl2 = scm.ExternalDynamicList("scm_edl_2",
folder="All",
name="scm_edl_2",
type={
"ip": {
"description": "IP threat feed with basic auth, updated hourly.",
"url": "https://threats.example.com/ips.txt",
"recurring": {
"hourly": {},
},
},
})
scm_edl3 = scm.ExternalDynamicList("scm_edl_3",
folder="All",
name="scm_edl_3",
type={
"url": {
"description": "List of phishing URLs, updated every Monday at 2 AM.",
"url": "https://phish-block.example.com/urls.txt",
"recurring": {
"weekly": {
"day_of_week": "monday",
"at": "02",
},
},
},
})
scm_edl4 = scm.ExternalDynamicList("scm_edl_4",
folder="All",
name="scm_edl_4",
type={
"predefined_ip": {
"description": "Palo Alto Networks-provided list of high-risk IP addresses.",
"url": "panw-highrisk-ip-list",
},
})
scm_edl5 = scm.ExternalDynamicList("scm_edl_5",
folder="All",
name="scm_edl_5",
type={
"ip": {
"description": "IP threat feed that requires authentication.",
"url": "https://secure-feed.example.com/ips.txt",
"certificate_profile": "test-cert-list-qekwys",
"auth": {
"username": "my-api-user",
"password": "a-very-secret-password-123!",
},
"recurring": {
"five_minute": {},
},
},
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// This resource creates a domain-based External Dynamic List (EDL).
// The EDL will fetch a list of domains from the specified URL daily.
_, err := scm.NewExternalDynamicList(ctx, "scm_edl_1", &scm.ExternalDynamicListArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm_edl_1"),
Type: &scm.ExternalDynamicListTypeArgs{
Domain: &scm.ExternalDynamicListTypeDomainArgs{
Description: pulumi.String("List of malicious domains to block, updated daily."),
Url: pulumi.String("http://some-threat-feed.com/domains.txt"),
Recurring: &scm.ExternalDynamicListTypeDomainRecurringArgs{
Daily: &scm.ExternalDynamicListTypeDomainRecurringDailyArgs{
At: pulumi.String("03"),
},
},
},
},
})
if err != nil {
return err
}
_, err = scm.NewExternalDynamicList(ctx, "scm_edl_2", &scm.ExternalDynamicListArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm_edl_2"),
Type: &scm.ExternalDynamicListTypeArgs{
Ip: &scm.ExternalDynamicListTypeIpArgs{
Description: pulumi.String("IP threat feed with basic auth, updated hourly."),
Url: pulumi.String("https://threats.example.com/ips.txt"),
Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
Hourly: &scm.ExternalDynamicListTypeIpRecurringHourlyArgs{},
},
},
},
})
if err != nil {
return err
}
_, err = scm.NewExternalDynamicList(ctx, "scm_edl_3", &scm.ExternalDynamicListArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm_edl_3"),
Type: &scm.ExternalDynamicListTypeArgs{
Url: &scm.ExternalDynamicListTypeUrlArgs{
Description: pulumi.String("List of phishing URLs, updated every Monday at 2 AM."),
Url: pulumi.String("https://phish-block.example.com/urls.txt"),
Recurring: &scm.ExternalDynamicListTypeUrlRecurringArgs{
Weekly: &scm.ExternalDynamicListTypeUrlRecurringWeeklyArgs{
DayOfWeek: pulumi.String("monday"),
At: pulumi.String("02"),
},
},
},
},
})
if err != nil {
return err
}
_, err = scm.NewExternalDynamicList(ctx, "scm_edl_4", &scm.ExternalDynamicListArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm_edl_4"),
Type: &scm.ExternalDynamicListTypeArgs{
PredefinedIp: &scm.ExternalDynamicListTypePredefinedIpArgs{
Description: pulumi.String("Palo Alto Networks-provided list of high-risk IP addresses."),
Url: pulumi.String("panw-highrisk-ip-list"),
},
},
})
if err != nil {
return err
}
_, err = scm.NewExternalDynamicList(ctx, "scm_edl_5", &scm.ExternalDynamicListArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm_edl_5"),
Type: &scm.ExternalDynamicListTypeArgs{
Ip: &scm.ExternalDynamicListTypeIpArgs{
Description: pulumi.String("IP threat feed that requires authentication."),
Url: pulumi.String("https://secure-feed.example.com/ips.txt"),
CertificateProfile: pulumi.String("test-cert-list-qekwys"),
Auth: &scm.ExternalDynamicListTypeIpAuthArgs{
Username: pulumi.String("my-api-user"),
Password: pulumi.String("a-very-secret-password-123!"),
},
Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
FiveMinute: &scm.ExternalDynamicListTypeIpRecurringFiveMinuteArgs{},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// This resource creates a domain-based External Dynamic List (EDL).
// The EDL will fetch a list of domains from the specified URL daily.
var scmEdl1 = new Scm.ExternalDynamicList("scm_edl_1", new()
{
Folder = "All",
Name = "scm_edl_1",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
Domain = new Scm.Inputs.ExternalDynamicListTypeDomainArgs
{
Description = "List of malicious domains to block, updated daily.",
Url = "http://some-threat-feed.com/domains.txt",
Recurring = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringDailyArgs
{
At = "03",
},
},
},
},
});
var scmEdl2 = new Scm.ExternalDynamicList("scm_edl_2", new()
{
Folder = "All",
Name = "scm_edl_2",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
{
Description = "IP threat feed with basic auth, updated hourly.",
Url = "https://threats.example.com/ips.txt",
Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
{
Hourly = null,
},
},
},
});
var scmEdl3 = new Scm.ExternalDynamicList("scm_edl_3", new()
{
Folder = "All",
Name = "scm_edl_3",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
Url = new Scm.Inputs.ExternalDynamicListTypeUrlArgs
{
Description = "List of phishing URLs, updated every Monday at 2 AM.",
Url = "https://phish-block.example.com/urls.txt",
Recurring = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringArgs
{
Weekly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs
{
DayOfWeek = "monday",
At = "02",
},
},
},
},
});
var scmEdl4 = new Scm.ExternalDynamicList("scm_edl_4", new()
{
Folder = "All",
Name = "scm_edl_4",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
PredefinedIp = new Scm.Inputs.ExternalDynamicListTypePredefinedIpArgs
{
Description = "Palo Alto Networks-provided list of high-risk IP addresses.",
Url = "panw-highrisk-ip-list",
},
},
});
var scmEdl5 = new Scm.ExternalDynamicList("scm_edl_5", new()
{
Folder = "All",
Name = "scm_edl_5",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
{
Description = "IP threat feed that requires authentication.",
Url = "https://secure-feed.example.com/ips.txt",
CertificateProfile = "test-cert-list-qekwys",
Auth = new Scm.Inputs.ExternalDynamicListTypeIpAuthArgs
{
Username = "my-api-user",
Password = "a-very-secret-password-123!",
},
Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
{
FiveMinute = null,
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ExternalDynamicList;
import com.pulumi.scm.ExternalDynamicListArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainRecurringArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeDomainRecurringDailyArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeIpArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringHourlyArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlRecurringArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypePredefinedIpArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeIpAuthArgs;
import com.pulumi.scm.inputs.ExternalDynamicListTypeIpRecurringFiveMinuteArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// This resource creates a domain-based External Dynamic List (EDL).
// The EDL will fetch a list of domains from the specified URL daily.
var scmEdl1 = new ExternalDynamicList("scmEdl1", ExternalDynamicListArgs.builder()
.folder("All")
.name("scm_edl_1")
.type(ExternalDynamicListTypeArgs.builder()
.domain(ExternalDynamicListTypeDomainArgs.builder()
.description("List of malicious domains to block, updated daily.")
.url("http://some-threat-feed.com/domains.txt")
.recurring(ExternalDynamicListTypeDomainRecurringArgs.builder()
.daily(ExternalDynamicListTypeDomainRecurringDailyArgs.builder()
.at("03")
.build())
.build())
.build())
.build())
.build());
var scmEdl2 = new ExternalDynamicList("scmEdl2", ExternalDynamicListArgs.builder()
.folder("All")
.name("scm_edl_2")
.type(ExternalDynamicListTypeArgs.builder()
.ip(ExternalDynamicListTypeIpArgs.builder()
.description("IP threat feed with basic auth, updated hourly.")
.url("https://threats.example.com/ips.txt")
.recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
.hourly(ExternalDynamicListTypeIpRecurringHourlyArgs.builder()
.build())
.build())
.build())
.build())
.build());
var scmEdl3 = new ExternalDynamicList("scmEdl3", ExternalDynamicListArgs.builder()
.folder("All")
.name("scm_edl_3")
.type(ExternalDynamicListTypeArgs.builder()
.url(ExternalDynamicListTypeUrlArgs.builder()
.description("List of phishing URLs, updated every Monday at 2 AM.")
.url("https://phish-block.example.com/urls.txt")
.recurring(ExternalDynamicListTypeUrlRecurringArgs.builder()
.weekly(ExternalDynamicListTypeUrlRecurringWeeklyArgs.builder()
.dayOfWeek("monday")
.at("02")
.build())
.build())
.build())
.build())
.build());
var scmEdl4 = new ExternalDynamicList("scmEdl4", ExternalDynamicListArgs.builder()
.folder("All")
.name("scm_edl_4")
.type(ExternalDynamicListTypeArgs.builder()
.predefinedIp(ExternalDynamicListTypePredefinedIpArgs.builder()
.description("Palo Alto Networks-provided list of high-risk IP addresses.")
.url("panw-highrisk-ip-list")
.build())
.build())
.build());
var scmEdl5 = new ExternalDynamicList("scmEdl5", ExternalDynamicListArgs.builder()
.folder("All")
.name("scm_edl_5")
.type(ExternalDynamicListTypeArgs.builder()
.ip(ExternalDynamicListTypeIpArgs.builder()
.description("IP threat feed that requires authentication.")
.url("https://secure-feed.example.com/ips.txt")
.certificateProfile("test-cert-list-qekwys")
.auth(ExternalDynamicListTypeIpAuthArgs.builder()
.username("my-api-user")
.password("a-very-secret-password-123!")
.build())
.recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
.fiveMinute(ExternalDynamicListTypeIpRecurringFiveMinuteArgs.builder()
.build())
.build())
.build())
.build())
.build());
}
}
resources:
# This resource creates a domain-based External Dynamic List (EDL).
# The EDL will fetch a list of domains from the specified URL daily.
scmEdl1:
type: scm:ExternalDynamicList
name: scm_edl_1
properties:
folder: All
name: scm_edl_1
type:
domain:
description: List of malicious domains to block, updated daily.
url: http://some-threat-feed.com/domains.txt
recurring:
daily:
at: '03'
scmEdl2:
type: scm:ExternalDynamicList
name: scm_edl_2
properties:
folder: All
name: scm_edl_2
type:
ip:
description: IP threat feed with basic auth, updated hourly.
url: https://threats.example.com/ips.txt
recurring:
hourly: {}
scmEdl3:
type: scm:ExternalDynamicList
name: scm_edl_3
properties:
folder: All
name: scm_edl_3
type:
url:
description: List of phishing URLs, updated every Monday at 2 AM.
url: https://phish-block.example.com/urls.txt
recurring:
weekly:
dayOfWeek: monday
at: '02'
scmEdl4:
type: scm:ExternalDynamicList
name: scm_edl_4
properties:
folder: All
name: scm_edl_4
type:
predefinedIp:
description: Palo Alto Networks-provided list of high-risk IP addresses.
url: panw-highrisk-ip-list
scmEdl5:
type: scm:ExternalDynamicList
name: scm_edl_5
properties:
folder: All
name: scm_edl_5
type:
ip:
description: IP threat feed that requires authentication.
url: https://secure-feed.example.com/ips.txt
certificateProfile: test-cert-list-qekwys
auth:
username: my-api-user
password: a-very-secret-password-123!
recurring:
fiveMinute: {}
Create ExternalDynamicList Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalDynamicList(name: string, args?: ExternalDynamicListArgs, opts?: CustomResourceOptions);@overload
def ExternalDynamicList(resource_name: str,
args: Optional[ExternalDynamicListArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalDynamicList(resource_name: str,
opts: Optional[ResourceOptions] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
type: Optional[ExternalDynamicListTypeArgs] = None)func NewExternalDynamicList(ctx *Context, name string, args *ExternalDynamicListArgs, opts ...ResourceOption) (*ExternalDynamicList, error)public ExternalDynamicList(string name, ExternalDynamicListArgs? args = null, CustomResourceOptions? opts = null)
public ExternalDynamicList(String name, ExternalDynamicListArgs args)
public ExternalDynamicList(String name, ExternalDynamicListArgs args, CustomResourceOptions options)
type: scm:ExternalDynamicList
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExternalDynamicListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ExternalDynamicListArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExternalDynamicListArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalDynamicListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalDynamicListArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalDynamicListResource = new Scm.ExternalDynamicList("externalDynamicListResource", new()
{
Device = "string",
Folder = "string",
Name = "string",
Snippet = "string",
Type = new Scm.Inputs.ExternalDynamicListTypeArgs
{
Domain = new Scm.Inputs.ExternalDynamicListTypeDomainArgs
{
Recurring = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringDailyArgs
{
At = "string",
},
FiveMinute = null,
Hourly = null,
Monthly = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringMonthlyArgs
{
At = "string",
DayOfMonth = 0,
},
Weekly = new Scm.Inputs.ExternalDynamicListTypeDomainRecurringWeeklyArgs
{
At = "string",
DayOfWeek = "string",
},
},
Url = "string",
Auth = new Scm.Inputs.ExternalDynamicListTypeDomainAuthArgs
{
Password = "string",
Username = "string",
},
CertificateProfile = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
ExpandDomain = false,
},
Imei = new Scm.Inputs.ExternalDynamicListTypeImeiArgs
{
Recurring = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringDailyArgs
{
At = "string",
},
FiveMinute = null,
Hourly = null,
Monthly = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringMonthlyArgs
{
At = "string",
DayOfMonth = 0,
},
Weekly = new Scm.Inputs.ExternalDynamicListTypeImeiRecurringWeeklyArgs
{
At = "string",
DayOfWeek = "string",
},
},
Url = "string",
Auth = new Scm.Inputs.ExternalDynamicListTypeImeiAuthArgs
{
Password = "string",
Username = "string",
},
CertificateProfile = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
Imsi = new Scm.Inputs.ExternalDynamicListTypeImsiArgs
{
Recurring = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringDailyArgs
{
At = "string",
},
FiveMinute = null,
Hourly = null,
Monthly = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringMonthlyArgs
{
At = "string",
DayOfMonth = 0,
},
Weekly = new Scm.Inputs.ExternalDynamicListTypeImsiRecurringWeeklyArgs
{
At = "string",
DayOfWeek = "string",
},
},
Url = "string",
Auth = new Scm.Inputs.ExternalDynamicListTypeImsiAuthArgs
{
Password = "string",
Username = "string",
},
CertificateProfile = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
Ip = new Scm.Inputs.ExternalDynamicListTypeIpArgs
{
Recurring = new Scm.Inputs.ExternalDynamicListTypeIpRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeIpRecurringDailyArgs
{
At = "string",
},
FiveMinute = null,
Hourly = null,
Monthly = new Scm.Inputs.ExternalDynamicListTypeIpRecurringMonthlyArgs
{
At = "string",
DayOfMonth = 0,
},
Weekly = new Scm.Inputs.ExternalDynamicListTypeIpRecurringWeeklyArgs
{
At = "string",
DayOfWeek = "string",
},
},
Url = "string",
Auth = new Scm.Inputs.ExternalDynamicListTypeIpAuthArgs
{
Password = "string",
Username = "string",
},
CertificateProfile = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
PredefinedIp = new Scm.Inputs.ExternalDynamicListTypePredefinedIpArgs
{
Url = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
PredefinedUrl = new Scm.Inputs.ExternalDynamicListTypePredefinedUrlArgs
{
Url = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
Url = new Scm.Inputs.ExternalDynamicListTypeUrlArgs
{
Recurring = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringArgs
{
Daily = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringDailyArgs
{
At = "string",
},
FiveMinute = null,
Hourly = null,
Monthly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringMonthlyArgs
{
At = "string",
DayOfMonth = 0,
},
Weekly = new Scm.Inputs.ExternalDynamicListTypeUrlRecurringWeeklyArgs
{
At = "string",
DayOfWeek = "string",
},
},
Url = "string",
Auth = new Scm.Inputs.ExternalDynamicListTypeUrlAuthArgs
{
Password = "string",
Username = "string",
},
CertificateProfile = "string",
Description = "string",
ExceptionLists = new[]
{
"string",
},
},
},
});
example, err := scm.NewExternalDynamicList(ctx, "externalDynamicListResource", &scm.ExternalDynamicListArgs{
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
Type: &scm.ExternalDynamicListTypeArgs{
Domain: &scm.ExternalDynamicListTypeDomainArgs{
Recurring: &scm.ExternalDynamicListTypeDomainRecurringArgs{
Daily: &scm.ExternalDynamicListTypeDomainRecurringDailyArgs{
At: pulumi.String("string"),
},
FiveMinute: &scm.ExternalDynamicListTypeDomainRecurringFiveMinuteArgs{},
Hourly: &scm.ExternalDynamicListTypeDomainRecurringHourlyArgs{},
Monthly: &scm.ExternalDynamicListTypeDomainRecurringMonthlyArgs{
At: pulumi.String("string"),
DayOfMonth: pulumi.Int(0),
},
Weekly: &scm.ExternalDynamicListTypeDomainRecurringWeeklyArgs{
At: pulumi.String("string"),
DayOfWeek: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
Auth: &scm.ExternalDynamicListTypeDomainAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CertificateProfile: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
ExpandDomain: pulumi.Bool(false),
},
Imei: &scm.ExternalDynamicListTypeImeiArgs{
Recurring: &scm.ExternalDynamicListTypeImeiRecurringArgs{
Daily: &scm.ExternalDynamicListTypeImeiRecurringDailyArgs{
At: pulumi.String("string"),
},
FiveMinute: &scm.ExternalDynamicListTypeImeiRecurringFiveMinuteArgs{},
Hourly: &scm.ExternalDynamicListTypeImeiRecurringHourlyArgs{},
Monthly: &scm.ExternalDynamicListTypeImeiRecurringMonthlyArgs{
At: pulumi.String("string"),
DayOfMonth: pulumi.Int(0),
},
Weekly: &scm.ExternalDynamicListTypeImeiRecurringWeeklyArgs{
At: pulumi.String("string"),
DayOfWeek: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
Auth: &scm.ExternalDynamicListTypeImeiAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CertificateProfile: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
Imsi: &scm.ExternalDynamicListTypeImsiArgs{
Recurring: &scm.ExternalDynamicListTypeImsiRecurringArgs{
Daily: &scm.ExternalDynamicListTypeImsiRecurringDailyArgs{
At: pulumi.String("string"),
},
FiveMinute: &scm.ExternalDynamicListTypeImsiRecurringFiveMinuteArgs{},
Hourly: &scm.ExternalDynamicListTypeImsiRecurringHourlyArgs{},
Monthly: &scm.ExternalDynamicListTypeImsiRecurringMonthlyArgs{
At: pulumi.String("string"),
DayOfMonth: pulumi.Int(0),
},
Weekly: &scm.ExternalDynamicListTypeImsiRecurringWeeklyArgs{
At: pulumi.String("string"),
DayOfWeek: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
Auth: &scm.ExternalDynamicListTypeImsiAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CertificateProfile: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
Ip: &scm.ExternalDynamicListTypeIpArgs{
Recurring: &scm.ExternalDynamicListTypeIpRecurringArgs{
Daily: &scm.ExternalDynamicListTypeIpRecurringDailyArgs{
At: pulumi.String("string"),
},
FiveMinute: &scm.ExternalDynamicListTypeIpRecurringFiveMinuteArgs{},
Hourly: &scm.ExternalDynamicListTypeIpRecurringHourlyArgs{},
Monthly: &scm.ExternalDynamicListTypeIpRecurringMonthlyArgs{
At: pulumi.String("string"),
DayOfMonth: pulumi.Int(0),
},
Weekly: &scm.ExternalDynamicListTypeIpRecurringWeeklyArgs{
At: pulumi.String("string"),
DayOfWeek: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
Auth: &scm.ExternalDynamicListTypeIpAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CertificateProfile: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
PredefinedIp: &scm.ExternalDynamicListTypePredefinedIpArgs{
Url: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
PredefinedUrl: &scm.ExternalDynamicListTypePredefinedUrlArgs{
Url: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
Url: &scm.ExternalDynamicListTypeUrlArgs{
Recurring: &scm.ExternalDynamicListTypeUrlRecurringArgs{
Daily: &scm.ExternalDynamicListTypeUrlRecurringDailyArgs{
At: pulumi.String("string"),
},
FiveMinute: &scm.ExternalDynamicListTypeUrlRecurringFiveMinuteArgs{},
Hourly: &scm.ExternalDynamicListTypeUrlRecurringHourlyArgs{},
Monthly: &scm.ExternalDynamicListTypeUrlRecurringMonthlyArgs{
At: pulumi.String("string"),
DayOfMonth: pulumi.Int(0),
},
Weekly: &scm.ExternalDynamicListTypeUrlRecurringWeeklyArgs{
At: pulumi.String("string"),
DayOfWeek: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
Auth: &scm.ExternalDynamicListTypeUrlAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
CertificateProfile: pulumi.String("string"),
Description: pulumi.String("string"),
ExceptionLists: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
var externalDynamicListResource = new ExternalDynamicList("externalDynamicListResource", ExternalDynamicListArgs.builder()
.device("string")
.folder("string")
.name("string")
.snippet("string")
.type(ExternalDynamicListTypeArgs.builder()
.domain(ExternalDynamicListTypeDomainArgs.builder()
.recurring(ExternalDynamicListTypeDomainRecurringArgs.builder()
.daily(ExternalDynamicListTypeDomainRecurringDailyArgs.builder()
.at("string")
.build())
.fiveMinute(ExternalDynamicListTypeDomainRecurringFiveMinuteArgs.builder()
.build())
.hourly(ExternalDynamicListTypeDomainRecurringHourlyArgs.builder()
.build())
.monthly(ExternalDynamicListTypeDomainRecurringMonthlyArgs.builder()
.at("string")
.dayOfMonth(0)
.build())
.weekly(ExternalDynamicListTypeDomainRecurringWeeklyArgs.builder()
.at("string")
.dayOfWeek("string")
.build())
.build())
.url("string")
.auth(ExternalDynamicListTypeDomainAuthArgs.builder()
.password("string")
.username("string")
.build())
.certificateProfile("string")
.description("string")
.exceptionLists("string")
.expandDomain(false)
.build())
.imei(ExternalDynamicListTypeImeiArgs.builder()
.recurring(ExternalDynamicListTypeImeiRecurringArgs.builder()
.daily(ExternalDynamicListTypeImeiRecurringDailyArgs.builder()
.at("string")
.build())
.fiveMinute(ExternalDynamicListTypeImeiRecurringFiveMinuteArgs.builder()
.build())
.hourly(ExternalDynamicListTypeImeiRecurringHourlyArgs.builder()
.build())
.monthly(ExternalDynamicListTypeImeiRecurringMonthlyArgs.builder()
.at("string")
.dayOfMonth(0)
.build())
.weekly(ExternalDynamicListTypeImeiRecurringWeeklyArgs.builder()
.at("string")
.dayOfWeek("string")
.build())
.build())
.url("string")
.auth(ExternalDynamicListTypeImeiAuthArgs.builder()
.password("string")
.username("string")
.build())
.certificateProfile("string")
.description("string")
.exceptionLists("string")
.build())
.imsi(ExternalDynamicListTypeImsiArgs.builder()
.recurring(ExternalDynamicListTypeImsiRecurringArgs.builder()
.daily(ExternalDynamicListTypeImsiRecurringDailyArgs.builder()
.at("string")
.build())
.fiveMinute(ExternalDynamicListTypeImsiRecurringFiveMinuteArgs.builder()
.build())
.hourly(ExternalDynamicListTypeImsiRecurringHourlyArgs.builder()
.build())
.monthly(ExternalDynamicListTypeImsiRecurringMonthlyArgs.builder()
.at("string")
.dayOfMonth(0)
.build())
.weekly(ExternalDynamicListTypeImsiRecurringWeeklyArgs.builder()
.at("string")
.dayOfWeek("string")
.build())
.build())
.url("string")
.auth(ExternalDynamicListTypeImsiAuthArgs.builder()
.password("string")
.username("string")
.build())
.certificateProfile("string")
.description("string")
.exceptionLists("string")
.build())
.ip(ExternalDynamicListTypeIpArgs.builder()
.recurring(ExternalDynamicListTypeIpRecurringArgs.builder()
.daily(ExternalDynamicListTypeIpRecurringDailyArgs.builder()
.at("string")
.build())
.fiveMinute(ExternalDynamicListTypeIpRecurringFiveMinuteArgs.builder()
.build())
.hourly(ExternalDynamicListTypeIpRecurringHourlyArgs.builder()
.build())
.monthly(ExternalDynamicListTypeIpRecurringMonthlyArgs.builder()
.at("string")
.dayOfMonth(0)
.build())
.weekly(ExternalDynamicListTypeIpRecurringWeeklyArgs.builder()
.at("string")
.dayOfWeek("string")
.build())
.build())
.url("string")
.auth(ExternalDynamicListTypeIpAuthArgs.builder()
.password("string")
.username("string")
.build())
.certificateProfile("string")
.description("string")
.exceptionLists("string")
.build())
.predefinedIp(ExternalDynamicListTypePredefinedIpArgs.builder()
.url("string")
.description("string")
.exceptionLists("string")
.build())
.predefinedUrl(ExternalDynamicListTypePredefinedUrlArgs.builder()
.url("string")
.description("string")
.exceptionLists("string")
.build())
.url(ExternalDynamicListTypeUrlArgs.builder()
.recurring(ExternalDynamicListTypeUrlRecurringArgs.builder()
.daily(ExternalDynamicListTypeUrlRecurringDailyArgs.builder()
.at("string")
.build())
.fiveMinute(ExternalDynamicListTypeUrlRecurringFiveMinuteArgs.builder()
.build())
.hourly(ExternalDynamicListTypeUrlRecurringHourlyArgs.builder()
.build())
.monthly(ExternalDynamicListTypeUrlRecurringMonthlyArgs.builder()
.at("string")
.dayOfMonth(0)
.build())
.weekly(ExternalDynamicListTypeUrlRecurringWeeklyArgs.builder()
.at("string")
.dayOfWeek("string")
.build())
.build())
.url("string")
.auth(ExternalDynamicListTypeUrlAuthArgs.builder()
.password("string")
.username("string")
.build())
.certificateProfile("string")
.description("string")
.exceptionLists("string")
.build())
.build())
.build());
external_dynamic_list_resource = scm.ExternalDynamicList("externalDynamicListResource",
device="string",
folder="string",
name="string",
snippet="string",
type={
"domain": {
"recurring": {
"daily": {
"at": "string",
},
"five_minute": {},
"hourly": {},
"monthly": {
"at": "string",
"day_of_month": 0,
},
"weekly": {
"at": "string",
"day_of_week": "string",
},
},
"url": "string",
"auth": {
"password": "string",
"username": "string",
},
"certificate_profile": "string",
"description": "string",
"exception_lists": ["string"],
"expand_domain": False,
},
"imei": {
"recurring": {
"daily": {
"at": "string",
},
"five_minute": {},
"hourly": {},
"monthly": {
"at": "string",
"day_of_month": 0,
},
"weekly": {
"at": "string",
"day_of_week": "string",
},
},
"url": "string",
"auth": {
"password": "string",
"username": "string",
},
"certificate_profile": "string",
"description": "string",
"exception_lists": ["string"],
},
"imsi": {
"recurring": {
"daily": {
"at": "string",
},
"five_minute": {},
"hourly": {},
"monthly": {
"at": "string",
"day_of_month": 0,
},
"weekly": {
"at": "string",
"day_of_week": "string",
},
},
"url": "string",
"auth": {
"password": "string",
"username": "string",
},
"certificate_profile": "string",
"description": "string",
"exception_lists": ["string"],
},
"ip": {
"recurring": {
"daily": {
"at": "string",
},
"five_minute": {},
"hourly": {},
"monthly": {
"at": "string",
"day_of_month": 0,
},
"weekly": {
"at": "string",
"day_of_week": "string",
},
},
"url": "string",
"auth": {
"password": "string",
"username": "string",
},
"certificate_profile": "string",
"description": "string",
"exception_lists": ["string"],
},
"predefined_ip": {
"url": "string",
"description": "string",
"exception_lists": ["string"],
},
"predefined_url": {
"url": "string",
"description": "string",
"exception_lists": ["string"],
},
"url": {
"recurring": {
"daily": {
"at": "string",
},
"five_minute": {},
"hourly": {},
"monthly": {
"at": "string",
"day_of_month": 0,
},
"weekly": {
"at": "string",
"day_of_week": "string",
},
},
"url": "string",
"auth": {
"password": "string",
"username": "string",
},
"certificate_profile": "string",
"description": "string",
"exception_lists": ["string"],
},
})
const externalDynamicListResource = new scm.ExternalDynamicList("externalDynamicListResource", {
device: "string",
folder: "string",
name: "string",
snippet: "string",
type: {
domain: {
recurring: {
daily: {
at: "string",
},
fiveMinute: {},
hourly: {},
monthly: {
at: "string",
dayOfMonth: 0,
},
weekly: {
at: "string",
dayOfWeek: "string",
},
},
url: "string",
auth: {
password: "string",
username: "string",
},
certificateProfile: "string",
description: "string",
exceptionLists: ["string"],
expandDomain: false,
},
imei: {
recurring: {
daily: {
at: "string",
},
fiveMinute: {},
hourly: {},
monthly: {
at: "string",
dayOfMonth: 0,
},
weekly: {
at: "string",
dayOfWeek: "string",
},
},
url: "string",
auth: {
password: "string",
username: "string",
},
certificateProfile: "string",
description: "string",
exceptionLists: ["string"],
},
imsi: {
recurring: {
daily: {
at: "string",
},
fiveMinute: {},
hourly: {},
monthly: {
at: "string",
dayOfMonth: 0,
},
weekly: {
at: "string",
dayOfWeek: "string",
},
},
url: "string",
auth: {
password: "string",
username: "string",
},
certificateProfile: "string",
description: "string",
exceptionLists: ["string"],
},
ip: {
recurring: {
daily: {
at: "string",
},
fiveMinute: {},
hourly: {},
monthly: {
at: "string",
dayOfMonth: 0,
},
weekly: {
at: "string",
dayOfWeek: "string",
},
},
url: "string",
auth: {
password: "string",
username: "string",
},
certificateProfile: "string",
description: "string",
exceptionLists: ["string"],
},
predefinedIp: {
url: "string",
description: "string",
exceptionLists: ["string"],
},
predefinedUrl: {
url: "string",
description: "string",
exceptionLists: ["string"],
},
url: {
recurring: {
daily: {
at: "string",
},
fiveMinute: {},
hourly: {},
monthly: {
at: "string",
dayOfMonth: 0,
},
weekly: {
at: "string",
dayOfWeek: "string",
},
},
url: "string",
auth: {
password: "string",
username: "string",
},
certificateProfile: "string",
description: "string",
exceptionLists: ["string"],
},
},
});
type: scm:ExternalDynamicList
properties:
device: string
folder: string
name: string
snippet: string
type:
domain:
auth:
password: string
username: string
certificateProfile: string
description: string
exceptionLists:
- string
expandDomain: false
recurring:
daily:
at: string
fiveMinute: {}
hourly: {}
monthly:
at: string
dayOfMonth: 0
weekly:
at: string
dayOfWeek: string
url: string
imei:
auth:
password: string
username: string
certificateProfile: string
description: string
exceptionLists:
- string
recurring:
daily:
at: string
fiveMinute: {}
hourly: {}
monthly:
at: string
dayOfMonth: 0
weekly:
at: string
dayOfWeek: string
url: string
imsi:
auth:
password: string
username: string
certificateProfile: string
description: string
exceptionLists:
- string
recurring:
daily:
at: string
fiveMinute: {}
hourly: {}
monthly:
at: string
dayOfMonth: 0
weekly:
at: string
dayOfWeek: string
url: string
ip:
auth:
password: string
username: string
certificateProfile: string
description: string
exceptionLists:
- string
recurring:
daily:
at: string
fiveMinute: {}
hourly: {}
monthly:
at: string
dayOfMonth: 0
weekly:
at: string
dayOfWeek: string
url: string
predefinedIp:
description: string
exceptionLists:
- string
url: string
predefinedUrl:
description: string
exceptionLists:
- string
url: string
url:
auth:
password: string
username: string
certificateProfile: string
description: string
exceptionLists:
- string
recurring:
daily:
at: string
fiveMinute: {}
hourly: {}
monthly:
at: string
dayOfMonth: 0
weekly:
at: string
dayOfWeek: string
url: string
ExternalDynamicList Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ExternalDynamicList resource accepts the following input properties:
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the external dynamic list
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Type
External
Dynamic List Type - Type configuration for External Dynamic List
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the external dynamic list
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Type
External
Dynamic List Type Args - Type configuration for External Dynamic List
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the external dynamic list
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- type
External
Dynamic List Type - Type configuration for External Dynamic List
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name string
- The name of the external dynamic list
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- type
External
Dynamic List Type - Type configuration for External Dynamic List
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name str
- The name of the external dynamic list
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- type
External
Dynamic List Type Args - Type configuration for External Dynamic List
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the external dynamic list
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- type Property Map
- Type configuration for External Dynamic List
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalDynamicList resource produces the following output properties:
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- The Terraform ID.
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- The Terraform ID.
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
Look up Existing ExternalDynamicList Resource
Get an existing ExternalDynamicList resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ExternalDynamicListState, opts?: CustomResourceOptions): ExternalDynamicList@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
device: Optional[str] = None,
encrypted_values: Optional[Mapping[str, str]] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None,
type: Optional[ExternalDynamicListTypeArgs] = None) -> ExternalDynamicListfunc GetExternalDynamicList(ctx *Context, name string, id IDInput, state *ExternalDynamicListState, opts ...ResourceOption) (*ExternalDynamicList, error)public static ExternalDynamicList Get(string name, Input<string> id, ExternalDynamicListState? state, CustomResourceOptions? opts = null)public static ExternalDynamicList get(String name, Output<String> id, ExternalDynamicListState state, CustomResourceOptions options)resources: _: type: scm:ExternalDynamicList get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the external dynamic list
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- The Terraform ID.
- Type
External
Dynamic List Type - Type configuration for External Dynamic List
- Device string
- The device in which the resource is defined
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the external dynamic list
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- The Terraform ID.
- Type
External
Dynamic List Type Args - Type configuration for External Dynamic List
- device String
- The device in which the resource is defined
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the external dynamic list
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- The Terraform ID.
- type
External
Dynamic List Type - Type configuration for External Dynamic List
- device string
- The device in which the resource is defined
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name string
- The name of the external dynamic list
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid string
- The Terraform ID.
- type
External
Dynamic List Type - Type configuration for External Dynamic List
- device str
- The device in which the resource is defined
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name str
- The name of the external dynamic list
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid str
- The Terraform ID.
- type
External
Dynamic List Type Args - Type configuration for External Dynamic List
- device String
- The device in which the resource is defined
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the external dynamic list
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- The Terraform ID.
- type Property Map
- Type configuration for External Dynamic List
Supporting Types
ExternalDynamicListType, ExternalDynamicListTypeArgs
- Domain
External
Dynamic List Type Domain - Domain settings for Custom Domain type
- Imei
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
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
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 ExternalDynamic 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 ExternalDynamic 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
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
External
Dynamic List Type Domain - Domain settings for Custom Domain type
- Imei
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
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
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 ExternalDynamic 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 ExternalDynamic 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
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
External
Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
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
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
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 ExternalDynamic 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 ExternalDynamic 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
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
External
Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
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
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
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 ExternalDynamic 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 ExternalDynamic 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
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
External
Dynamic List Type Domain - Domain settings for Custom Domain type
- imei
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
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
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 ExternalDynamic 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 ExternalDynamic 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
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.
ExternalDynamicListTypeDomain, ExternalDynamicListTypeDomainArgs
- Recurring
External
Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- Auth
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
External
Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- Auth
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
External
Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
- auth
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
External
Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url string
- External URL for Custom Domain type
- auth
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
External
Dynamic List Type Domain Recurring - Update Schedule for Custom Domain type
- url str
- External URL for Custom Domain type
- auth
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 Property Map
- Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
- auth Property Map
- Authentication settings for Custom Domain type
- 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
ExternalDynamicListTypeDomainAuth, ExternalDynamicListTypeDomainAuthArgs
ExternalDynamicListTypeDomainRecurring, ExternalDynamicListTypeDomainRecurringArgs
- Daily
External
Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Domain Recurring Daily - Daily settings for Domain recurring
- five_
minute ExternalDynamic 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
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
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
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.
ExternalDynamicListTypeDomainRecurringDaily, ExternalDynamicListTypeDomainRecurringDailyArgs
- At string
- Daily Time specification hh (e.g. 20) for Domain
- At string
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
- at string
- Daily Time specification hh (e.g. 20) for Domain
- at str
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
ExternalDynamicListTypeDomainRecurringMonthly, ExternalDynamicListTypeDomainRecurringMonthlyArgs
- At string
- Monthly Time specification hh (e.g. 20) for domain
- 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
ExternalDynamicListTypeDomainRecurringWeekly, ExternalDynamicListTypeDomainRecurringWeeklyArgs
- at str
- Weekly Time specification hh (e.g. 20) for Domain
- day_
of_ strweek - Day of week
ExternalDynamicListTypeImei, ExternalDynamicListTypeImeiArgs
- Recurring
External
Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- Auth
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
External
Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- Auth
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
External
Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
- auth
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
External
Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url string
- IMEI URL for Custom IMEI type
- auth
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
External
Dynamic List Type Imei Recurring - Recurring interval for IMEI updates
- url str
- IMEI URL for Custom IMEI type
- auth
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 Property Map
- Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
- auth Property Map
- IMEI Auth Cnfig for Custom IMEI type
- 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
ExternalDynamicListTypeImeiAuth, ExternalDynamicListTypeImeiAuthArgs
ExternalDynamicListTypeImeiRecurring, ExternalDynamicListTypeImeiRecurringArgs
- Daily
External
Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five_
minute ExternalDynamic 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
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
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
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.
ExternalDynamicListTypeImeiRecurringDaily, ExternalDynamicListTypeImeiRecurringDailyArgs
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
- at string
- Daily Time specification hh (e.g. 20) for IMEI
- at str
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
ExternalDynamicListTypeImeiRecurringMonthly, ExternalDynamicListTypeImeiRecurringMonthlyArgs
- At string
- Monthly Time specification hh (e.g. 20) for IMEI
- 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
ExternalDynamicListTypeImeiRecurringWeekly, ExternalDynamicListTypeImeiRecurringWeeklyArgs
- at str
- Weekly Time specification hh (e.g. 20) for IMEI
- day_
of_ strweek - Day of week
ExternalDynamicListTypeImsi, ExternalDynamicListTypeImsiArgs
- Recurring
External
Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- Auth
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
External
Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- Auth
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
External
Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
- auth
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
External
Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url string
- IMSI URL for Custom IMSI type
- auth
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
External
Dynamic List Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url str
- IMSI URL for Custom IMSI type
- auth
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 Property Map
- IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
- auth Property Map
- IMSI Auth Config for Custom IMSI type
- 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
ExternalDynamicListTypeImsiAuth, ExternalDynamicListTypeImsiAuthArgs
ExternalDynamicListTypeImsiRecurring, ExternalDynamicListTypeImsiRecurringArgs
- Daily
External
Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five_
minute ExternalDynamic 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
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
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
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.
ExternalDynamicListTypeImsiRecurringDaily, ExternalDynamicListTypeImsiRecurringDailyArgs
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
- at string
- Daily Time specification hh (e.g. 20) for IMSI
- at str
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
ExternalDynamicListTypeImsiRecurringMonthly, ExternalDynamicListTypeImsiRecurringMonthlyArgs
- At string
- Monthly Time specification hh (e.g. 20) for IMSI
- 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
ExternalDynamicListTypeImsiRecurringWeekly, ExternalDynamicListTypeImsiRecurringWeeklyArgs
- at str
- Weekly Time specification hh (e.g. 20) for IMSI
- day_
of_ strweek - Day of week
ExternalDynamicListTypeIp, ExternalDynamicListTypeIpArgs
- Recurring
External
Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- Auth
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
External
Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- Auth
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
External
Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
- auth
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
External
Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url string
- External URL for Custom IP type
- auth
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
External
Dynamic List Type Ip Recurring - Update Schedule for Custom IP type
- url str
- External URL for Custom IP type
- auth
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 Property Map
- Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
- auth Property Map
- Authentication settings for Custom IP type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - IP Exception List for Custom IP type
ExternalDynamicListTypeIpAuth, ExternalDynamicListTypeIpAuthArgs
ExternalDynamicListTypeIpRecurring, ExternalDynamicListTypeIpRecurringArgs
- Daily
External
Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Ip Recurring Daily - Daily settings for IP recurring
- five_
minute ExternalDynamic 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
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
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
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.
ExternalDynamicListTypeIpRecurringDaily, ExternalDynamicListTypeIpRecurringDailyArgs
- At string
- Daily Time specification hh (e.g. 20) for IP
- At string
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
- at string
- Daily Time specification hh (e.g. 20) for IP
- at str
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
ExternalDynamicListTypeIpRecurringMonthly, ExternalDynamicListTypeIpRecurringMonthlyArgs
- At string
- Monthly Time specification hh (e.g. 20) for IP
- 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
ExternalDynamicListTypeIpRecurringWeekly, ExternalDynamicListTypeIpRecurringWeeklyArgs
- at str
- Weekly Time specification hh (e.g. 20) for IP
- day_
of_ strweek - Day of week
ExternalDynamicListTypePredefinedIp, ExternalDynamicListTypePredefinedIpArgs
- 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 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 str
- URL source for Predefined IP type
- description str
- Description
- exception_
lists Sequence[str] - IP Exception List for Predefined IP type
- url String
- URL source for Predefined IP type
- description String
- Description
- exception
Lists List<String> - IP Exception List for Predefined IP type
ExternalDynamicListTypePredefinedUrl, ExternalDynamicListTypePredefinedUrlArgs
- 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 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 str
- URL source for Predefined URL type
- description str
- Description
- exception_
lists Sequence[str] - URL Exception List for Predefined URL type
- url String
- URL source for Predefined URL type
- description String
- Description
- exception
Lists List<String> - URL Exception List for Predefined URL type
ExternalDynamicListTypeUrl, ExternalDynamicListTypeUrlArgs
- Recurring
External
Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- Auth
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
External
Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- Auth
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
External
Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
- auth
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
External
Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url string
- External URL for Custom URL type
- auth
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
External
Dynamic List Type Url Recurring - Update Schedule for Custom URL type
- url str
- External URL for Custom URL type
- auth
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 Property Map
- Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
- auth Property Map
- Authentication settings for Custom URL type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - URL Exception List for Custom URL type
ExternalDynamicListTypeUrlAuth, ExternalDynamicListTypeUrlAuthArgs
ExternalDynamicListTypeUrlRecurring, ExternalDynamicListTypeUrlRecurringArgs
- Daily
External
Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute ExternalDynamic 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
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
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
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
External
Dynamic List Type Url Recurring Daily - Daily settings for URL recurring
- five_
minute ExternalDynamic 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
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
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
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.
ExternalDynamicListTypeUrlRecurringDaily, ExternalDynamicListTypeUrlRecurringDailyArgs
- At string
- Daily Time specification hh (e.g. 20) for URL
- At string
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
- at string
- Daily Time specification hh (e.g. 20) for URL
- at str
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
ExternalDynamicListTypeUrlRecurringMonthly, ExternalDynamicListTypeUrlRecurringMonthlyArgs
- At string
- Monthly Time specification hh (e.g. 20) for URL
- 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
ExternalDynamicListTypeUrlRecurringWeekly, ExternalDynamicListTypeUrlRecurringWeeklyArgs
- at str
- Weekly Time specification hh (e.g. 20) for URL
- day_
of_ strweek - Day of week
Import
The following command can be used to import a resource not managed by Terraform:
terraform import scm_external_dynamic_list.example folder:::id
or
terraform import scm_external_dynamic_list.example :snippet::id
or
terraform import scm_external_dynamic_list.example ::device:id
Note: Please provide just one of folder, snippet, or device for the import command.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
