1. Packages
  2. Strata Cloud Manager
  3. API Docs
  4. Schedule
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

scm.Schedule

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.Schedule("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.Schedule("example")
    
    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 {
    		_, err := scm.NewSchedule(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Scm.Schedule("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.Schedule;
    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) {
            var example = new Schedule("example");
    
        }
    }
    
    resources:
      example:
        type: scm:Schedule
    

    Create Schedule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Schedule(name: string, args: ScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def Schedule(resource_name: str,
                 args: ScheduleArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Schedule(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 schedule_type: Optional[ScheduleScheduleTypeArgs] = None,
                 device: Optional[str] = None,
                 folder: Optional[str] = None,
                 name: Optional[str] = None,
                 snippet: Optional[str] = None)
    func NewSchedule(ctx *Context, name string, args ScheduleArgs, opts ...ResourceOption) (*Schedule, error)
    public Schedule(string name, ScheduleArgs args, CustomResourceOptions? opts = null)
    public Schedule(String name, ScheduleArgs args)
    public Schedule(String name, ScheduleArgs args, CustomResourceOptions options)
    
    type: scm:Schedule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ScheduleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var scheduleResource = new Scm.Schedule("scheduleResource", new()
    {
        ScheduleType = new Scm.Inputs.ScheduleScheduleTypeArgs
        {
            NonRecurringLists = new[]
            {
                "string",
            },
            Recurring = new Scm.Inputs.ScheduleScheduleTypeRecurringArgs
            {
                DailyLists = new[]
                {
                    "string",
                },
                Weekly = new Scm.Inputs.ScheduleScheduleTypeRecurringWeeklyArgs
                {
                    FridayLists = new[]
                    {
                        "string",
                    },
                    MondayLists = new[]
                    {
                        "string",
                    },
                    SaturdayLists = new[]
                    {
                        "string",
                    },
                    SundayLists = new[]
                    {
                        "string",
                    },
                    ThursdayLists = new[]
                    {
                        "string",
                    },
                    TuesdayLists = new[]
                    {
                        "string",
                    },
                    WednesdayLists = new[]
                    {
                        "string",
                    },
                },
            },
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewSchedule(ctx, "scheduleResource", &scm.ScheduleArgs{
    	ScheduleType: &scm.ScheduleScheduleTypeArgs{
    		NonRecurringLists: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Recurring: &scm.ScheduleScheduleTypeRecurringArgs{
    			DailyLists: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Weekly: &scm.ScheduleScheduleTypeRecurringWeeklyArgs{
    				FridayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				MondayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				SaturdayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				SundayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				ThursdayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				TuesdayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				WednesdayLists: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var scheduleResource = new Schedule("scheduleResource", ScheduleArgs.builder()
        .scheduleType(ScheduleScheduleTypeArgs.builder()
            .nonRecurringLists("string")
            .recurring(ScheduleScheduleTypeRecurringArgs.builder()
                .dailyLists("string")
                .weekly(ScheduleScheduleTypeRecurringWeeklyArgs.builder()
                    .fridayLists("string")
                    .mondayLists("string")
                    .saturdayLists("string")
                    .sundayLists("string")
                    .thursdayLists("string")
                    .tuesdayLists("string")
                    .wednesdayLists("string")
                    .build())
                .build())
            .build())
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .build());
    
    schedule_resource = scm.Schedule("scheduleResource",
        schedule_type=scm.ScheduleScheduleTypeArgs(
            non_recurring_lists=["string"],
            recurring=scm.ScheduleScheduleTypeRecurringArgs(
                daily_lists=["string"],
                weekly=scm.ScheduleScheduleTypeRecurringWeeklyArgs(
                    friday_lists=["string"],
                    monday_lists=["string"],
                    saturday_lists=["string"],
                    sunday_lists=["string"],
                    thursday_lists=["string"],
                    tuesday_lists=["string"],
                    wednesday_lists=["string"],
                ),
            ),
        ),
        device="string",
        folder="string",
        name="string",
        snippet="string")
    
    const scheduleResource = new scm.Schedule("scheduleResource", {
        scheduleType: {
            nonRecurringLists: ["string"],
            recurring: {
                dailyLists: ["string"],
                weekly: {
                    fridayLists: ["string"],
                    mondayLists: ["string"],
                    saturdayLists: ["string"],
                    sundayLists: ["string"],
                    thursdayLists: ["string"],
                    tuesdayLists: ["string"],
                    wednesdayLists: ["string"],
                },
            },
        },
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
    });
    
    type: scm:Schedule
    properties:
        device: string
        folder: string
        name: string
        scheduleType:
            nonRecurringLists:
                - string
            recurring:
                dailyLists:
                    - string
                weekly:
                    fridayLists:
                        - string
                    mondayLists:
                        - string
                    saturdayLists:
                        - string
                    sundayLists:
                        - string
                    thursdayLists:
                        - string
                    tuesdayLists:
                        - string
                    wednesdayLists:
                        - string
        snippet: string
    

    Schedule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Schedule resource accepts the following input properties:

    ScheduleType ScheduleScheduleType
    The ScheduleType param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    Snippet string
    The Snippet param.
    ScheduleType ScheduleScheduleTypeArgs
    The ScheduleType param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    Snippet string
    The Snippet param.
    scheduleType ScheduleScheduleType
    The ScheduleType param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    snippet String
    The Snippet param.
    scheduleType ScheduleScheduleType
    The ScheduleType param.
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    snippet string
    The Snippet param.
    schedule_type ScheduleScheduleTypeArgs
    The ScheduleType param.
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    snippet str
    The Snippet param.
    scheduleType Property Map
    The ScheduleType param.
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    snippet String
    The Snippet param.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Schedule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing Schedule Resource

    Get an existing Schedule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ScheduleState, opts?: CustomResourceOptions): Schedule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            schedule_type: Optional[ScheduleScheduleTypeArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> Schedule
    func GetSchedule(ctx *Context, name string, id IDInput, state *ScheduleState, opts ...ResourceOption) (*Schedule, error)
    public static Schedule Get(string name, Input<string> id, ScheduleState? state, CustomResourceOptions? opts = null)
    public static Schedule get(String name, Output<String> id, ScheduleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    ScheduleType ScheduleScheduleType
    The ScheduleType param.
    Snippet string
    The Snippet param.
    Tfid string
    Device string
    The Device param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    ScheduleType ScheduleScheduleTypeArgs
    The ScheduleType param.
    Snippet string
    The Snippet param.
    Tfid string
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    scheduleType ScheduleScheduleType
    The ScheduleType param.
    snippet String
    The Snippet param.
    tfid String
    device string
    The Device param.
    folder string
    The Folder param.
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    scheduleType ScheduleScheduleType
    The ScheduleType param.
    snippet string
    The Snippet param.
    tfid string
    device str
    The Device param.
    folder str
    The Folder param.
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    schedule_type ScheduleScheduleTypeArgs
    The ScheduleType param.
    snippet str
    The Snippet param.
    tfid str
    device String
    The Device param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
    scheduleType Property Map
    The ScheduleType param.
    snippet String
    The Snippet param.
    tfid String

    Supporting Types

    ScheduleScheduleType, ScheduleScheduleTypeArgs

    NonRecurringLists List<string>
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    Recurring ScheduleScheduleTypeRecurring
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring
    NonRecurringLists []string
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    Recurring ScheduleScheduleTypeRecurring
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring
    nonRecurringLists List<String>
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    recurring ScheduleScheduleTypeRecurring
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring
    nonRecurringLists string[]
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    recurring ScheduleScheduleTypeRecurring
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring
    non_recurring_lists Sequence[str]
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    recurring ScheduleScheduleTypeRecurring
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring
    nonRecurringLists List<String>
    The NonRecurringList param. Individual elements in this list are subject to additional validation. String length must be between 33 and 33 characters. String validation regex: [0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9])-[0-9][0-9][0-9][0-9]\/([0][1-9]|[1][0-2])\/([0-2][0-9]|[3][0-1])@([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: non_recurring, recurring
    recurring Property Map
    The Recurring param. Ensure that only one of the following is specified: non_recurring, recurring

    ScheduleScheduleTypeRecurring, ScheduleScheduleTypeRecurringArgs

    DailyLists List<string>
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    Weekly ScheduleScheduleTypeRecurringWeekly
    The Weekly param. Ensure that only one of the following is specified: daily, weekly
    DailyLists []string
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    Weekly ScheduleScheduleTypeRecurringWeekly
    The Weekly param. Ensure that only one of the following is specified: daily, weekly
    dailyLists List<String>
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    weekly ScheduleScheduleTypeRecurringWeekly
    The Weekly param. Ensure that only one of the following is specified: daily, weekly
    dailyLists string[]
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    weekly ScheduleScheduleTypeRecurringWeekly
    The Weekly param. Ensure that only one of the following is specified: daily, weekly
    daily_lists Sequence[str]
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    weekly ScheduleScheduleTypeRecurringWeekly
    The Weekly param. Ensure that only one of the following is specified: daily, weekly
    dailyLists List<String>
    The DailyList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]). Ensure that only one of the following is specified: daily, weekly
    weekly Property Map
    The Weekly param. Ensure that only one of the following is specified: daily, weekly

    ScheduleScheduleTypeRecurringWeekly, ScheduleScheduleTypeRecurringWeeklyArgs

    FridayLists List<string>
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    MondayLists List<string>
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    SaturdayLists List<string>
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    SundayLists List<string>
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    ThursdayLists List<string>
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    TuesdayLists List<string>
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    WednesdayLists List<string>
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    FridayLists []string
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    MondayLists []string
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    SaturdayLists []string
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    SundayLists []string
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    ThursdayLists []string
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    TuesdayLists []string
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    WednesdayLists []string
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    fridayLists List<String>
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    mondayLists List<String>
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    saturdayLists List<String>
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    sundayLists List<String>
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    thursdayLists List<String>
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    tuesdayLists List<String>
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    wednesdayLists List<String>
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    fridayLists string[]
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    mondayLists string[]
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    saturdayLists string[]
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    sundayLists string[]
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    thursdayLists string[]
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    tuesdayLists string[]
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    wednesdayLists string[]
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    friday_lists Sequence[str]
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    monday_lists Sequence[str]
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    saturday_lists Sequence[str]
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    sunday_lists Sequence[str]
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    thursday_lists Sequence[str]
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    tuesday_lists Sequence[str]
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    wednesday_lists Sequence[str]
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    fridayLists List<String>
    The FridayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    mondayLists List<String>
    The MondayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    saturdayLists List<String>
    The SaturdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    sundayLists List<String>
    The SundayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    thursdayLists List<String>
    The ThursdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    tuesdayLists List<String>
    The TuesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).
    wednesdayLists List<String>
    The WednesdayList param. Individual elements in this list are subject to additional validation. String length must be between 11 and 11 characters. String validation regex: ([01][0-9]|[2][0-3]):([0-5][0-9])-([01][0-9]|[2][0-3]):([0-5][0-9]).

    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 v0.1.1 published on Friday, May 31, 2024 by Pulumi