1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getUpdateScheduleList
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const allSettings = scm.getUpdateScheduleList({
        folder: "All",
    });
    export const fetchedSettingListSummary = {
        countOfSettingsFetched: allSettings.then(allSettings => allSettings.total),
        value: allSettings.then(allSettings => allSettings.datas?.[0]),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    all_settings = scm.get_update_schedule_list(folder="All")
    pulumi.export("fetchedSettingListSummary", {
        "countOfSettingsFetched": all_settings.total,
        "value": all_settings.datas[0],
    })
    
    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 {
    		allSettings, err := scm.GetUpdateScheduleList(ctx, &scm.GetUpdateScheduleListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("fetchedSettingListSummary", pulumi.Map{
    			"countOfSettingsFetched": allSettings.Total,
    			"value":                  allSettings.Datas[0],
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var allSettings = Scm.GetUpdateScheduleList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["fetchedSettingListSummary"] = 
            {
                { "countOfSettingsFetched", allSettings.Apply(getUpdateScheduleListResult => getUpdateScheduleListResult.Total) },
                { "value", allSettings.Apply(getUpdateScheduleListResult => getUpdateScheduleListResult.Datas[0]) },
            },
        };
    });
    
    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.GetUpdateScheduleListArgs;
    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) {
            final var allSettings = ScmFunctions.getUpdateScheduleList(GetUpdateScheduleListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("fetchedSettingListSummary", Map.ofEntries(
                Map.entry("countOfSettingsFetched", allSettings.total()),
                Map.entry("value", allSettings.datas()[0])
            ));
        }
    }
    
    variables:
      allSettings:
        fn::invoke:
          function: scm:getUpdateScheduleList
          arguments:
            folder: All
    outputs:
      # -----------------------------------------------------------------------------
      # OUTPUT: Display the fetched list data
      # -----------------------------------------------------------------------------
      fetchedSettingListSummary:
        countOfSettingsFetched: ${allSettings.total}
        value: ${allSettings.datas[0]}
    

    Using getUpdateScheduleList

    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 getUpdateScheduleList(args: GetUpdateScheduleListArgs, opts?: InvokeOptions): Promise<GetUpdateScheduleListResult>
    function getUpdateScheduleListOutput(args: GetUpdateScheduleListOutputArgs, opts?: InvokeOptions): Output<GetUpdateScheduleListResult>
    def get_update_schedule_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) -> GetUpdateScheduleListResult
    def get_update_schedule_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[GetUpdateScheduleListResult]
    func GetUpdateScheduleList(ctx *Context, args *GetUpdateScheduleListArgs, opts ...InvokeOption) (*GetUpdateScheduleListResult, error)
    func GetUpdateScheduleListOutput(ctx *Context, args *GetUpdateScheduleListOutputArgs, opts ...InvokeOption) GetUpdateScheduleListResultOutput

    > Note: This function is named GetUpdateScheduleList in the Go SDK.

    public static class GetUpdateScheduleList 
    {
        public static Task<GetUpdateScheduleListResult> InvokeAsync(GetUpdateScheduleListArgs args, InvokeOptions? opts = null)
        public static Output<GetUpdateScheduleListResult> Invoke(GetUpdateScheduleListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUpdateScheduleListResult> getUpdateScheduleList(GetUpdateScheduleListArgs args, InvokeOptions options)
    public static Output<GetUpdateScheduleListResult> getUpdateScheduleList(GetUpdateScheduleListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getUpdateScheduleList:getUpdateScheduleList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    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.
    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.
    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.
    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.
    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.
    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.

    getUpdateScheduleList Result

    The following output properties are available:

    Datas List<GetUpdateScheduleListData>
    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 []GetUpdateScheduleListData
    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<GetUpdateScheduleListData>
    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 GetUpdateScheduleListData[]
    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[GetUpdateScheduleListData]
    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

    GetUpdateScheduleListData

    Device string
    The device in which the resource is defined
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Snippet string
    The snippet of the item.
    Tfid string
    UpdateSchedule GetUpdateScheduleListDataUpdateSchedule
    Update schedule
    Device string
    The device in which the resource is defined
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Snippet string
    The snippet of the item.
    Tfid string
    UpdateSchedule GetUpdateScheduleListDataUpdateSchedule
    Update schedule
    device String
    The device in which the resource is defined
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    snippet String
    The snippet of the item.
    tfid String
    updateSchedule GetUpdateScheduleListDataUpdateSchedule
    Update schedule
    device string
    The device in which the resource is defined
    folder string
    The folder of the item. Default: Shared.
    id string
    UUID of the resource
    snippet string
    The snippet of the item.
    tfid string
    updateSchedule GetUpdateScheduleListDataUpdateSchedule
    Update schedule
    device str
    The device in which the resource is defined
    folder str
    The folder of the item. Default: Shared.
    id str
    UUID of the resource
    snippet str
    The snippet of the item.
    tfid str
    update_schedule GetUpdateScheduleListDataUpdateSchedule
    Update schedule
    device String
    The device in which the resource is defined
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    snippet String
    The snippet of the item.
    tfid String
    updateSchedule Property Map
    Update schedule

    GetUpdateScheduleListDataUpdateSchedule

    GetUpdateScheduleListDataUpdateScheduleAntiVirus

    GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurring

    Daily GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily
    Daily
    Hourly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    None GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    SyncToPeer bool
    Sync to peer
    Threshold int
    Threshold
    Weekly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    Daily GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily
    Daily
    Hourly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    None GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    SyncToPeer bool
    Sync to peer
    Threshold int
    Threshold
    Weekly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily
    Daily
    hourly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    none GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    syncToPeer Boolean
    Sync to peer
    threshold Integer
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily
    Daily
    hourly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    none GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    syncToPeer boolean
    Sync to peer
    threshold number
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily
    Daily
    hourly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    none GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    sync_to_peer bool
    Sync to peer
    threshold int
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    daily Property Map
    Daily
    hourly Property Map

    Hourly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    none Property Map

    None

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    syncToPeer Boolean
    Sync to peer
    threshold Number
    Threshold
    weekly Property Map

    Weekly

    ℹ️ Note: You must specify exactly one of daily, hourly, none, and weekly.

    GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringDaily

    Action string
    Action
    At string
    At
    Action string
    Action
    At string
    At
    action String
    Action
    at String
    At
    action string
    Action
    at string
    At
    action str
    Action
    at str
    At
    action String
    Action
    at String
    At

    GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringHourly

    Action string
    Action
    At int
    At
    Action string
    Action
    At int
    At
    action String
    Action
    at Integer
    At
    action string
    Action
    at number
    At
    action str
    Action
    at int
    At
    action String
    Action
    at Number
    At

    GetUpdateScheduleListDataUpdateScheduleAntiVirusRecurringWeekly

    Action string
    Action
    At string
    At
    DayOfWeek string
    Day of week
    Action string
    Action
    At string
    At
    DayOfWeek string
    Day of week
    action String
    Action
    at String
    At
    dayOfWeek String
    Day of week
    action string
    Action
    at string
    At
    dayOfWeek string
    Day of week
    action str
    Action
    at str
    At
    day_of_week str
    Day of week
    action String
    Action
    at String
    At
    dayOfWeek String
    Day of week

    GetUpdateScheduleListDataUpdateScheduleThreats

    GetUpdateScheduleListDataUpdateScheduleThreatsRecurring

    Daily GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily
    Daily
    Every30Mins GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    Hourly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    NewAppThreshold int
    New app threshold
    None GetUpdateScheduleListDataUpdateScheduleThreatsRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    SyncToPeer bool
    Sync to peer
    Threshold int
    Threshold
    Weekly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    Daily GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily
    Daily
    Every30Mins GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    Hourly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    NewAppThreshold int
    New app threshold
    None GetUpdateScheduleListDataUpdateScheduleThreatsRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    SyncToPeer bool
    Sync to peer
    Threshold int
    Threshold
    Weekly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily
    Daily
    every30Mins GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    hourly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    newAppThreshold Integer
    New app threshold
    none GetUpdateScheduleListDataUpdateScheduleThreatsRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    syncToPeer Boolean
    Sync to peer
    threshold Integer
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily
    Daily
    every30Mins GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    hourly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    newAppThreshold number
    New app threshold
    none GetUpdateScheduleListDataUpdateScheduleThreatsRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    syncToPeer boolean
    Sync to peer
    threshold number
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    daily GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily
    Daily
    every30_mins GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    hourly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    new_app_threshold int
    New app threshold
    none GetUpdateScheduleListDataUpdateScheduleThreatsRecurringNone

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    sync_to_peer bool
    Sync to peer
    threshold int
    Threshold
    weekly GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    daily Property Map
    Daily
    every30Mins Property Map

    Every30 mins

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    hourly Property Map

    Hourly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    newAppThreshold Number
    New app threshold
    none Property Map

    None

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    syncToPeer Boolean
    Sync to peer
    threshold Number
    Threshold
    weekly Property Map

    Weekly

    ℹ️ Note: You must specify exactly one of daily, every_30_mins, hourly, none, and weekly.

    GetUpdateScheduleListDataUpdateScheduleThreatsRecurringDaily

    Action string
    Action
    At string
    At
    DisableNewContent bool
    Disable new content
    Action string
    Action
    At string
    At
    DisableNewContent bool
    Disable new content
    action String
    Action
    at String
    At
    disableNewContent Boolean
    Disable new content
    action string
    Action
    at string
    At
    disableNewContent boolean
    Disable new content
    action str
    Action
    at str
    At
    disable_new_content bool
    Disable new content
    action String
    Action
    at String
    At
    disableNewContent Boolean
    Disable new content

    GetUpdateScheduleListDataUpdateScheduleThreatsRecurringEvery30Mins

    Action string
    Action
    At int
    At
    DisableNewContent bool
    Disable new content
    Action string
    Action
    At int
    At
    DisableNewContent bool
    Disable new content
    action String
    Action
    at Integer
    At
    disableNewContent Boolean
    Disable new content
    action string
    Action
    at number
    At
    disableNewContent boolean
    Disable new content
    action str
    Action
    at int
    At
    disable_new_content bool
    Disable new content
    action String
    Action
    at Number
    At
    disableNewContent Boolean
    Disable new content

    GetUpdateScheduleListDataUpdateScheduleThreatsRecurringHourly

    Action string
    Action
    At double
    At
    DisableNewContent bool
    Disable new content
    Action string
    Action
    At float64
    At
    DisableNewContent bool
    Disable new content
    action String
    Action
    at Double
    At
    disableNewContent Boolean
    Disable new content
    action string
    Action
    at number
    At
    disableNewContent boolean
    Disable new content
    action str
    Action
    at float
    At
    disable_new_content bool
    Disable new content
    action String
    Action
    at Number
    At
    disableNewContent Boolean
    Disable new content

    GetUpdateScheduleListDataUpdateScheduleThreatsRecurringWeekly

    Action string
    Action
    At string
    At
    DayOfWeek string
    Day of week
    DisableNewContent bool
    Disable new content
    Action string
    Action
    At string
    At
    DayOfWeek string
    Day of week
    DisableNewContent bool
    Disable new content
    action String
    Action
    at String
    At
    dayOfWeek String
    Day of week
    disableNewContent Boolean
    Disable new content
    action string
    Action
    at string
    At
    dayOfWeek string
    Day of week
    disableNewContent boolean
    Disable new content
    action str
    Action
    at str
    At
    day_of_week str
    Day of week
    disable_new_content bool
    Disable new content
    action String
    Action
    at String
    At
    dayOfWeek String
    Day of week
    disableNewContent Boolean
    Disable new content

    GetUpdateScheduleListDataUpdateScheduleWildfire

    GetUpdateScheduleListDataUpdateScheduleWildfireRecurring

    Every15Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins
    Every15 mins
    Every30Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    EveryHour GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    EveryMin GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    None GetUpdateScheduleListDataUpdateScheduleWildfireRecurringNone

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    RealTime GetUpdateScheduleListDataUpdateScheduleWildfireRecurringRealTime

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    Every15Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins
    Every15 mins
    Every30Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    EveryHour GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    EveryMin GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    None GetUpdateScheduleListDataUpdateScheduleWildfireRecurringNone

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    RealTime GetUpdateScheduleListDataUpdateScheduleWildfireRecurringRealTime

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every15Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins
    Every15 mins
    every30Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyHour GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyMin GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    none GetUpdateScheduleListDataUpdateScheduleWildfireRecurringNone

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    realTime GetUpdateScheduleListDataUpdateScheduleWildfireRecurringRealTime

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every15Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins
    Every15 mins
    every30Mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyHour GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyMin GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    none GetUpdateScheduleListDataUpdateScheduleWildfireRecurringNone

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    realTime GetUpdateScheduleListDataUpdateScheduleWildfireRecurringRealTime

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every15_mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins
    Every15 mins
    every30_mins GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every_hour GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every_min GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    none GetUpdateScheduleListDataUpdateScheduleWildfireRecurringNone

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    real_time GetUpdateScheduleListDataUpdateScheduleWildfireRecurringRealTime

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    every15Mins Property Map
    Every15 mins
    every30Mins Property Map

    Every30 mins

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyHour Property Map

    Every hour

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    everyMin Property Map

    Every min

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    none Property Map

    None

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    realTime Property Map

    Real time

    ℹ️ Note: You must specify exactly one of every_15_mins, every_30_mins, every_hour, every_min, none, and real_time.

    GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery15Mins

    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    action String
    Action
    at Integer
    At
    syncToPeer Boolean
    Sync to peer
    action string
    Action
    at number
    At
    syncToPeer boolean
    Sync to peer
    action str
    Action
    at int
    At
    sync_to_peer bool
    Sync to peer
    action String
    Action
    at Number
    At
    syncToPeer Boolean
    Sync to peer

    GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEvery30Mins

    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    action String
    Action
    at Integer
    At
    syncToPeer Boolean
    Sync to peer
    action string
    Action
    at number
    At
    syncToPeer boolean
    Sync to peer
    action str
    Action
    at int
    At
    sync_to_peer bool
    Sync to peer
    action String
    Action
    at Number
    At
    syncToPeer Boolean
    Sync to peer

    GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryHour

    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    Action string
    Action
    At int
    At
    SyncToPeer bool
    Sync to peer
    action String
    Action
    at Integer
    At
    syncToPeer Boolean
    Sync to peer
    action string
    Action
    at number
    At
    syncToPeer boolean
    Sync to peer
    action str
    Action
    at int
    At
    sync_to_peer bool
    Sync to peer
    action String
    Action
    at Number
    At
    syncToPeer Boolean
    Sync to peer

    GetUpdateScheduleListDataUpdateScheduleWildfireRecurringEveryMin

    Action string
    Action
    SyncToPeer bool
    Sync to peer
    Action string
    Action
    SyncToPeer bool
    Sync to peer
    action String
    Action
    syncToPeer Boolean
    Sync to peer
    action string
    Action
    syncToPeer boolean
    Sync to peer
    action str
    Action
    sync_to_peer bool
    Sync to peer
    action String
    Action
    syncToPeer Boolean
    Sync to peer

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate