1. Packages
  2. Zenduty Provider
  3. API Docs
  4. getSchedules
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty

zenduty.getSchedules

Explore with Pulumi AI

zenduty logo
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty
    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const exampleschedules = zenduty.getSchedules({
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleschedules = zenduty.get_schedules(team_id="")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/zenduty/zenduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zenduty.LookupSchedules(ctx, &zenduty.LookupSchedulesArgs{
    			TeamId: "",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zenduty = Pulumi.Zenduty;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleschedules = Zenduty.GetSchedules.Invoke(new()
        {
            TeamId = "",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.ZendutyFunctions;
    import com.pulumi.zenduty.inputs.GetSchedulesArgs;
    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 exampleschedules = ZendutyFunctions.getSchedules(GetSchedulesArgs.builder()
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleschedules:
        fn::invoke:
          function: zenduty:getSchedules
          arguments:
            teamId: ""
    

    or

    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const exampleschedules = zenduty.getSchedules({
        scheduleId: "",
        teamId: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    exampleschedules = zenduty.get_schedules(schedule_id="",
        team_id="")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/zenduty/zenduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zenduty.LookupSchedules(ctx, &zenduty.LookupSchedulesArgs{
    			ScheduleId: pulumi.StringRef(""),
    			TeamId:     "",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zenduty = Pulumi.Zenduty;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleschedules = Zenduty.GetSchedules.Invoke(new()
        {
            ScheduleId = "",
            TeamId = "",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.ZendutyFunctions;
    import com.pulumi.zenduty.inputs.GetSchedulesArgs;
    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 exampleschedules = ZendutyFunctions.getSchedules(GetSchedulesArgs.builder()
                .scheduleId("")
                .teamId("")
                .build());
    
        }
    }
    
    variables:
      exampleschedules:
        fn::invoke:
          function: zenduty:getSchedules
          arguments:
            scheduleId: ""
            teamId: ""
    
    import * as pulumi from "@pulumi/pulumi";
    
    export const schedules = data.zenduty_schedules.exampleschedules.schedules;
    
    import pulumi
    
    pulumi.export("schedules", data["zenduty_schedules"]["exampleschedules"]["schedules"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		ctx.Export("schedules", data.Zenduty_schedules.Exampleschedules.Schedules)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
        return new Dictionary<string, object?>
        {
            ["schedules"] = data.Zenduty_schedules.Exampleschedules.Schedules,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
            ctx.export("schedules", data.zenduty_schedules().exampleschedules().schedules());
        }
    }
    
    outputs:
      schedules: ${data.zenduty_schedules.exampleschedules.schedules}
    

    Using getSchedules

    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 getSchedules(args: GetSchedulesArgs, opts?: InvokeOptions): Promise<GetSchedulesResult>
    function getSchedulesOutput(args: GetSchedulesOutputArgs, opts?: InvokeOptions): Output<GetSchedulesResult>
    def get_schedules(id: Optional[str] = None,
                      schedule_id: Optional[str] = None,
                      team_id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetSchedulesResult
    def get_schedules_output(id: Optional[pulumi.Input[str]] = None,
                      schedule_id: Optional[pulumi.Input[str]] = None,
                      team_id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetSchedulesResult]
    func LookupSchedules(ctx *Context, args *LookupSchedulesArgs, opts ...InvokeOption) (*LookupSchedulesResult, error)
    func LookupSchedulesOutput(ctx *Context, args *LookupSchedulesOutputArgs, opts ...InvokeOption) LookupSchedulesResultOutput

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

    public static class GetSchedules 
    {
        public static Task<GetSchedulesResult> InvokeAsync(GetSchedulesArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulesResult> Invoke(GetSchedulesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulesResult> getSchedules(GetSchedulesArgs args, InvokeOptions options)
    public static Output<GetSchedulesResult> getSchedules(GetSchedulesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: zenduty:index/getSchedules:getSchedules
      arguments:
        # arguments dictionary

    The following arguments are supported:

    TeamId string
    The UniqueID of the team to query.
    Id string
    ScheduleId string
    The UniqueID of the schedule to query.along with team id
    TeamId string
    The UniqueID of the team to query.
    Id string
    ScheduleId string
    The UniqueID of the schedule to query.along with team id
    teamId String
    The UniqueID of the team to query.
    id String
    scheduleId String
    The UniqueID of the schedule to query.along with team id
    teamId string
    The UniqueID of the team to query.
    id string
    scheduleId string
    The UniqueID of the schedule to query.along with team id
    team_id str
    The UniqueID of the team to query.
    id str
    schedule_id str
    The UniqueID of the schedule to query.along with team id
    teamId String
    The UniqueID of the team to query.
    id String
    scheduleId String
    The UniqueID of the schedule to query.along with team id

    getSchedules Result

    The following output properties are available:

    Supporting Types

    GetSchedulesSchedule

    Description string
    The description of the schedule.
    Layers List<GetSchedulesScheduleLayer>
    The layers of the schedule as a list of maps.
    Name string
    The name of the override.
    Overrides List<GetSchedulesScheduleOverride>
    The list of overrides in the schedule.
    Summary string
    The summary of the schedule.
    Team string
    The unique_id of the team.
    TimeZone string
    The time_zone of the schedule.
    UniqueId string
    The unique_id of the schedule.
    Description string
    The description of the schedule.
    Layers []GetSchedulesScheduleLayer
    The layers of the schedule as a list of maps.
    Name string
    The name of the override.
    Overrides []GetSchedulesScheduleOverride
    The list of overrides in the schedule.
    Summary string
    The summary of the schedule.
    Team string
    The unique_id of the team.
    TimeZone string
    The time_zone of the schedule.
    UniqueId string
    The unique_id of the schedule.
    description String
    The description of the schedule.
    layers List<GetSchedulesScheduleLayer>
    The layers of the schedule as a list of maps.
    name String
    The name of the override.
    overrides List<GetSchedulesScheduleOverride>
    The list of overrides in the schedule.
    summary String
    The summary of the schedule.
    team String
    The unique_id of the team.
    timeZone String
    The time_zone of the schedule.
    uniqueId String
    The unique_id of the schedule.
    description string
    The description of the schedule.
    layers GetSchedulesScheduleLayer[]
    The layers of the schedule as a list of maps.
    name string
    The name of the override.
    overrides GetSchedulesScheduleOverride[]
    The list of overrides in the schedule.
    summary string
    The summary of the schedule.
    team string
    The unique_id of the team.
    timeZone string
    The time_zone of the schedule.
    uniqueId string
    The unique_id of the schedule.
    description str
    The description of the schedule.
    layers Sequence[GetSchedulesScheduleLayer]
    The layers of the schedule as a list of maps.
    name str
    The name of the override.
    overrides Sequence[GetSchedulesScheduleOverride]
    The list of overrides in the schedule.
    summary str
    The summary of the schedule.
    team str
    The unique_id of the team.
    time_zone str
    The time_zone of the schedule.
    unique_id str
    The unique_id of the schedule.
    description String
    The description of the schedule.
    layers List<Property Map>
    The layers of the schedule as a list of maps.
    name String
    The name of the override.
    overrides List<Property Map>
    The list of overrides in the schedule.
    summary String
    The summary of the schedule.
    team String
    The unique_id of the team.
    timeZone String
    The time_zone of the schedule.
    uniqueId String
    The unique_id of the schedule.

    GetSchedulesScheduleLayer

    IsActive bool
    LastEdited string
    Name string
    The name of the override.
    RestrictionType double
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    Restrictions List<GetSchedulesScheduleLayerRestriction>
    The list of restrictions in the layer.
    RotationEndTime string
    end time of the layer.
    RotationStartTime string
    start time of the layer.
    ShiftLength double
    The shift length of the layer in seconds.
    UniqueId string
    The unique_id of the schedule.
    Users List<GetSchedulesScheduleLayerUser>
    The list of users in the layer.
    IsActive bool
    LastEdited string
    Name string
    The name of the override.
    RestrictionType float64
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    Restrictions []GetSchedulesScheduleLayerRestriction
    The list of restrictions in the layer.
    RotationEndTime string
    end time of the layer.
    RotationStartTime string
    start time of the layer.
    ShiftLength float64
    The shift length of the layer in seconds.
    UniqueId string
    The unique_id of the schedule.
    Users []GetSchedulesScheduleLayerUser
    The list of users in the layer.
    isActive Boolean
    lastEdited String
    name String
    The name of the override.
    restrictionType Double
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    restrictions List<GetSchedulesScheduleLayerRestriction>
    The list of restrictions in the layer.
    rotationEndTime String
    end time of the layer.
    rotationStartTime String
    start time of the layer.
    shiftLength Double
    The shift length of the layer in seconds.
    uniqueId String
    The unique_id of the schedule.
    users List<GetSchedulesScheduleLayerUser>
    The list of users in the layer.
    isActive boolean
    lastEdited string
    name string
    The name of the override.
    restrictionType number
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    restrictions GetSchedulesScheduleLayerRestriction[]
    The list of restrictions in the layer.
    rotationEndTime string
    end time of the layer.
    rotationStartTime string
    start time of the layer.
    shiftLength number
    The shift length of the layer in seconds.
    uniqueId string
    The unique_id of the schedule.
    users GetSchedulesScheduleLayerUser[]
    The list of users in the layer.
    is_active bool
    last_edited str
    name str
    The name of the override.
    restriction_type float
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    restrictions Sequence[GetSchedulesScheduleLayerRestriction]
    The list of restrictions in the layer.
    rotation_end_time str
    end time of the layer.
    rotation_start_time str
    start time of the layer.
    shift_length float
    The shift length of the layer in seconds.
    unique_id str
    The unique_id of the schedule.
    users Sequence[GetSchedulesScheduleLayerUser]
    The list of users in the layer.
    isActive Boolean
    lastEdited String
    name String
    The name of the override.
    restrictionType Number
    The restriction_type of the layer. ex: 1 for day, 2 for week ,0 for default
    restrictions List<Property Map>
    The list of restrictions in the layer.
    rotationEndTime String
    end time of the layer.
    rotationStartTime String
    start time of the layer.
    shiftLength Number
    The shift length of the layer in seconds.
    uniqueId String
    The unique_id of the schedule.
    users List<Property Map>
    The list of users in the layer.

    GetSchedulesScheduleLayerRestriction

    Duration double
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    StartDayOfWeek double
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    StartTimeOfDay string
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    UniqueId string
    The unique_id of the schedule.
    Duration float64
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    StartDayOfWeek float64
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    StartTimeOfDay string
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    UniqueId string
    The unique_id of the schedule.
    duration Double
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    startDayOfWeek Double
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    startTimeOfDay String
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    uniqueId String
    The unique_id of the schedule.
    duration number
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    startDayOfWeek number
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    startTimeOfDay string
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    uniqueId string
    The unique_id of the schedule.
    duration float
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    start_day_of_week float
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    start_time_of_day str
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    unique_id str
    The unique_id of the schedule.
    duration Number
    The duration of the restriction in seconds.for daily restriction, max value can be 86400(246060). for weekly restriction, it is 604800(72460*60).
    startDayOfWeek Number
    The start_day_of_week of the restriction. for daily restriction, it is 7. for weekly restriction, it is the day of the week.ie: 1 for monday, 2 for tuesday, 3 for wednesday, 4 for thursday, 5 for friday, 6 for saturday, 7 for sunday.
    startTimeOfDay String
    The start_time_of_day of the restriction. time in HH:MM:SS format.
    uniqueId String
    The unique_id of the schedule.

    GetSchedulesScheduleLayerUser

    Position double
    The position of the user in the layer.
    UniqueId string
    The unique_id of the schedule.
    User string
    The user of the override.
    Position float64
    The position of the user in the layer.
    UniqueId string
    The unique_id of the schedule.
    User string
    The user of the override.
    position Double
    The position of the user in the layer.
    uniqueId String
    The unique_id of the schedule.
    user String
    The user of the override.
    position number
    The position of the user in the layer.
    uniqueId string
    The unique_id of the schedule.
    user string
    The user of the override.
    position float
    The position of the user in the layer.
    unique_id str
    The unique_id of the schedule.
    user str
    The user of the override.
    position Number
    The position of the user in the layer.
    uniqueId String
    The unique_id of the schedule.
    user String
    The user of the override.

    GetSchedulesScheduleOverride

    EndTime string
    The end_time of the override.
    Name string
    The name of the override.
    StartTime string
    The start_time of the override. .
    UniqueId string
    The unique_id of the schedule.
    User string
    The user of the override.
    EndTime string
    The end_time of the override.
    Name string
    The name of the override.
    StartTime string
    The start_time of the override. .
    UniqueId string
    The unique_id of the schedule.
    User string
    The user of the override.
    endTime String
    The end_time of the override.
    name String
    The name of the override.
    startTime String
    The start_time of the override. .
    uniqueId String
    The unique_id of the schedule.
    user String
    The user of the override.
    endTime string
    The end_time of the override.
    name string
    The name of the override.
    startTime string
    The start_time of the override. .
    uniqueId string
    The unique_id of the schedule.
    user string
    The user of the override.
    end_time str
    The end_time of the override.
    name str
    The name of the override.
    start_time str
    The start_time of the override. .
    unique_id str
    The unique_id of the schedule.
    user str
    The user of the override.
    endTime String
    The end_time of the override.
    name String
    The name of the override.
    startTime String
    The start_time of the override. .
    uniqueId String
    The unique_id of the schedule.
    user String
    The user of the override.

    Package Details

    Repository
    zenduty zenduty/terraform-provider-zenduty
    License
    Notes
    This Pulumi package is based on the zenduty Terraform Provider.
    zenduty logo
    zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty