Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
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 "Shared" 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 "Shared" 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 "Shared" 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 "Shared" 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 "Shared" 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 "Shared" 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
- 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
- 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
- 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
- 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
- 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
- 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 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetExternalDynamicListListDataType
- Domain
Get
External Dynamic List List Data Type Domain - Domain
- Imei
Get
External Dynamic List List Data Type Imei - Imei
- Imsi
Get
External Dynamic List List Data Type Imsi - Imsi
- Ip
Get
External Dynamic List List Data Type Ip - Ip
- Predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip - Predefined ip
- Predefined
Url GetExternal Dynamic List List Data Type Predefined Url - Predefined url
- Url
Get
External Dynamic List List Data Type Url - Url
- Domain
Get
External Dynamic List List Data Type Domain - Domain
- Imei
Get
External Dynamic List List Data Type Imei - Imei
- Imsi
Get
External Dynamic List List Data Type Imsi - Imsi
- Ip
Get
External Dynamic List List Data Type Ip - Ip
- Predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip - Predefined ip
- Predefined
Url GetExternal Dynamic List List Data Type Predefined Url - Predefined url
- Url
Get
External Dynamic List List Data Type Url - Url
- domain
Get
External Dynamic List List Data Type Domain - Domain
- imei
Get
External Dynamic List List Data Type Imei - Imei
- imsi
Get
External Dynamic List List Data Type Imsi - Imsi
- ip
Get
External Dynamic List List Data Type Ip - Ip
- predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip - Predefined ip
- predefined
Url GetExternal Dynamic List List Data Type Predefined Url - Predefined url
- url
Get
External Dynamic List List Data Type Url - Url
- domain
Get
External Dynamic List List Data Type Domain - Domain
- imei
Get
External Dynamic List List Data Type Imei - Imei
- imsi
Get
External Dynamic List List Data Type Imsi - Imsi
- ip
Get
External Dynamic List List Data Type Ip - Ip
- predefined
Ip GetExternal Dynamic List List Data Type Predefined Ip - Predefined ip
- predefined
Url GetExternal Dynamic List List Data Type Predefined Url - Predefined url
- url
Get
External Dynamic List List Data Type Url - Url
- domain
Get
External Dynamic List List Data Type Domain - Domain
- imei
Get
External Dynamic List List Data Type Imei - Imei
- imsi
Get
External Dynamic List List Data Type Imsi - Imsi
- ip
Get
External Dynamic List List Data Type Ip - Ip
- predefined_
ip GetExternal Dynamic List List Data Type Predefined Ip - Predefined ip
- predefined_
url GetExternal Dynamic List List Data Type Predefined Url - Predefined url
- url
Get
External Dynamic List List Data 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
GetExternalDynamicListListDataTypeDomain
- Auth
Get
External Dynamic List List Data 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 List Data Type Domain Recurring - Recurring
- Url string
- Url
- Auth
Get
External Dynamic List List Data 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 List Data Type Domain Recurring - Recurring
- Url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Domain Recurring - Recurring
- url String
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Domain Recurring - Recurring
- url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data 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
GetExternalDynamicListListDataTypeDomainAuth
GetExternalDynamicListListDataTypeDomainRecurring
- Daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly - Weekly
- Daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Domain Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Domain Recurring Daily - Daily
- five_
minute GetExternal Dynamic List List Data Type Domain Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Domain Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Domain Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data 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
GetExternalDynamicListListDataTypeDomainRecurringDaily
- 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)
GetExternalDynamicListListDataTypeDomainRecurringMonthly
- 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
GetExternalDynamicListListDataTypeDomainRecurringWeekly
- at str
- Time specification hh (e.g. 20)
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeImei
- Auth
Get
External Dynamic List List Data 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 List Data Type Imei Recurring - Recurring
- Url string
- Url
- Auth
Get
External Dynamic List List Data 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 List Data Type Imei Recurring - Recurring
- Url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Imei Recurring - Recurring
- url String
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Imei Recurring - Recurring
- url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data 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
GetExternalDynamicListListDataTypeImeiAuth
GetExternalDynamicListListDataTypeImeiRecurring
- Daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly - Weekly
- Daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Imei Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imei Recurring Daily - Daily
- five_
minute GetExternal Dynamic List List Data Type Imei Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imei Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imei Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data 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
GetExternalDynamicListListDataTypeImeiRecurringDaily
- 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)
GetExternalDynamicListListDataTypeImeiRecurringMonthly
- 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
GetExternalDynamicListListDataTypeImeiRecurringWeekly
- at str
- Time specification hh (e.g. 20)
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeImsi
- Auth
Get
External Dynamic List List Data 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 List Data Type Imsi Recurring - Recurring
- Url string
- Url
- Auth
Get
External Dynamic List List Data 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 List Data Type Imsi Recurring - Recurring
- Url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Imsi Recurring - Recurring
- url String
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Imsi Recurring - Recurring
- url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data 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
GetExternalDynamicListListDataTypeImsiAuth
GetExternalDynamicListListDataTypeImsiRecurring
- Daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly - Weekly
- Daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Imsi Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Imsi Recurring Daily - Daily
- five_
minute GetExternal Dynamic List List Data Type Imsi Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Imsi Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Imsi Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data 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
GetExternalDynamicListListDataTypeImsiRecurringDaily
- 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)
GetExternalDynamicListListDataTypeImsiRecurringMonthly
- 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
GetExternalDynamicListListDataTypeImsiRecurringWeekly
- at str
- Time specification hh (e.g. 20)
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypeIp
- Auth
Get
External Dynamic List List Data 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 List Data Type Ip Recurring - Recurring
- Url string
- Url
- Auth
Get
External Dynamic List List Data 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 List Data Type Ip Recurring - Recurring
- Url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Ip Recurring - Recurring
- url String
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Ip Recurring - Recurring
- url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data 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
GetExternalDynamicListListDataTypeIpAuth
GetExternalDynamicListListDataTypeIpRecurring
- Daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly - Weekly
- Daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Ip Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Ip Recurring Daily - Daily
- five_
minute GetExternal Dynamic List List Data Type Ip Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Ip Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Ip Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Ip 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
GetExternalDynamicListListDataTypeIpRecurringDaily
- 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)
GetExternalDynamicListListDataTypeIpRecurringMonthly
- 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
GetExternalDynamicListListDataTypeIpRecurringWeekly
- at str
- Time specification hh (e.g. 20)
- day_
of_ strweek - Day of week
GetExternalDynamicListListDataTypePredefinedIp
- 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
GetExternalDynamicListListDataTypePredefinedUrl
- 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
GetExternalDynamicListListDataTypeUrl
- Auth
Get
External Dynamic List List Data 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 List Data Type Url Recurring - Recurring
- Url string
- Url
- Auth
Get
External Dynamic List List Data 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 List Data Type Url Recurring - Recurring
- Url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Url Recurring - Recurring
- url String
- Url
- auth
Get
External Dynamic List List Data 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 List Data Type Url Recurring - Recurring
- url string
- Url
- auth
Get
External Dynamic List List Data 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 List Data 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
GetExternalDynamicListListDataTypeUrlAuth
GetExternalDynamicListListDataTypeUrlRecurring
- Daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Url Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Url Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Url Recurring Weekly - Weekly
- Daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily
- Five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute - Five minute
- Hourly
Get
External Dynamic List List Data Type Url Recurring Hourly - Hourly
- Monthly
Get
External Dynamic List List Data Type Url Recurring Monthly - Monthly
- Weekly
Get
External Dynamic List List Data Type Url Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Url Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily
- five
Minute GetExternal Dynamic List List Data Type Url Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Url Recurring Weekly - Weekly
- daily
Get
External Dynamic List List Data Type Url Recurring Daily - Daily
- five_
minute GetExternal Dynamic List List Data Type Url Recurring Five Minute - Five minute
- hourly
Get
External Dynamic List List Data Type Url Recurring Hourly - Hourly
- monthly
Get
External Dynamic List List Data Type Url Recurring Monthly - Monthly
- weekly
Get
External Dynamic List List Data Type Url 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
GetExternalDynamicListListDataTypeUrlRecurringDaily
- 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)
GetExternalDynamicListListDataTypeUrlRecurringMonthly
- 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
GetExternalDynamicListListDataTypeUrlRecurringWeekly
- 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.
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
