1. Packages
  2. Rootly
  3. API Docs
  4. WorkflowTaskCreateGoogleCalendarEvent
Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly

rootly.WorkflowTaskCreateGoogleCalendarEvent

Explore with Pulumi AI

rootly logo
Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly

    Manages workflow create_google_calendar_event task.

    Example Usage

    Coming soon!

    Coming soon!

    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.rootly.WorkflowIncident;
    import com.pulumi.rootly.WorkflowIncidentArgs;
    import com.pulumi.rootly.inputs.WorkflowIncidentTriggerParamsArgs;
    import com.pulumi.rootly.WorkflowTaskCreateGoogleCalendarEvent;
    import com.pulumi.rootly.WorkflowTaskCreateGoogleCalendarEventArgs;
    import com.pulumi.rootly.inputs.WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs;
    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 schedulePostmortemReviewMeeting = new WorkflowIncident("schedulePostmortemReviewMeeting", WorkflowIncidentArgs.builder()        
                .description("Automatically schedule a Google Calendar meeting to review the postmortem.")
                .triggerParams(WorkflowIncidentTriggerParamsArgs.builder()
                    .triggers("status_updated")
                    .incidentStatuses("resolved")
                    .incidentConditionStatus("IS")
                    .build())
                .enabled(true)
                .build());
    
            var createGoogleCalendarEvent = new WorkflowTaskCreateGoogleCalendarEvent("createGoogleCalendarEvent", WorkflowTaskCreateGoogleCalendarEventArgs.builder()        
                .workflowId(schedulePostmortemReviewMeeting.id())
                .skipOnFailure(false)
                .enabled(true)
                .taskParams(WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs.builder()
                    .name("Schedule Postmortem Review Meeting")
                    .daysUntilMeeting(7)
                    .meetingDuration("60min")
                    .summary("#{{ incident.sequential_id }} {{ incident.title }} Postmortem Review")
                    .build())
                .build());
    
        }
    }
    

    Coming soon!

    Coming soon!

    resources:
      schedulePostmortemReviewMeeting:
        type: rootly:WorkflowIncident
        properties:
          description: Automatically schedule a Google Calendar meeting to review the postmortem.
          triggerParams:
            triggers:
              - status_updated
            incidentStatuses:
              - resolved
            incidentConditionStatus: IS
          enabled: true
      createGoogleCalendarEvent:
        type: rootly:WorkflowTaskCreateGoogleCalendarEvent
        properties:
          workflowId: ${schedulePostmortemReviewMeeting.id}
          skipOnFailure: false
          enabled: true
          taskParams:
            name: Schedule Postmortem Review Meeting
            daysUntilMeeting: 7
            meetingDuration: 60min
            summary: '#{{ incident.sequential_id }} {{ incident.title }} Postmortem Review'
    

    Create WorkflowTaskCreateGoogleCalendarEvent Resource

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

    Constructor syntax

    new WorkflowTaskCreateGoogleCalendarEvent(name: string, args: WorkflowTaskCreateGoogleCalendarEventArgs, opts?: CustomResourceOptions);
    @overload
    def WorkflowTaskCreateGoogleCalendarEvent(resource_name: str,
                                              args: WorkflowTaskCreateGoogleCalendarEventArgs,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkflowTaskCreateGoogleCalendarEvent(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              task_params: Optional[WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs] = None,
                                              workflow_id: Optional[str] = None,
                                              enabled: Optional[bool] = None,
                                              name: Optional[str] = None,
                                              position: Optional[int] = None,
                                              skip_on_failure: Optional[bool] = None)
    func NewWorkflowTaskCreateGoogleCalendarEvent(ctx *Context, name string, args WorkflowTaskCreateGoogleCalendarEventArgs, opts ...ResourceOption) (*WorkflowTaskCreateGoogleCalendarEvent, error)
    public WorkflowTaskCreateGoogleCalendarEvent(string name, WorkflowTaskCreateGoogleCalendarEventArgs args, CustomResourceOptions? opts = null)
    public WorkflowTaskCreateGoogleCalendarEvent(String name, WorkflowTaskCreateGoogleCalendarEventArgs args)
    public WorkflowTaskCreateGoogleCalendarEvent(String name, WorkflowTaskCreateGoogleCalendarEventArgs args, CustomResourceOptions options)
    
    type: rootly:WorkflowTaskCreateGoogleCalendarEvent
    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 WorkflowTaskCreateGoogleCalendarEventArgs
    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 WorkflowTaskCreateGoogleCalendarEventArgs
    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 WorkflowTaskCreateGoogleCalendarEventArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowTaskCreateGoogleCalendarEventArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowTaskCreateGoogleCalendarEventArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var workflowTaskCreateGoogleCalendarEventResource = new Rootly.WorkflowTaskCreateGoogleCalendarEvent("workflowTaskCreateGoogleCalendarEventResource", new()
    {
        TaskParams = new Rootly.Inputs.WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs
        {
            Summary = "string",
            Description = "string",
            TimeOfMeeting = "string",
            Attendees = new[]
            {
                "string",
            },
            MeetingDuration = "string",
            DaysUntilMeeting = 0,
            CanGuestsInviteOthers = false,
            ExcludeWeekends = false,
            ConferenceSolutionKey = "string",
            PostToIncidentTimeline = false,
            PostToSlackChannels = new[]
            {
                new Rootly.Inputs.WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArgs
                {
                    Id = "string",
                    Name = "string",
                },
            },
            SendUpdates = false,
            CanGuestsSeeOtherGuests = false,
            TaskType = "string",
            CanGuestsModifyEvent = false,
            TimeZone = "string",
        },
        WorkflowId = "string",
        Enabled = false,
        Name = "string",
        Position = 0,
        SkipOnFailure = false,
    });
    
    example, err := rootly.NewWorkflowTaskCreateGoogleCalendarEvent(ctx, "workflowTaskCreateGoogleCalendarEventResource", &rootly.WorkflowTaskCreateGoogleCalendarEventArgs{
    	TaskParams: &rootly.WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs{
    		Summary:       pulumi.String("string"),
    		Description:   pulumi.String("string"),
    		TimeOfMeeting: pulumi.String("string"),
    		Attendees: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MeetingDuration:        pulumi.String("string"),
    		DaysUntilMeeting:       pulumi.Int(0),
    		CanGuestsInviteOthers:  pulumi.Bool(false),
    		ExcludeWeekends:        pulumi.Bool(false),
    		ConferenceSolutionKey:  pulumi.String("string"),
    		PostToIncidentTimeline: pulumi.Bool(false),
    		PostToSlackChannels: rootly.WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArray{
    			&rootly.WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArgs{
    				Id:   pulumi.String("string"),
    				Name: pulumi.String("string"),
    			},
    		},
    		SendUpdates:             pulumi.Bool(false),
    		CanGuestsSeeOtherGuests: pulumi.Bool(false),
    		TaskType:                pulumi.String("string"),
    		CanGuestsModifyEvent:    pulumi.Bool(false),
    		TimeZone:                pulumi.String("string"),
    	},
    	WorkflowId:    pulumi.String("string"),
    	Enabled:       pulumi.Bool(false),
    	Name:          pulumi.String("string"),
    	Position:      pulumi.Int(0),
    	SkipOnFailure: pulumi.Bool(false),
    })
    
    var workflowTaskCreateGoogleCalendarEventResource = new WorkflowTaskCreateGoogleCalendarEvent("workflowTaskCreateGoogleCalendarEventResource", WorkflowTaskCreateGoogleCalendarEventArgs.builder()        
        .taskParams(WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs.builder()
            .summary("string")
            .description("string")
            .timeOfMeeting("string")
            .attendees("string")
            .meetingDuration("string")
            .daysUntilMeeting(0)
            .canGuestsInviteOthers(false)
            .excludeWeekends(false)
            .conferenceSolutionKey("string")
            .postToIncidentTimeline(false)
            .postToSlackChannels(WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArgs.builder()
                .id("string")
                .name("string")
                .build())
            .sendUpdates(false)
            .canGuestsSeeOtherGuests(false)
            .taskType("string")
            .canGuestsModifyEvent(false)
            .timeZone("string")
            .build())
        .workflowId("string")
        .enabled(false)
        .name("string")
        .position(0)
        .skipOnFailure(false)
        .build());
    
    workflow_task_create_google_calendar_event_resource = rootly.WorkflowTaskCreateGoogleCalendarEvent("workflowTaskCreateGoogleCalendarEventResource",
        task_params=rootly.WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs(
            summary="string",
            description="string",
            time_of_meeting="string",
            attendees=["string"],
            meeting_duration="string",
            days_until_meeting=0,
            can_guests_invite_others=False,
            exclude_weekends=False,
            conference_solution_key="string",
            post_to_incident_timeline=False,
            post_to_slack_channels=[rootly.WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArgs(
                id="string",
                name="string",
            )],
            send_updates=False,
            can_guests_see_other_guests=False,
            task_type="string",
            can_guests_modify_event=False,
            time_zone="string",
        ),
        workflow_id="string",
        enabled=False,
        name="string",
        position=0,
        skip_on_failure=False)
    
    const workflowTaskCreateGoogleCalendarEventResource = new rootly.WorkflowTaskCreateGoogleCalendarEvent("workflowTaskCreateGoogleCalendarEventResource", {
        taskParams: {
            summary: "string",
            description: "string",
            timeOfMeeting: "string",
            attendees: ["string"],
            meetingDuration: "string",
            daysUntilMeeting: 0,
            canGuestsInviteOthers: false,
            excludeWeekends: false,
            conferenceSolutionKey: "string",
            postToIncidentTimeline: false,
            postToSlackChannels: [{
                id: "string",
                name: "string",
            }],
            sendUpdates: false,
            canGuestsSeeOtherGuests: false,
            taskType: "string",
            canGuestsModifyEvent: false,
            timeZone: "string",
        },
        workflowId: "string",
        enabled: false,
        name: "string",
        position: 0,
        skipOnFailure: false,
    });
    
    type: rootly:WorkflowTaskCreateGoogleCalendarEvent
    properties:
        enabled: false
        name: string
        position: 0
        skipOnFailure: false
        taskParams:
            attendees:
                - string
            canGuestsInviteOthers: false
            canGuestsModifyEvent: false
            canGuestsSeeOtherGuests: false
            conferenceSolutionKey: string
            daysUntilMeeting: 0
            description: string
            excludeWeekends: false
            meetingDuration: string
            postToIncidentTimeline: false
            postToSlackChannels:
                - id: string
                  name: string
            sendUpdates: false
            summary: string
            taskType: string
            timeOfMeeting: string
            timeZone: string
        workflowId: string
    

    WorkflowTaskCreateGoogleCalendarEvent 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 WorkflowTaskCreateGoogleCalendarEvent resource accepts the following input properties:

    TaskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    taskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Integer
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    workflowId string
    The ID of the parent workflow
    enabled boolean
    Enable/disable this workflow task
    name string
    Name of the workflow task
    position number
    The position of the workflow task (1 being top of list)
    skipOnFailure boolean
    Skip workflow task if any failures
    task_params WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs
    The parameters for this workflow task.
    workflow_id str
    The ID of the parent workflow
    enabled bool
    Enable/disable this workflow task
    name str
    Name of the workflow task
    position int
    The position of the workflow task (1 being top of list)
    skip_on_failure bool
    Skip workflow task if any failures
    taskParams Property Map
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Number
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkflowTaskCreateGoogleCalendarEvent 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 WorkflowTaskCreateGoogleCalendarEvent Resource

    Get an existing WorkflowTaskCreateGoogleCalendarEvent 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?: WorkflowTaskCreateGoogleCalendarEventState, opts?: CustomResourceOptions): WorkflowTaskCreateGoogleCalendarEvent
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            position: Optional[int] = None,
            skip_on_failure: Optional[bool] = None,
            task_params: Optional[WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs] = None,
            workflow_id: Optional[str] = None) -> WorkflowTaskCreateGoogleCalendarEvent
    func GetWorkflowTaskCreateGoogleCalendarEvent(ctx *Context, name string, id IDInput, state *WorkflowTaskCreateGoogleCalendarEventState, opts ...ResourceOption) (*WorkflowTaskCreateGoogleCalendarEvent, error)
    public static WorkflowTaskCreateGoogleCalendarEvent Get(string name, Input<string> id, WorkflowTaskCreateGoogleCalendarEventState? state, CustomResourceOptions? opts = null)
    public static WorkflowTaskCreateGoogleCalendarEvent get(String name, Output<String> id, WorkflowTaskCreateGoogleCalendarEventState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Integer
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled boolean
    Enable/disable this workflow task
    name string
    Name of the workflow task
    position number
    The position of the workflow task (1 being top of list)
    skipOnFailure boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreateGoogleCalendarEventTaskParams
    The parameters for this workflow task.
    workflowId string
    The ID of the parent workflow
    enabled bool
    Enable/disable this workflow task
    name str
    Name of the workflow task
    position int
    The position of the workflow task (1 being top of list)
    skip_on_failure bool
    Skip workflow task if any failures
    task_params WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs
    The parameters for this workflow task.
    workflow_id str
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Number
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams Property Map
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow

    Supporting Types

    WorkflowTaskCreateGoogleCalendarEventTaskParams, WorkflowTaskCreateGoogleCalendarEventTaskParamsArgs

    Attendees List<string>
    Emails of attendees
    DaysUntilMeeting int
    The days until meeting
    Description string
    The event description
    MeetingDuration string
    Meeting duration in format like '1 hour', '30 minutes'
    Summary string
    The event summary
    TimeOfMeeting string
    Time of meeting in format HH:MM
    CanGuestsInviteOthers bool
    Value must be one of true or false
    CanGuestsModifyEvent bool
    Value must be one of true or false
    CanGuestsSeeOtherGuests bool
    Value must be one of true or false
    ConferenceSolutionKey string
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    ExcludeWeekends bool
    Value must be one of true or false
    PostToIncidentTimeline bool
    Value must be one of true or false
    PostToSlackChannels List<WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel>
    SendUpdates bool
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    TaskType string
    TimeZone string
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
    Attendees []string
    Emails of attendees
    DaysUntilMeeting int
    The days until meeting
    Description string
    The event description
    MeetingDuration string
    Meeting duration in format like '1 hour', '30 minutes'
    Summary string
    The event summary
    TimeOfMeeting string
    Time of meeting in format HH:MM
    CanGuestsInviteOthers bool
    Value must be one of true or false
    CanGuestsModifyEvent bool
    Value must be one of true or false
    CanGuestsSeeOtherGuests bool
    Value must be one of true or false
    ConferenceSolutionKey string
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    ExcludeWeekends bool
    Value must be one of true or false
    PostToIncidentTimeline bool
    Value must be one of true or false
    PostToSlackChannels []WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel
    SendUpdates bool
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    TaskType string
    TimeZone string
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
    attendees List<String>
    Emails of attendees
    daysUntilMeeting Integer
    The days until meeting
    description String
    The event description
    meetingDuration String
    Meeting duration in format like '1 hour', '30 minutes'
    summary String
    The event summary
    timeOfMeeting String
    Time of meeting in format HH:MM
    canGuestsInviteOthers Boolean
    Value must be one of true or false
    canGuestsModifyEvent Boolean
    Value must be one of true or false
    canGuestsSeeOtherGuests Boolean
    Value must be one of true or false
    conferenceSolutionKey String
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    excludeWeekends Boolean
    Value must be one of true or false
    postToIncidentTimeline Boolean
    Value must be one of true or false
    postToSlackChannels List<WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel>
    sendUpdates Boolean
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    taskType String
    timeZone String
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
    attendees string[]
    Emails of attendees
    daysUntilMeeting number
    The days until meeting
    description string
    The event description
    meetingDuration string
    Meeting duration in format like '1 hour', '30 minutes'
    summary string
    The event summary
    timeOfMeeting string
    Time of meeting in format HH:MM
    canGuestsInviteOthers boolean
    Value must be one of true or false
    canGuestsModifyEvent boolean
    Value must be one of true or false
    canGuestsSeeOtherGuests boolean
    Value must be one of true or false
    conferenceSolutionKey string
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    excludeWeekends boolean
    Value must be one of true or false
    postToIncidentTimeline boolean
    Value must be one of true or false
    postToSlackChannels WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel[]
    sendUpdates boolean
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    taskType string
    timeZone string
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
    attendees Sequence[str]
    Emails of attendees
    days_until_meeting int
    The days until meeting
    description str
    The event description
    meeting_duration str
    Meeting duration in format like '1 hour', '30 minutes'
    summary str
    The event summary
    time_of_meeting str
    Time of meeting in format HH:MM
    can_guests_invite_others bool
    Value must be one of true or false
    can_guests_modify_event bool
    Value must be one of true or false
    can_guests_see_other_guests bool
    Value must be one of true or false
    conference_solution_key str
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    exclude_weekends bool
    Value must be one of true or false
    post_to_incident_timeline bool
    Value must be one of true or false
    post_to_slack_channels Sequence[WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel]
    send_updates bool
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    task_type str
    time_zone str
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..
    attendees List<String>
    Emails of attendees
    daysUntilMeeting Number
    The days until meeting
    description String
    The event description
    meetingDuration String
    Meeting duration in format like '1 hour', '30 minutes'
    summary String
    The event summary
    timeOfMeeting String
    Time of meeting in format HH:MM
    canGuestsInviteOthers Boolean
    Value must be one of true or false
    canGuestsModifyEvent Boolean
    Value must be one of true or false
    canGuestsSeeOtherGuests Boolean
    Value must be one of true or false
    conferenceSolutionKey String
    Sets the video conference type attached to the meeting. Value must be one of eventHangout, eventNamedHangout, hangoutsMeet, addOn.
    excludeWeekends Boolean
    Value must be one of true or false
    postToIncidentTimeline Boolean
    Value must be one of true or false
    postToSlackChannels List<Property Map>
    sendUpdates Boolean
    Send an email to the attendees notifying them of the event. Value must be one of true or false
    taskType String
    timeZone String
    Value must be one of International Date Line West, American Samoa, Midway Island, Hawaii, Alaska, Pacific Time (US & Canada), Tijuana, Arizona, Mazatlan, Mountain Time (US & Canada), Central America, Central Time (US & Canada), Chihuahua, Guadalajara, Mexico City, Monterrey, Saskatchewan, Bogota, Eastern Time (US & Canada), Indiana (East), Lima, Quito, Atlantic Time (Canada), Caracas, Georgetown, La Paz, Puerto Rico, Santiago, Newfoundland, Brasilia, Buenos Aires, Montevideo, Greenland, Mid-Atlantic, Azores, Cape Verde Is., Edinburgh, Lisbon, London, Monrovia, UTC, Amsterdam, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Casablanca, Copenhagen, Dublin, Ljubljana, Madrid, Paris, Prague, Rome, Sarajevo, Skopje, Stockholm, Vienna, Warsaw, West Central Africa, Zagreb, Zurich, Athens, Bucharest, Cairo, Harare, Helsinki, Jerusalem, Kaliningrad, Kyiv, Pretoria, Riga, Sofia, Tallinn, Vilnius, Baghdad, Istanbul, Kuwait, Minsk, Moscow, Nairobi, Riyadh, St. Petersburg, Volgograd, Tehran, Abu Dhabi, Baku, Muscat, Samara, Tbilisi, Yerevan, Kabul, Almaty, Ekaterinburg, Islamabad, Karachi, Tashkent, Chennai, Kolkata, Mumbai, New Delhi, Sri Jayawardenepura, Kathmandu, Astana, Dhaka, Urumqi, Rangoon, Bangkok, Hanoi, Jakarta, Krasnoyarsk, Novosibirsk, Beijing, Chongqing, Hong Kong, Irkutsk, Kuala Lumpur, Perth, Singapore, Taipei, Ulaanbaatar, Osaka, Sapporo, Seoul, Tokyo, Yakutsk, Adelaide, Darwin, Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney, Vladivostok, Magadan, New Caledonia, Solomon Is., Srednekolymsk, Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Chatham Is., Nuku'alofa, Samoa, Tokelau Is..

    WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannel, WorkflowTaskCreateGoogleCalendarEventTaskParamsPostToSlackChannelArgs

    Id string
    Name string
    Id string
    Name string
    id String
    name String
    id string
    name string
    id str
    name str
    id String
    name String

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rootly Terraform Provider.
    rootly logo
    Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly