rootly.WorkflowTaskCreateOutlookEvent
Explore with Pulumi AI
Manages workflow create_outlook_event task.
Create WorkflowTaskCreateOutlookEvent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowTaskCreateOutlookEvent(name: string, args: WorkflowTaskCreateOutlookEventArgs, opts?: CustomResourceOptions);
@overload
def WorkflowTaskCreateOutlookEvent(resource_name: str,
args: WorkflowTaskCreateOutlookEventArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkflowTaskCreateOutlookEvent(resource_name: str,
opts: Optional[ResourceOptions] = None,
task_params: Optional[WorkflowTaskCreateOutlookEventTaskParamsArgs] = 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 NewWorkflowTaskCreateOutlookEvent(ctx *Context, name string, args WorkflowTaskCreateOutlookEventArgs, opts ...ResourceOption) (*WorkflowTaskCreateOutlookEvent, error)
public WorkflowTaskCreateOutlookEvent(string name, WorkflowTaskCreateOutlookEventArgs args, CustomResourceOptions? opts = null)
public WorkflowTaskCreateOutlookEvent(String name, WorkflowTaskCreateOutlookEventArgs args)
public WorkflowTaskCreateOutlookEvent(String name, WorkflowTaskCreateOutlookEventArgs args, CustomResourceOptions options)
type: rootly:WorkflowTaskCreateOutlookEvent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. WorkflowTaskCreateOutlookEventArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. WorkflowTaskCreateOutlookEventArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. WorkflowTaskCreateOutlookEventArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. WorkflowTaskCreateOutlookEventArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. WorkflowTaskCreateOutlookEventArgs - 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 workflowTaskCreateOutlookEventResource = new Rootly.WorkflowTaskCreateOutlookEvent("workflowTaskCreateOutlookEventResource", new()
{
TaskParams = new Rootly.Inputs.WorkflowTaskCreateOutlookEventTaskParamsArgs
{
Calendar =
{
{ "string", "any" },
},
DaysUntilMeeting = 0,
Description = "string",
MeetingDuration = "string",
Summary = "string",
TimeOfMeeting = "string",
Attendees = new[]
{
"string",
},
ExcludeWeekends = false,
PostToIncidentTimeline = false,
PostToSlackChannels = new[]
{
new Rootly.Inputs.WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannelArgs
{
Id = "string",
Name = "string",
},
},
TaskType = "string",
TimeZone = "string",
},
WorkflowId = "string",
Enabled = false,
Name = "string",
Position = 0,
SkipOnFailure = false,
});
example, err := rootly.NewWorkflowTaskCreateOutlookEvent(ctx, "workflowTaskCreateOutlookEventResource", &rootly.WorkflowTaskCreateOutlookEventArgs{
TaskParams: &rootly.WorkflowTaskCreateOutlookEventTaskParamsArgs{
Calendar: pulumi.Map{
"string": pulumi.Any("any"),
},
DaysUntilMeeting: pulumi.Int(0),
Description: pulumi.String("string"),
MeetingDuration: pulumi.String("string"),
Summary: pulumi.String("string"),
TimeOfMeeting: pulumi.String("string"),
Attendees: pulumi.StringArray{
pulumi.String("string"),
},
ExcludeWeekends: pulumi.Bool(false),
PostToIncidentTimeline: pulumi.Bool(false),
PostToSlackChannels: rootly.WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannelArray{
&rootly.WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannelArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
TaskType: pulumi.String("string"),
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 workflowTaskCreateOutlookEventResource = new WorkflowTaskCreateOutlookEvent("workflowTaskCreateOutlookEventResource", WorkflowTaskCreateOutlookEventArgs.builder()
.taskParams(WorkflowTaskCreateOutlookEventTaskParamsArgs.builder()
.calendar(Map.of("string", "any"))
.daysUntilMeeting(0)
.description("string")
.meetingDuration("string")
.summary("string")
.timeOfMeeting("string")
.attendees("string")
.excludeWeekends(false)
.postToIncidentTimeline(false)
.postToSlackChannels(WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannelArgs.builder()
.id("string")
.name("string")
.build())
.taskType("string")
.timeZone("string")
.build())
.workflowId("string")
.enabled(false)
.name("string")
.position(0)
.skipOnFailure(false)
.build());
workflow_task_create_outlook_event_resource = rootly.WorkflowTaskCreateOutlookEvent("workflowTaskCreateOutlookEventResource",
task_params={
"calendar": {
"string": "any",
},
"days_until_meeting": 0,
"description": "string",
"meeting_duration": "string",
"summary": "string",
"time_of_meeting": "string",
"attendees": ["string"],
"exclude_weekends": False,
"post_to_incident_timeline": False,
"post_to_slack_channels": [{
"id": "string",
"name": "string",
}],
"task_type": "string",
"time_zone": "string",
},
workflow_id="string",
enabled=False,
name="string",
position=0,
skip_on_failure=False)
const workflowTaskCreateOutlookEventResource = new rootly.WorkflowTaskCreateOutlookEvent("workflowTaskCreateOutlookEventResource", {
taskParams: {
calendar: {
string: "any",
},
daysUntilMeeting: 0,
description: "string",
meetingDuration: "string",
summary: "string",
timeOfMeeting: "string",
attendees: ["string"],
excludeWeekends: false,
postToIncidentTimeline: false,
postToSlackChannels: [{
id: "string",
name: "string",
}],
taskType: "string",
timeZone: "string",
},
workflowId: "string",
enabled: false,
name: "string",
position: 0,
skipOnFailure: false,
});
type: rootly:WorkflowTaskCreateOutlookEvent
properties:
enabled: false
name: string
position: 0
skipOnFailure: false
taskParams:
attendees:
- string
calendar:
string: any
daysUntilMeeting: 0
description: string
excludeWeekends: false
meetingDuration: string
postToIncidentTimeline: false
postToSlackChannels:
- id: string
name: string
summary: string
taskType: string
timeOfMeeting: string
timeZone: string
workflowId: string
WorkflowTaskCreateOutlookEvent 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 WorkflowTaskCreateOutlookEvent resource accepts the following input properties:
- Task
Params This property is required. WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- Workflow
Id This property is required. Changes to this property will trigger replacement.
- 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)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params This property is required. WorkflowTask Create Outlook Event Task Params Args - The parameters for this workflow task.
- Workflow
Id This property is required. Changes to this property will trigger replacement.
- 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)
- Skip
On boolFailure - Skip workflow task if any failures
- task
Params This property is required. WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- workflow
Id This property is required. Changes to this property will trigger replacement.
- 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params This property is required. WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- workflow
Id This property is required. Changes to this property will trigger replacement.
- 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)
- skip
On booleanFailure - Skip workflow task if any failures
- task_
params This property is required. WorkflowTask Create Outlook Event Task Params Args - The parameters for this workflow task.
- workflow_
id This property is required. Changes to this property will trigger replacement.
- 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_ boolfailure - Skip workflow task if any failures
- task
Params This property is required. Property Map - The parameters for this workflow task.
- workflow
Id This property is required. Changes to this property will trigger replacement.
- 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)
- skip
On BooleanFailure - Skip workflow task if any failures
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowTaskCreateOutlookEvent 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 WorkflowTaskCreateOutlookEvent Resource
Get an existing WorkflowTaskCreateOutlookEvent 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?: WorkflowTaskCreateOutlookEventState, opts?: CustomResourceOptions): WorkflowTaskCreateOutlookEvent
@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[WorkflowTaskCreateOutlookEventTaskParamsArgs] = None,
workflow_id: Optional[str] = None) -> WorkflowTaskCreateOutlookEvent
func GetWorkflowTaskCreateOutlookEvent(ctx *Context, name string, id IDInput, state *WorkflowTaskCreateOutlookEventState, opts ...ResourceOption) (*WorkflowTaskCreateOutlookEvent, error)
public static WorkflowTaskCreateOutlookEvent Get(string name, Input<string> id, WorkflowTaskCreateOutlookEventState? state, CustomResourceOptions? opts = null)
public static WorkflowTaskCreateOutlookEvent get(String name, Output<String> id, WorkflowTaskCreateOutlookEventState state, CustomResourceOptions options)
resources: _: type: rootly:WorkflowTaskCreateOutlookEvent get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- 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)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- Workflow
Id Changes to this property will trigger replacement.
- 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)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Create Outlook Event Task Params Args - The parameters for this workflow task.
- Workflow
Id Changes to this property will trigger replacement.
- 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- workflow
Id Changes to this property will trigger replacement.
- 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)
- skip
On booleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Create Outlook Event Task Params - The parameters for this workflow task.
- workflow
Id Changes to this property will trigger replacement.
- 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_ boolfailure - Skip workflow task if any failures
- task_
params WorkflowTask Create Outlook Event Task Params Args - The parameters for this workflow task.
- workflow_
id Changes to this property will trigger replacement.
- 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id Changes to this property will trigger replacement.
- The ID of the parent workflow
Supporting Types
WorkflowTaskCreateOutlookEventTaskParams, WorkflowTaskCreateOutlookEventTaskParamsArgs
- Calendar
This property is required. Dictionary<string, object> - Map must contain two fields,
id
andname
. - Days
Until Meeting This property is required. int - The days until meeting
- Description
This property is required. string - The event description
- Meeting
Duration This property is required. string - Meeting duration in format like '1 hour', '30 minutes'
- Summary
This property is required. string - The event summary
- Time
Of Meeting This property is required. string - Time of meeting in format HH:MM
- Attendees List<string>
- Emails of attendees
- Exclude
Weekends bool - Value must be one of true or false
- Post
To boolIncident Timeline - Value must be one of true or false
- Post
To List<WorkflowSlack Channels Task Create Outlook Event Task Params Post To Slack Channel> - Task
Type string - Time
Zone 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.
.
- Calendar
This property is required. map[string]interface{} - Map must contain two fields,
id
andname
. - Days
Until Meeting This property is required. int - The days until meeting
- Description
This property is required. string - The event description
- Meeting
Duration This property is required. string - Meeting duration in format like '1 hour', '30 minutes'
- Summary
This property is required. string - The event summary
- Time
Of Meeting This property is required. string - Time of meeting in format HH:MM
- Attendees []string
- Emails of attendees
- Exclude
Weekends bool - Value must be one of true or false
- Post
To boolIncident Timeline - Value must be one of true or false
- Post
To []WorkflowSlack Channels Task Create Outlook Event Task Params Post To Slack Channel - Task
Type string - Time
Zone 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.
.
- calendar
This property is required. Map<String,Object> - Map must contain two fields,
id
andname
. - days
Until Meeting This property is required. Integer - The days until meeting
- description
This property is required. String - The event description
- meeting
Duration This property is required. String - Meeting duration in format like '1 hour', '30 minutes'
- summary
This property is required. String - The event summary
- time
Of Meeting This property is required. String - Time of meeting in format HH:MM
- attendees List<String>
- Emails of attendees
- exclude
Weekends Boolean - Value must be one of true or false
- post
To BooleanIncident Timeline - Value must be one of true or false
- post
To List<WorkflowSlack Channels Task Create Outlook Event Task Params Post To Slack Channel> - task
Type String - time
Zone 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.
.
- calendar
This property is required. {[key: string]: any} - Map must contain two fields,
id
andname
. - days
Until Meeting This property is required. number - The days until meeting
- description
This property is required. string - The event description
- meeting
Duration This property is required. string - Meeting duration in format like '1 hour', '30 minutes'
- summary
This property is required. string - The event summary
- time
Of Meeting This property is required. string - Time of meeting in format HH:MM
- attendees string[]
- Emails of attendees
- exclude
Weekends boolean - Value must be one of true or false
- post
To booleanIncident Timeline - Value must be one of true or false
- post
To WorkflowSlack Channels Task Create Outlook Event Task Params Post To Slack Channel[] - task
Type string - time
Zone 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.
.
- calendar
This property is required. Mapping[str, Any] - Map must contain two fields,
id
andname
. - days_
until_ meeting This property is required. int - The days until meeting
- description
This property is required. str - The event description
- meeting_
duration This property is required. str - Meeting duration in format like '1 hour', '30 minutes'
- summary
This property is required. str - The event summary
- time_
of_ meeting This property is required. str - Time of meeting in format HH:MM
- attendees Sequence[str]
- Emails of attendees
- exclude_
weekends bool - Value must be one of true or false
- post_
to_ boolincident_ timeline - Value must be one of true or false
- post_
to_ Sequence[Workflowslack_ channels Task Create Outlook Event Task Params Post To Slack Channel] - 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.
.
- calendar
This property is required. Map<Any> - Map must contain two fields,
id
andname
. - days
Until Meeting This property is required. Number - The days until meeting
- description
This property is required. String - The event description
- meeting
Duration This property is required. String - Meeting duration in format like '1 hour', '30 minutes'
- summary
This property is required. String - The event summary
- time
Of Meeting This property is required. String - Time of meeting in format HH:MM
- attendees List<String>
- Emails of attendees
- exclude
Weekends Boolean - Value must be one of true or false
- post
To BooleanIncident Timeline - Value must be one of true or false
- post
To List<Property Map>Slack Channels - task
Type String - time
Zone 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.
.
WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannel, WorkflowTaskCreateOutlookEventTaskParamsPostToSlackChannelArgs
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootly
Terraform Provider.