Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Data source to fetch all external dynamic lists in the "All" folder.
const allSharedEdls = scm.getExternalDynamicListList({
folder: "All",
});
export const allSharedEdlsMap = allSharedEdls.then(allSharedEdls => allSharedEdls.datas);
// Example of using pagination to get the first 5 EDLs.
const paginatedEdls = scm.getExternalDynamicListList({
folder: "All",
limit: 5,
offset: 0,
});
export const paginatedEdlsDetails = {
totalInFolder: paginatedEdls.then(paginatedEdls => paginatedEdls.total),
limitUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.limit),
offsetUsed: paginatedEdls.then(paginatedEdls => paginatedEdls.offset),
};
import pulumi
import pulumi_scm as scm
# Data source to fetch all external dynamic lists in the "All" folder.
all_shared_edls = scm.get_external_dynamic_list_list(folder="All")
pulumi.export("allSharedEdlsMap", all_shared_edls.datas)
# Example of using pagination to get the first 5 EDLs.
paginated_edls = scm.get_external_dynamic_list_list(folder="All",
limit=5,
offset=0)
pulumi.export("paginatedEdlsDetails", {
"totalInFolder": paginated_edls.total,
"limitUsed": paginated_edls.limit,
"offsetUsed": paginated_edls.offset,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Data source to fetch all external dynamic lists in the "All" folder.
allSharedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
Folder: pulumi.StringRef("All"),
}, nil)
if err != nil {
return err
}
ctx.Export("allSharedEdlsMap", allSharedEdls.Datas)
// Example of using pagination to get the first 5 EDLs.
paginatedEdls, err := scm.GetExternalDynamicListList(ctx, &scm.GetExternalDynamicListListArgs{
Folder: pulumi.StringRef("All"),
Limit: pulumi.IntRef(5),
Offset: pulumi.IntRef(0),
}, nil)
if err != nil {
return err
}
ctx.Export("paginatedEdlsDetails", pulumi.IntMap{
"totalInFolder": paginatedEdls.Total,
"limitUsed": paginatedEdls.Limit,
"offsetUsed": paginatedEdls.Offset,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Data source to fetch all external dynamic lists in the "All" folder.
var allSharedEdls = Scm.GetExternalDynamicListList.Invoke(new()
{
Folder = "All",
});
// Example of using pagination to get the first 5 EDLs.
var paginatedEdls = Scm.GetExternalDynamicListList.Invoke(new()
{
Folder = "All",
Limit = 5,
Offset = 0,
});
return new Dictionary<string, object?>
{
["allSharedEdlsMap"] = allSharedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Datas),
["paginatedEdlsDetails"] =
{
{ "totalInFolder", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Total) },
{ "limitUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Limit) },
{ "offsetUsed", paginatedEdls.Apply(getExternalDynamicListListResult => getExternalDynamicListListResult.Offset) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetExternalDynamicListListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Data source to fetch all external dynamic lists in the "All" folder.
final var allSharedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
.folder("All")
.build());
ctx.export("allSharedEdlsMap", allSharedEdls.datas());
// Example of using pagination to get the first 5 EDLs.
final var paginatedEdls = ScmFunctions.getExternalDynamicListList(GetExternalDynamicListListArgs.builder()
.folder("All")
.limit(5)
.offset(0)
.build());
ctx.export("paginatedEdlsDetails", Map.ofEntries(
Map.entry("totalInFolder", paginatedEdls.total()),
Map.entry("limitUsed", paginatedEdls.limit()),
Map.entry("offsetUsed", paginatedEdls.offset())
));
}
}
variables:
# Data source to fetch all external dynamic lists in the "All" folder.
allSharedEdls:
fn::invoke:
function: scm:getExternalDynamicListList
arguments:
folder: All
# Example of using pagination to get the first 5 EDLs.
paginatedEdls:
fn::invoke:
function: scm:getExternalDynamicListList
arguments:
folder: All
limit: 5
offset: 0
outputs:
# Creates a map where the key is the EDL ID and the value is the full object.
allSharedEdlsMap: ${allSharedEdls.datas}
# Outputs pagination details, such as the total count and the limit used.
paginatedEdlsDetails:
totalInFolder: ${paginatedEdls.total}
limitUsed: ${paginatedEdls.limit}
offsetUsed: ${paginatedEdls.offset}
Using getExternalDynamicListList
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getExternalDynamicListList(args: GetExternalDynamicListListArgs, opts?: InvokeOptions): Promise<GetExternalDynamicListListResult>
function getExternalDynamicListListOutput(args: GetExternalDynamicListListOutputArgs, opts?: InvokeOptions): Output<GetExternalDynamicListListResult>def get_external_dynamic_list_list(device: Optional[str] = None,
folder: Optional[str] = None,
limit: Optional[int] = None,
name: Optional[str] = None,
offset: Optional[int] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetExternalDynamicListListResult
def get_external_dynamic_list_list_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
offset: Optional[pulumi.Input[int]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetExternalDynamicListListResult]func GetExternalDynamicListList(ctx *Context, args *GetExternalDynamicListListArgs, opts ...InvokeOption) (*GetExternalDynamicListListResult, error)
func GetExternalDynamicListListOutput(ctx *Context, args *GetExternalDynamicListListOutputArgs, opts ...InvokeOption) GetExternalDynamicListListResultOutput> Note: This function is named GetExternalDynamicListList in the Go SDK.
public static class GetExternalDynamicListList
{
public static Task<GetExternalDynamicListListResult> InvokeAsync(GetExternalDynamicListListArgs args, InvokeOptions? opts = null)
public static Output<GetExternalDynamicListListResult> Invoke(GetExternalDynamicListListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
public static Output<GetExternalDynamicListListResult> getExternalDynamicListList(GetExternalDynamicListListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getExternalDynamicListList:getExternalDynamicListList
arguments:
# arguments dictionaryThe following arguments are supported:
getExternalDynamicListList Result
The following output properties are available:
- Datas
List<Get
External Dynamic List List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Snippet string
- The snippet of the item.
- Datas
[]Get
External Dynamic List List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Snippet string
- The snippet of the item.
- datas
List<Get
External Dynamic List List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- total Integer
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Integer
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Integer
- The offset of the first item to return.
- snippet String
- The snippet of the item.
- datas
Get
External Dynamic List List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- The Terraform ID.
- total number
- The total number of items.
- device string
- The device of the item.
- folder string
- The folder of the item. Default: Shared.
- limit number
- The max number of items to return. Default: 200.
- name string
- The name of the item.
- offset number
- The offset of the first item to return.
- snippet string
- The snippet of the item.
- datas
Sequence[Get
External Dynamic List List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- The Terraform ID.
- total int
- The total number of items.
- device str
- The device of the item.
- folder str
- The folder of the item. Default: Shared.
- limit int
- The max number of items to return. Default: 200.
- name str
- The name of the item.
- offset int
- The offset of the first item to return.
- snippet str
- The snippet of the item.
- datas List<Property Map>
- The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- total Number
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Number
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Number
- The offset of the first item to return.
- snippet String
- The snippet of the item.
Supporting Types
GetExternalDynamicListListData
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
- The folder of the item. Default: Shared.
- Id string
- The UUID of the external dynamic list
- Name string
- The name of the item.
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- Type
Get
External Dynamic List List Data 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 of the item. Default: Shared.
- Id string
- The UUID of the external dynamic list
- Name string
- The name of the item.
- Snippet string
- The snippet of the item.
- Tfid string
- The Terraform ID.
- Type
Get
External Dynamic List List Data 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 of the item. Default: Shared.
- id String
- The UUID of the external dynamic list
- name String
- The name of the item.
- snippet String
- The snippet of the item.
- tfid String
- The Terraform ID.
- type
Get
External Dynamic List List Data 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 of the item. Default: Shared.
- id string
- The UUID of the external dynamic list
- name string
- The name of the item.
- snippet string
- The snippet of the item.
- tfid string
- The Terraform ID.
- type
Get
External Dynamic List List Data 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 of the item. Default: Shared.
- id str
- The UUID of the external dynamic list
- name str
- The name of the item.
- snippet str
- The snippet of the item.
- tfid str
- The Terraform ID.
- type
Get
External Dynamic List List Data Type - 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 of the item. Default: Shared.
- id String
- The UUID of the external dynamic list
- name String
- The name of the item.
- snippet String
- The snippet of the item.
- tfid String
- The Terraform ID.
- type Property Map
- Type configuration for External Dynamic List
GetExternalDynamicListListDataType
- Domain
Get
External Dynamic List List Data Type Domain - Domain settings for Custom Domain type
- Imei
Get
External Dynamic List List Data Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Imsi
Get
External Dynamic List List Data Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Ip
Get
External Dynamic List List Data Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Url GetExternal Dynamic List List Data Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Url
Get
External Dynamic List List Data Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- Domain
Get
External Dynamic List List Data Type Domain - Domain settings for Custom Domain type
- Imei
Get
External Dynamic List List Data Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Imsi
Get
External Dynamic List List Data Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Ip
Get
External Dynamic List List Data Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Predefined
Url GetExternal Dynamic List List Data Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- Url
Get
External Dynamic List List Data Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List List Data Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List List Data Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List List Data Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List List Data Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Url GetExternal Dynamic List List Data Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List List Data Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List List Data Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List List Data Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List List Data Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List List Data Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined
Url GetExternal Dynamic List List Data Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List List Data Type Url URL settings for Custom URL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.
- domain
Get
External Dynamic List List Data Type Domain - Domain settings for Custom Domain type
- imei
Get
External Dynamic List List Data Type Imei IMEI Configuration settings
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- imsi
Get
External Dynamic List List Data Type Imsi IMSI Config for Custom IMSI type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- ip
Get
External Dynamic List List Data Type Ip IP settings for Custom IP type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined_
ip GetExternal Dynamic List List Data Type Predefined Ip Predefined IP settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- predefined_
url GetExternal Dynamic List List Data Type Predefined Url Predefined URL settings for EDL type
ℹ️ Note: You must specify exactly one of
domain,imei,imsi,ip,predefined_ip,predefined_url, andurl.- url
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeDomain
- Auth
Get
External Dynamic List List Data Type Domain Auth - Authentication settings for Custom Domain type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - Domain Exception List for Custom Domain type
- Expand
Domain bool - Enable/Disable expand domain
- Recurring
Get
External Dynamic List List Data Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- Auth
Get
External Dynamic List List Data Type Domain Auth - Authentication settings for Custom Domain type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - Domain Exception List for Custom Domain type
- Expand
Domain bool - Enable/Disable expand domain
- Recurring
Get
External Dynamic List List Data Type Domain Recurring - Update Schedule for Custom Domain type
- Url string
- External URL for Custom Domain type
- auth
Get
External Dynamic List List Data Type Domain Auth - Authentication settings for Custom Domain type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - Domain Exception List for Custom Domain type
- expand
Domain Boolean - Enable/Disable expand domain
- recurring
Get
External Dynamic List List Data Type Domain Recurring - Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
- auth
Get
External Dynamic List List Data Type Domain Auth - Authentication settings for Custom Domain type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - Domain Exception List for Custom Domain type
- expand
Domain boolean - Enable/Disable expand domain
- recurring
Get
External Dynamic List List Data Type Domain Recurring - Update Schedule for Custom Domain type
- url string
- External URL for Custom Domain type
- auth
Get
External Dynamic List List Data Type Domain Auth - Authentication settings for Custom Domain type
- certificate_
profile str - Profile for authenticating client certificates
- description str
- Description
- exception_
lists Sequence[str] - Domain Exception List for Custom Domain type
- expand_
domain bool - Enable/Disable expand domain
- recurring
Get
External Dynamic List List Data Type Domain Recurring - Update Schedule for Custom Domain type
- url str
- External URL for Custom Domain type
- auth Property Map
- Authentication settings for Custom Domain type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - Domain Exception List for Custom Domain type
- expand
Domain Boolean - Enable/Disable expand domain
- recurring Property Map
- Update Schedule for Custom Domain type
- url String
- External URL for Custom Domain type
GetExternalDynamicListListDataTypeDomainAuth
GetExternalDynamicListListDataTypeDomainRecurring
- Daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily settings for Domain recurring
- Five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily settings for Domain recurring
- five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly Weekly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily settings for Domain recurring
- five_
minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute Five minute settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly Hourly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly Monthly settings for Domain recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeDomainRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for Domain
- At string
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
- at string
- Daily Time specification hh (e.g. 20) for Domain
- at str
- Daily Time specification hh (e.g. 20) for Domain
- at String
- Daily Time specification hh (e.g. 20) for Domain
GetExternalDynamicListListDataTypeDomainRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for domain
- 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
GetExternalDynamicListListDataTypeDomainRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for Domain
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeImei
- Auth
Get
External Dynamic List List Data Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- Certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- Description string
- IMEI Description for Custom IMEI type
- Exception
Lists List<string> - IMEI Exception List for Custom IMEI type
- Recurring
Get
External Dynamic List List Data Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- Auth
Get
External Dynamic List List Data Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- Certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- Description string
- IMEI Description for Custom IMEI type
- Exception
Lists []string - IMEI Exception List for Custom IMEI type
- Recurring
Get
External Dynamic List List Data Type Imei Recurring - Recurring interval for IMEI updates
- Url string
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List List Data Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile String - IMEI Certificate Profile for Custom IMEI type
- description String
- IMEI Description for Custom IMEI type
- exception
Lists List<String> - IMEI Exception List for Custom IMEI type
- recurring
Get
External Dynamic List List Data Type Imei Recurring - Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List List Data Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile string - IMEI Certificate Profile for Custom IMEI type
- description string
- IMEI Description for Custom IMEI type
- exception
Lists string[] - IMEI Exception List for Custom IMEI type
- recurring
Get
External Dynamic List List Data Type Imei Recurring - Recurring interval for IMEI updates
- url string
- IMEI URL for Custom IMEI type
- auth
Get
External Dynamic List List Data Type Imei Auth - IMEI Auth Cnfig for Custom IMEI type
- certificate_
profile str - IMEI Certificate Profile for Custom IMEI type
- description str
- IMEI Description for Custom IMEI type
- exception_
lists Sequence[str] - IMEI Exception List for Custom IMEI type
- recurring
Get
External Dynamic List List Data Type Imei Recurring - Recurring interval for IMEI updates
- url str
- IMEI URL for Custom IMEI type
- auth Property Map
- IMEI Auth Cnfig for Custom IMEI type
- certificate
Profile String - IMEI Certificate Profile for Custom IMEI type
- description String
- IMEI Description for Custom IMEI type
- exception
Lists List<String> - IMEI Exception List for Custom IMEI type
- recurring Property Map
- Recurring interval for IMEI updates
- url String
- IMEI URL for Custom IMEI type
GetExternalDynamicListListDataTypeImeiAuth
GetExternalDynamicListListDataTypeImeiRecurring
- Daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily interval settings for IMEI updates
- Five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly Weekly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily interval settings for IMEI updates
- five_
minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute Five-minute interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly Hourly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly Monthly interval settings for IMEI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeImeiRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- At string
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
- at string
- Daily Time specification hh (e.g. 20) for IMEI
- at str
- Daily Time specification hh (e.g. 20) for IMEI
- at String
- Daily Time specification hh (e.g. 20) for IMEI
GetExternalDynamicListListDataTypeImeiRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IMEI
- 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
GetExternalDynamicListListDataTypeImeiRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IMEI
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeImsi
- Auth
Get
External Dynamic List List Data Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- Certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- Description string
- IMSI Description for Custom IMSI type
- Exception
Lists List<string> - IMSI Exception List for Custom IMSI type
- Recurring
Get
External Dynamic List List Data Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- Auth
Get
External Dynamic List List Data Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- Certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- Description string
- IMSI Description for Custom IMSI type
- Exception
Lists []string - IMSI Exception List for Custom IMSI type
- Recurring
Get
External Dynamic List List Data Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- Url string
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List List Data Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- certificate
Profile String - IMSI Certificate Profile for Custom IMSI type
- description String
- IMSI Description for Custom IMSI type
- exception
Lists List<String> - IMSI Exception List for Custom IMSI type
- recurring
Get
External Dynamic List List Data Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List List Data Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- certificate
Profile string - IMSI Certificate Profile for Custom IMSI type
- description string
- IMSI Description for Custom IMSI type
- exception
Lists string[] - IMSI Exception List for Custom IMSI type
- recurring
Get
External Dynamic List List Data Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url string
- IMSI URL for Custom IMSI type
- auth
Get
External Dynamic List List Data Type Imsi Auth - IMSI Auth Config for Custom IMSI type
- certificate_
profile str - IMSI Certificate Profile for Custom IMSI type
- description str
- IMSI Description for Custom IMSI type
- exception_
lists Sequence[str] - IMSI Exception List for Custom IMSI type
- recurring
Get
External Dynamic List List Data Type Imsi Recurring - IMSI Recuring Config for Custom IMSI type
- url str
- IMSI URL for Custom IMSI type
- auth Property Map
- IMSI Auth Config for Custom IMSI type
- certificate
Profile String - IMSI Certificate Profile for Custom IMSI type
- description String
- IMSI Description for Custom IMSI type
- exception
Lists List<String> - IMSI Exception List for Custom IMSI type
- recurring Property Map
- IMSI Recuring Config for Custom IMSI type
- url String
- IMSI URL for Custom IMSI type
GetExternalDynamicListListDataTypeImsiAuth
GetExternalDynamicListListDataTypeImsiRecurring
- Daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- Five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly Weekly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily interval settings for IMSI updates
- five_
minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute Five-minute interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly Hourly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly Monthly interval settings for IMSI updates
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeImsiRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- At string
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
- at string
- Daily Time specification hh (e.g. 20) for IMSI
- at str
- Daily Time specification hh (e.g. 20) for IMSI
- at String
- Daily Time specification hh (e.g. 20) for IMSI
GetExternalDynamicListListDataTypeImsiRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IMSI
- 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
GetExternalDynamicListListDataTypeImsiRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IMSI
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeIp
- Auth
Get
External Dynamic List List Data Type Ip Auth - Authentication settings for Custom IP type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - IP Exception List for Custom IP type
- Recurring
Get
External Dynamic List List Data Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- Auth
Get
External Dynamic List List Data Type Ip Auth - Authentication settings for Custom IP type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - IP Exception List for Custom IP type
- Recurring
Get
External Dynamic List List Data Type Ip Recurring - Update Schedule for Custom IP type
- Url string
- External URL for Custom IP type
- auth
Get
External Dynamic List List Data Type Ip Auth - Authentication settings for Custom IP type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - IP Exception List for Custom IP type
- recurring
Get
External Dynamic List List Data Type Ip Recurring - Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
- auth
Get
External Dynamic List List Data Type Ip Auth - Authentication settings for Custom IP type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - IP Exception List for Custom IP type
- recurring
Get
External Dynamic List List Data Type Ip Recurring - Update Schedule for Custom IP type
- url string
- External URL for Custom IP type
- auth
Get
External Dynamic List List Data Type Ip Auth - Authentication settings for Custom IP type
- certificate_
profile str - Profile for authenticating client certificates
- description str
- Description
- exception_
lists Sequence[str] - IP Exception List for Custom IP type
- recurring
Get
External Dynamic List List Data Type Ip Recurring - Update Schedule for Custom IP type
- url str
- External URL for Custom IP type
- auth Property Map
- Authentication settings for Custom IP type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - IP Exception List for Custom IP type
- recurring Property Map
- Update Schedule for Custom IP type
- url String
- External URL for Custom IP type
GetExternalDynamicListListDataTypeIpAuth
GetExternalDynamicListListDataTypeIpRecurring
- Daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily settings for IP recurring
- Five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily settings for IP recurring
- five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly Weekly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily settings for IP recurring
- five_
minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute Five minute settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly Hourly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly Monthly settings for IP recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeIpRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for IP
- At string
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
- at string
- Daily Time specification hh (e.g. 20) for IP
- at str
- Daily Time specification hh (e.g. 20) for IP
- at String
- Daily Time specification hh (e.g. 20) for IP
GetExternalDynamicListListDataTypeIpRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for IP
- 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
GetExternalDynamicListListDataTypeIpRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for IP
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypePredefinedIp
- Description string
- Description
- Exception
Lists List<string> - IP Exception List for Predefined IP type
- Url string
- URL source for Predefined IP type
- Description string
- Description
- Exception
Lists []string - IP Exception List for Predefined IP type
- Url string
- URL source for Predefined IP type
- description String
- Description
- exception
Lists List<String> - IP Exception List for Predefined IP type
- url String
- URL source for Predefined IP type
- description string
- Description
- exception
Lists string[] - IP Exception List for Predefined IP type
- url string
- URL source for Predefined IP type
- description str
- Description
- exception_
lists Sequence[str] - IP Exception List for Predefined IP type
- url str
- URL source for Predefined IP type
- description String
- Description
- exception
Lists List<String> - IP Exception List for Predefined IP type
- url String
- URL source for Predefined IP type
GetExternalDynamicListListDataTypePredefinedUrl
- Description string
- Description
- Exception
Lists List<string> - URL Exception List for Predefined URL type
- Url string
- URL source for Predefined URL type
- Description string
- Description
- Exception
Lists []string - URL Exception List for Predefined URL type
- Url string
- URL source for Predefined URL type
- description String
- Description
- exception
Lists List<String> - URL Exception List for Predefined URL type
- url String
- URL source for Predefined URL type
- description string
- Description
- exception
Lists string[] - URL Exception List for Predefined URL type
- url string
- URL source for Predefined URL type
- description str
- Description
- exception_
lists Sequence[str] - URL Exception List for Predefined URL type
- url str
- URL source for Predefined URL type
- description String
- Description
- exception
Lists List<String> - URL Exception List for Predefined URL type
- url String
- URL source for Predefined URL type
GetExternalDynamicListListDataTypeUrl
- Auth
Get
External Dynamic List List Data Type Url Auth - Authentication settings for Custom URL type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists List<string> - URL Exception List for Custom URL type
- Recurring
Get
External Dynamic List List Data Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- Auth
Get
External Dynamic List List Data Type Url Auth - Authentication settings for Custom URL type
- Certificate
Profile string - Profile for authenticating client certificates
- Description string
- Description
- Exception
Lists []string - URL Exception List for Custom URL type
- Recurring
Get
External Dynamic List List Data Type Url Recurring - Update Schedule for Custom URL type
- Url string
- External URL for Custom URL type
- auth
Get
External Dynamic List List Data Type Url Auth - Authentication settings for Custom URL type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - URL Exception List for Custom URL type
- recurring
Get
External Dynamic List List Data Type Url Recurring - Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
- auth
Get
External Dynamic List List Data Type Url Auth - Authentication settings for Custom URL type
- certificate
Profile string - Profile for authenticating client certificates
- description string
- Description
- exception
Lists string[] - URL Exception List for Custom URL type
- recurring
Get
External Dynamic List List Data Type Url Recurring - Update Schedule for Custom URL type
- url string
- External URL for Custom URL type
- auth
Get
External Dynamic List List Data Type Url Auth - Authentication settings for Custom URL type
- certificate_
profile str - Profile for authenticating client certificates
- description str
- Description
- exception_
lists Sequence[str] - URL Exception List for Custom URL type
- recurring
Get
External Dynamic List List Data Type Url Recurring - Update Schedule for Custom URL type
- url str
- External URL for Custom URL type
- auth Property Map
- Authentication settings for Custom URL type
- certificate
Profile String - Profile for authenticating client certificates
- description String
- Description
- exception
Lists List<String> - URL Exception List for Custom URL type
- recurring Property Map
- Update Schedule for Custom URL type
- url String
- External URL for Custom URL type
GetExternalDynamicListListDataTypeUrlAuth
GetExternalDynamicListListDataTypeUrlRecurring
- Daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- Daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily settings for URL recurring
- Five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Hourly
Get
External Dynamic List List Data Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Monthly
Get
External Dynamic List List Data Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- Weekly
Get
External Dynamic List List Data Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily settings for URL recurring
- five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data Type Url Recurring Weekly Weekly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily settings for URL recurring
- five_
minute GetExternal Dynamic List List Data Type Url Recurring Five Minute Five minute settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly Hourly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly Monthly settings for URL recurring
ℹ️ Note: You must specify exactly one of
daily,five_minute,hourly,monthly, andweekly.- weekly
Get
External Dynamic List List Data 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.
GetExternalDynamicListListDataTypeUrlRecurringDaily
- At string
- Daily Time specification hh (e.g. 20) for URL
- At string
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
- at string
- Daily Time specification hh (e.g. 20) for URL
- at str
- Daily Time specification hh (e.g. 20) for URL
- at String
- Daily Time specification hh (e.g. 20) for URL
GetExternalDynamicListListDataTypeUrlRecurringMonthly
- At string
- Monthly Time specification hh (e.g. 20) for URL
- 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
GetExternalDynamicListListDataTypeUrlRecurringWeekly
- at str
- Weekly Time specification hh (e.g. 20) for URL
- day_
of_ strweek - Day of week
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
