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