1. Packages
  2. Packages
  3. Rootly
  4. API Docs
  5. EscalationPolicy
Viewing docs for Rootly v3.3.0
published on Thursday, May 7, 2026 by rootlyhq
rootly logo
Viewing docs for Rootly v3.3.0
published on Thursday, May 7, 2026 by rootlyhq

    Example Usage

    data "rootly_user" "john" {
      email = "demo@rootly.com"
    }
    
    data "rootly_user" "jane" {
      email = "demo1@rootly.com"
    }
    
    data "rootly_alert_urgency" "low" {
      name = "Low"
    }
    
    resource "rootly_team" "sre" {
      name     = "SREs On-Call"
      user_ids = [data.rootly_user.john.id, data.rootly_user.jane.id]
    }
    
    resource "rootly_schedule" "primary" {
      name              = "Primary On-Call Schedule"
      owner_user_id     = data.rootly_user.john.id
      all_time_coverage = false
    }
    
    resource "rootly_schedule_rotation" "weekdays" {
      schedule_id     = rootly_schedule.primary.id
      name            = "weekdays"
      active_all_week = false
      active_days = [
        "M",
        "T",
        "W",
        "R",
        "F",
      ]
      active_time_type = "custom"
      position         = 1
      schedule_rotationable_attributes = {
        handoff_time = "10:00"
      }
      schedule_rotationable_type = "ScheduleDailyRotation"
      time_zone                  = "America/Toronto"
    }
    
    # Define active days for the weekday rotation
    # Monday
    resource "rootly_schedule_rotation_active_day" "m1-weekday" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      day_name             = "M"
      active_time_attributes {
        start_time = "10:00"
        end_time   = "18:00"
      }
    }
    # Tuesday
    resource "rootly_schedule_rotation_active_day" "t1-weekday" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      day_name             = "T"
      active_time_attributes {
        start_time = "10:00"
        end_time   = "18:00"
      }
    }
    # Wednesday
    resource "rootly_schedule_rotation_active_day" "w1-weekday" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      day_name             = "W"
      active_time_attributes {
        start_time = "10:00"
        end_time   = "18:00"
      }
    }
    # Thursday
    resource "rootly_schedule_rotation_active_day" "th1-weekday" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      day_name             = "R"
      active_time_attributes {
        start_time = "10:00"
        end_time   = "18:00"
      }
    }
    # Friday
    resource "rootly_schedule_rotation_active_day" "f1-weekday" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      day_name             = "F"
      active_time_attributes {
        start_time = "10:00"
        end_time   = "18:00"
      }
    }
    
    resource "rootly_schedule_rotation_user" "john" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      position             = 1
      user_id              = data.rootly_user.john.id
    }
    
    resource "rootly_schedule_rotation_user" "jane" {
      schedule_rotation_id = rootly_schedule_rotation.weekdays.id
      position             = 2
      user_id              = data.rootly_user.jane.id
    }
    
    resource "rootly_escalation_policy" "primary" {
      name      = "Primary"
      group_ids = [rootly_team.sre.id]
    }
    
    resource "rootly_escalation_path" "default" {
      name                 = "Default"
      default              = true
      escalation_policy_id = rootly_escalation_policy.primary.id
    }
    
    resource "rootly_escalation_path" "ignore" {
      name                 = "Ignore"
      default              = false
      escalation_policy_id = rootly_escalation_policy.primary.id
      rules {
        rule_type   = "alert_urgency"
        urgency_ids = [data.rootly_alert_urgency.low.id]
      }
    }
    
    resource "rootly_escalation_level" "first" {
      escalation_policy_path_id = rootly_escalation_path.default.id
      escalation_policy_id      = rootly_escalation_policy.primary.id
      position                  = 1
      notification_target_params {
        team_members = "all"
        type         = "slack_channel"
        id           = "C06D4QHLAUE"
      }
      notification_target_params {
        type         = "schedule"
        id           = rootly_schedule.primary.id
        team_members = "all"
      }
    }
    
    # cycle-based round-robin everyone on the schedule
    resource "rootly_escalation_level" "second" {
      escalation_policy_path_id                       = rootly_escalation_path.default.id
      escalation_policy_id                            = rootly_escalation_policy.primary.id
      position                                        = 2
      delay                                           = 5
      paging_strategy_configuration_strategy          = "cycle"
      paging_strategy_configuration_schedule_strategy = "everyone"
      notification_target_params {
        type         = "schedule"
        id           = rootly_schedule.primary.id
        team_members = "all"
      }
    }
    

    Create EscalationPolicy Resource

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

    Constructor syntax

    new EscalationPolicy(name: string, args?: EscalationPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def EscalationPolicy(resource_name: str,
                         args: Optional[EscalationPolicyArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def EscalationPolicy(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         business_hours: Optional[EscalationPolicyBusinessHoursArgs] = None,
                         created_by_user_id: Optional[int] = None,
                         description: Optional[str] = None,
                         group_ids: Optional[Sequence[str]] = None,
                         last_updated_by_user_id: Optional[int] = None,
                         name: Optional[str] = None,
                         repeat_count: Optional[int] = None,
                         service_ids: Optional[Sequence[str]] = None)
    func NewEscalationPolicy(ctx *Context, name string, args *EscalationPolicyArgs, opts ...ResourceOption) (*EscalationPolicy, error)
    public EscalationPolicy(string name, EscalationPolicyArgs? args = null, CustomResourceOptions? opts = null)
    public EscalationPolicy(String name, EscalationPolicyArgs args)
    public EscalationPolicy(String name, EscalationPolicyArgs args, CustomResourceOptions options)
    
    type: rootly:EscalationPolicy
    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 EscalationPolicyArgs
    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 EscalationPolicyArgs
    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 EscalationPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EscalationPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EscalationPolicyArgs
    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 escalationPolicyResource = new Rootly.EscalationPolicy("escalationPolicyResource", new()
    {
        BusinessHours = new Rootly.Inputs.EscalationPolicyBusinessHoursArgs
        {
            Days = new[]
            {
                "string",
            },
            EndTime = "string",
            StartTime = "string",
            TimeZone = "string",
        },
        CreatedByUserId = 0,
        Description = "string",
        GroupIds = new[]
        {
            "string",
        },
        LastUpdatedByUserId = 0,
        Name = "string",
        RepeatCount = 0,
        ServiceIds = new[]
        {
            "string",
        },
    });
    
    example, err := rootly.NewEscalationPolicy(ctx, "escalationPolicyResource", &rootly.EscalationPolicyArgs{
    	BusinessHours: &rootly.EscalationPolicyBusinessHoursArgs{
    		Days: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		EndTime:   pulumi.String("string"),
    		StartTime: pulumi.String("string"),
    		TimeZone:  pulumi.String("string"),
    	},
    	CreatedByUserId: pulumi.Int(0),
    	Description:     pulumi.String("string"),
    	GroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	LastUpdatedByUserId: pulumi.Int(0),
    	Name:                pulumi.String("string"),
    	RepeatCount:         pulumi.Int(0),
    	ServiceIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var escalationPolicyResource = new EscalationPolicy("escalationPolicyResource", EscalationPolicyArgs.builder()
        .businessHours(EscalationPolicyBusinessHoursArgs.builder()
            .days("string")
            .endTime("string")
            .startTime("string")
            .timeZone("string")
            .build())
        .createdByUserId(0)
        .description("string")
        .groupIds("string")
        .lastUpdatedByUserId(0)
        .name("string")
        .repeatCount(0)
        .serviceIds("string")
        .build());
    
    escalation_policy_resource = rootly.EscalationPolicy("escalationPolicyResource",
        business_hours={
            "days": ["string"],
            "end_time": "string",
            "start_time": "string",
            "time_zone": "string",
        },
        created_by_user_id=0,
        description="string",
        group_ids=["string"],
        last_updated_by_user_id=0,
        name="string",
        repeat_count=0,
        service_ids=["string"])
    
    const escalationPolicyResource = new rootly.EscalationPolicy("escalationPolicyResource", {
        businessHours: {
            days: ["string"],
            endTime: "string",
            startTime: "string",
            timeZone: "string",
        },
        createdByUserId: 0,
        description: "string",
        groupIds: ["string"],
        lastUpdatedByUserId: 0,
        name: "string",
        repeatCount: 0,
        serviceIds: ["string"],
    });
    
    type: rootly:EscalationPolicy
    properties:
        businessHours:
            days:
                - string
            endTime: string
            startTime: string
            timeZone: string
        createdByUserId: 0
        description: string
        groupIds:
            - string
        lastUpdatedByUserId: 0
        name: string
        repeatCount: 0
        serviceIds:
            - string
    

    EscalationPolicy Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The EscalationPolicy resource accepts the following input properties:

    BusinessHours EscalationPolicyBusinessHours
    CreatedByUserId int
    User who created the escalation policy
    Description string
    The description of the escalation policy
    GroupIds List<string>
    Associated groups (alerting the group will trigger escalation policy)
    LastUpdatedByUserId int
    User who updated the escalation policy
    Name string
    The name of the escalation policy
    RepeatCount int
    The number of times this policy will be executed until someone acknowledges the alert
    ServiceIds List<string>
    Associated services (alerting the service will trigger escalation policy)
    BusinessHours EscalationPolicyBusinessHoursArgs
    CreatedByUserId int
    User who created the escalation policy
    Description string
    The description of the escalation policy
    GroupIds []string
    Associated groups (alerting the group will trigger escalation policy)
    LastUpdatedByUserId int
    User who updated the escalation policy
    Name string
    The name of the escalation policy
    RepeatCount int
    The number of times this policy will be executed until someone acknowledges the alert
    ServiceIds []string
    Associated services (alerting the service will trigger escalation policy)
    businessHours EscalationPolicyBusinessHours
    createdByUserId Integer
    User who created the escalation policy
    description String
    The description of the escalation policy
    groupIds List<String>
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId Integer
    User who updated the escalation policy
    name String
    The name of the escalation policy
    repeatCount Integer
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds List<String>
    Associated services (alerting the service will trigger escalation policy)
    businessHours EscalationPolicyBusinessHours
    createdByUserId number
    User who created the escalation policy
    description string
    The description of the escalation policy
    groupIds string[]
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId number
    User who updated the escalation policy
    name string
    The name of the escalation policy
    repeatCount number
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds string[]
    Associated services (alerting the service will trigger escalation policy)
    business_hours EscalationPolicyBusinessHoursArgs
    created_by_user_id int
    User who created the escalation policy
    description str
    The description of the escalation policy
    group_ids Sequence[str]
    Associated groups (alerting the group will trigger escalation policy)
    last_updated_by_user_id int
    User who updated the escalation policy
    name str
    The name of the escalation policy
    repeat_count int
    The number of times this policy will be executed until someone acknowledges the alert
    service_ids Sequence[str]
    Associated services (alerting the service will trigger escalation policy)
    businessHours Property Map
    createdByUserId Number
    User who created the escalation policy
    description String
    The description of the escalation policy
    groupIds List<String>
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId Number
    User who updated the escalation policy
    name String
    The name of the escalation policy
    repeatCount Number
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds List<String>
    Associated services (alerting the service will trigger escalation policy)

    Outputs

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

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

    Look up Existing EscalationPolicy Resource

    Get an existing EscalationPolicy 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?: EscalationPolicyState, opts?: CustomResourceOptions): EscalationPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            business_hours: Optional[EscalationPolicyBusinessHoursArgs] = None,
            created_by_user_id: Optional[int] = None,
            description: Optional[str] = None,
            group_ids: Optional[Sequence[str]] = None,
            last_updated_by_user_id: Optional[int] = None,
            name: Optional[str] = None,
            repeat_count: Optional[int] = None,
            service_ids: Optional[Sequence[str]] = None) -> EscalationPolicy
    func GetEscalationPolicy(ctx *Context, name string, id IDInput, state *EscalationPolicyState, opts ...ResourceOption) (*EscalationPolicy, error)
    public static EscalationPolicy Get(string name, Input<string> id, EscalationPolicyState? state, CustomResourceOptions? opts = null)
    public static EscalationPolicy get(String name, Output<String> id, EscalationPolicyState state, CustomResourceOptions options)
    resources:  _:    type: rootly:EscalationPolicy    get:      id: ${id}
    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:
    BusinessHours EscalationPolicyBusinessHours
    CreatedByUserId int
    User who created the escalation policy
    Description string
    The description of the escalation policy
    GroupIds List<string>
    Associated groups (alerting the group will trigger escalation policy)
    LastUpdatedByUserId int
    User who updated the escalation policy
    Name string
    The name of the escalation policy
    RepeatCount int
    The number of times this policy will be executed until someone acknowledges the alert
    ServiceIds List<string>
    Associated services (alerting the service will trigger escalation policy)
    BusinessHours EscalationPolicyBusinessHoursArgs
    CreatedByUserId int
    User who created the escalation policy
    Description string
    The description of the escalation policy
    GroupIds []string
    Associated groups (alerting the group will trigger escalation policy)
    LastUpdatedByUserId int
    User who updated the escalation policy
    Name string
    The name of the escalation policy
    RepeatCount int
    The number of times this policy will be executed until someone acknowledges the alert
    ServiceIds []string
    Associated services (alerting the service will trigger escalation policy)
    businessHours EscalationPolicyBusinessHours
    createdByUserId Integer
    User who created the escalation policy
    description String
    The description of the escalation policy
    groupIds List<String>
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId Integer
    User who updated the escalation policy
    name String
    The name of the escalation policy
    repeatCount Integer
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds List<String>
    Associated services (alerting the service will trigger escalation policy)
    businessHours EscalationPolicyBusinessHours
    createdByUserId number
    User who created the escalation policy
    description string
    The description of the escalation policy
    groupIds string[]
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId number
    User who updated the escalation policy
    name string
    The name of the escalation policy
    repeatCount number
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds string[]
    Associated services (alerting the service will trigger escalation policy)
    business_hours EscalationPolicyBusinessHoursArgs
    created_by_user_id int
    User who created the escalation policy
    description str
    The description of the escalation policy
    group_ids Sequence[str]
    Associated groups (alerting the group will trigger escalation policy)
    last_updated_by_user_id int
    User who updated the escalation policy
    name str
    The name of the escalation policy
    repeat_count int
    The number of times this policy will be executed until someone acknowledges the alert
    service_ids Sequence[str]
    Associated services (alerting the service will trigger escalation policy)
    businessHours Property Map
    createdByUserId Number
    User who created the escalation policy
    description String
    The description of the escalation policy
    groupIds List<String>
    Associated groups (alerting the group will trigger escalation policy)
    lastUpdatedByUserId Number
    User who updated the escalation policy
    name String
    The name of the escalation policy
    repeatCount Number
    The number of times this policy will be executed until someone acknowledges the alert
    serviceIds List<String>
    Associated services (alerting the service will trigger escalation policy)

    Supporting Types

    EscalationPolicyBusinessHours, EscalationPolicyBusinessHoursArgs

    Days List<string>
    Business days. Value must be one of M, T, W, R, F, U, S.
    EndTime string
    End time for business hours (HH:MM)
    StartTime string
    Start time for business hours (HH:MM)
    TimeZone string
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.
    Days []string
    Business days. Value must be one of M, T, W, R, F, U, S.
    EndTime string
    End time for business hours (HH:MM)
    StartTime string
    Start time for business hours (HH:MM)
    TimeZone string
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.
    days List<String>
    Business days. Value must be one of M, T, W, R, F, U, S.
    endTime String
    End time for business hours (HH:MM)
    startTime String
    Start time for business hours (HH:MM)
    timeZone String
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.
    days string[]
    Business days. Value must be one of M, T, W, R, F, U, S.
    endTime string
    End time for business hours (HH:MM)
    startTime string
    Start time for business hours (HH:MM)
    timeZone string
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.
    days Sequence[str]
    Business days. Value must be one of M, T, W, R, F, U, S.
    end_time str
    End time for business hours (HH:MM)
    start_time str
    Start time for business hours (HH:MM)
    time_zone str
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.
    days List<String>
    Business days. Value must be one of M, T, W, R, F, U, S.
    endTime String
    End time for business hours (HH:MM)
    startTime String
    Start time for business hours (HH:MM)
    timeZone String
    Time zone for business hours. Value must be one of International Date Line West, Etc/GMT+12, American Samoa, Pacific/Pago_Pago, Midway Island, Pacific/Midway, Hawaii, Pacific/Honolulu, Alaska, America/Juneau, Pacific Time (US & Canada), America/Los_Angeles, Tijuana, America/Tijuana, Arizona, America/Phoenix, Mazatlan, America/Mazatlan, Mountain Time (US & Canada), America/Denver, Central America, America/Guatemala, Central Time (US & Canada), America/Chicago, Chihuahua, America/Chihuahua, Guadalajara, America/Mexico_City, Mexico City, America/Mexico_City, Monterrey, America/Monterrey, Saskatchewan, America/Regina, Bogota, America/Bogota, Eastern Time (US & Canada), America/New_York, Indiana (East), America/Indiana/Indianapolis, Lima, America/Lima, Quito, America/Lima, Atlantic Time (Canada), America/Halifax, Caracas, America/Caracas, Georgetown, America/Guyana, La Paz, America/La_Paz, Puerto Rico, America/Puerto_Rico, Santiago, America/Santiago, Newfoundland, America/St_Johns, Asuncion, America/Asuncion, Brasilia, America/Sao_Paulo, Buenos Aires, America/Argentina/Buenos_Aires, Montevideo, America/Montevideo, Greenland, America/Nuuk, Mid-Atlantic, Atlantic/South_Georgia, Azores, Atlantic/Azores, Cape Verde Is., Atlantic/Cape_Verde, Casablanca, Africa/Casablanca, Dublin, Europe/Dublin, Edinburgh, Europe/London, Lisbon, Europe/Lisbon, London, Europe/London, Monrovia, Africa/Monrovia, UTC, Etc/UTC, Amsterdam, Europe/Amsterdam, Belgrade, Europe/Belgrade, Berlin, Europe/Berlin, Bern, Europe/Zurich, Bratislava, Europe/Bratislava, Brussels, Europe/Brussels, Budapest, Europe/Budapest, Copenhagen, Europe/Copenhagen, Ljubljana, Europe/Ljubljana, Madrid, Europe/Madrid, Paris, Europe/Paris, Prague, Europe/Prague, Rome, Europe/Rome, Sarajevo, Europe/Sarajevo, Skopje, Europe/Skopje, Stockholm, Europe/Stockholm, Vienna, Europe/Vienna, Warsaw, Europe/Warsaw, West Central Africa, Africa/Algiers, Zagreb, Europe/Zagreb, Zurich, Europe/Zurich, Athens, Europe/Athens, Bucharest, Europe/Bucharest, Cairo, Africa/Cairo, Harare, Africa/Harare, Helsinki, Europe/Helsinki, Jerusalem, Asia/Jerusalem, Kaliningrad, Europe/Kaliningrad, Kyiv, Europe/Kiev, Pretoria, Africa/Johannesburg, Riga, Europe/Riga, Sofia, Europe/Sofia, Tallinn, Europe/Tallinn, Vilnius, Europe/Vilnius, Baghdad, Asia/Baghdad, Istanbul, Europe/Istanbul, Kuwait, Asia/Kuwait, Minsk, Europe/Minsk, Moscow, Europe/Moscow, Nairobi, Africa/Nairobi, Riyadh, Asia/Riyadh, St. Petersburg, Europe/Moscow, Volgograd, Europe/Volgograd, Tehran, Asia/Tehran, Abu Dhabi, Asia/Muscat, Baku, Asia/Baku, Muscat, Asia/Muscat, Samara, Europe/Samara, Tbilisi, Asia/Tbilisi, Yerevan, Asia/Yerevan, Kabul, Asia/Kabul, Almaty, Asia/Almaty, Astana, Asia/Almaty, Ekaterinburg, Asia/Yekaterinburg, Islamabad, Asia/Karachi, Karachi, Asia/Karachi, Tashkent, Asia/Tashkent, Chennai, Asia/Kolkata, Kolkata, Asia/Kolkata, Mumbai, Asia/Kolkata, New Delhi, Asia/Kolkata, Sri Jayawardenepura, Asia/Colombo, Kathmandu, Asia/Kathmandu, Dhaka, Asia/Dhaka, Urumqi, Asia/Urumqi, Rangoon, Asia/Rangoon, Bangkok, Asia/Bangkok, Hanoi, Asia/Bangkok, Jakarta, Asia/Jakarta, Krasnoyarsk, Asia/Krasnoyarsk, Novosibirsk, Asia/Novosibirsk, Beijing, Asia/Shanghai, Chongqing, Asia/Chongqing, Hong Kong, Asia/Hong_Kong, Irkutsk, Asia/Irkutsk, Kuala Lumpur, Asia/Kuala_Lumpur, Perth, Australia/Perth, Singapore, Asia/Singapore, Taipei, Asia/Taipei, Ulaanbaatar, Asia/Ulaanbaatar, Osaka, Asia/Tokyo, Sapporo, Asia/Tokyo, Seoul, Asia/Seoul, Tokyo, Asia/Tokyo, Yakutsk, Asia/Yakutsk, Adelaide, Australia/Adelaide, Darwin, Australia/Darwin, Brisbane, Australia/Brisbane, Canberra, Australia/Canberra, Guam, Pacific/Guam, Hobart, Australia/Hobart, Melbourne, Australia/Melbourne, Port Moresby, Pacific/Port_Moresby, Sydney, Australia/Sydney, Vladivostok, Asia/Vladivostok, Magadan, Asia/Magadan, New Caledonia, Pacific/Noumea, Solomon Is., Pacific/Guadalcanal, Srednekolymsk, Asia/Srednekolymsk, Auckland, Pacific/Auckland, Fiji, Pacific/Fiji, Kamchatka, Asia/Kamchatka, Marshall Is., Pacific/Majuro, Wellington, Pacific/Auckland, Chatham Is., Pacific/Chatham, Nuku'alofa, Pacific/Tongatapu, Samoa, Pacific/Apia, Tokelau Is., Pacific/Fakaofo.

    Import

    rootly.EscalationPolicy can be imported using the import command.

    $ pulumi import rootly:index/escalationPolicy:EscalationPolicy primary a816421c-6ceb-481a-87c4-585e47451f24
    

    Or using an import block.

    Locate the resource id in the web app, or retrieve it by listing resources through the API if it’s not visible in the web app.

    HCL can be generated from the import block using the -generate-config-out flag.

    pulumi preview -generate-config-out=generated.tf
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rootly Terraform Provider.
    rootly logo
    Viewing docs for Rootly v3.3.0
    published on Thursday, May 7, 2026 by rootlyhq
      Try Pulumi Cloud free. Your team will thank you.