Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi
scm.Schedule
Explore with Pulumi AI
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:
- Schedule
Type ScheduleSchedule Type - 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 ScheduleSchedule Type Args - 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 ScheduleSchedule Type - 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 ScheduleSchedule Type - 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 ScheduleSchedule Type Args - 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.
- schedule
Type 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:
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.
- 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.
- Schedule
Type ScheduleSchedule Type - 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.
- Schedule
Type ScheduleSchedule Type Args - 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.
- schedule
Type ScheduleSchedule Type - 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.
- schedule
Type ScheduleSchedule Type - 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 ScheduleSchedule Type Args - 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.
- schedule
Type Property Map - The ScheduleType param.
- snippet String
- The Snippet param.
- tfid String
Supporting Types
ScheduleScheduleType, ScheduleScheduleTypeArgs
- Non
Recurring List<string>Lists - 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
Schedule
Schedule Type Recurring - The Recurring param. Ensure that only one of the following is specified:
non_recurring
,recurring
- Non
Recurring []stringLists - 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
Schedule
Schedule Type Recurring - The Recurring param. Ensure that only one of the following is specified:
non_recurring
,recurring
- non
Recurring List<String>Lists - 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
Schedule
Schedule Type Recurring - The Recurring param. Ensure that only one of the following is specified:
non_recurring
,recurring
- non
Recurring string[]Lists - 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
Schedule
Schedule Type Recurring - The Recurring param. Ensure that only one of the following is specified:
non_recurring
,recurring
- non_
recurring_ Sequence[str]lists - 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
Schedule
Schedule Type Recurring - The Recurring param. Ensure that only one of the following is specified:
non_recurring
,recurring
- non
Recurring List<String>Lists - 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
- Daily
Lists 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
Schedule
Schedule Type Recurring Weekly - The Weekly param. Ensure that only one of the following is specified:
daily
,weekly
- Daily
Lists []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
Schedule
Schedule Type Recurring Weekly - The Weekly param. Ensure that only one of the following is specified:
daily
,weekly
- daily
Lists 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
Schedule
Schedule Type Recurring Weekly - The Weekly param. Ensure that only one of the following is specified:
daily
,weekly
- daily
Lists 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
Schedule
Schedule Type Recurring Weekly - 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
Schedule
Schedule Type Recurring Weekly - The Weekly param. Ensure that only one of the following is specified:
daily
,weekly
- daily
Lists 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
- Friday
Lists 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])
. - Monday
Lists 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])
. - Saturday
Lists 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])
. - Sunday
Lists 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])
. - Thursday
Lists 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])
. - Tuesday
Lists 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])
. - Wednesday
Lists 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])
.
- Friday
Lists []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])
. - Monday
Lists []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])
. - Saturday
Lists []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])
. - Sunday
Lists []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])
. - Thursday
Lists []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])
. - Tuesday
Lists []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])
. - Wednesday
Lists []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 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])
. - monday
Lists 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])
. - saturday
Lists 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])
. - sunday
Lists 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])
. - thursday
Lists 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])
. - tuesday
Lists 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])
. - wednesday
Lists 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])
.
- friday
Lists 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])
. - monday
Lists 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])
. - saturday
Lists 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])
. - sunday
Lists 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])
. - thursday
Lists 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])
. - tuesday
Lists 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])
. - wednesday
Lists 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])
.
- friday
Lists 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])
. - monday
Lists 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])
. - saturday
Lists 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])
. - sunday
Lists 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])
. - thursday
Lists 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])
. - tuesday
Lists 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])
. - wednesday
Lists 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.