rootly.WorkflowTaskUpdateGoogleCalendarEvent
Explore with Pulumi AI
Manages workflow update_google_calendar_event task.
Create WorkflowTaskUpdateGoogleCalendarEvent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowTaskUpdateGoogleCalendarEvent(name: string, args: WorkflowTaskUpdateGoogleCalendarEventArgs, opts?: CustomResourceOptions);
@overload
def WorkflowTaskUpdateGoogleCalendarEvent(resource_name: str,
args: WorkflowTaskUpdateGoogleCalendarEventArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkflowTaskUpdateGoogleCalendarEvent(resource_name: str,
opts: Optional[ResourceOptions] = None,
task_params: Optional[WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs] = 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 NewWorkflowTaskUpdateGoogleCalendarEvent(ctx *Context, name string, args WorkflowTaskUpdateGoogleCalendarEventArgs, opts ...ResourceOption) (*WorkflowTaskUpdateGoogleCalendarEvent, error)
public WorkflowTaskUpdateGoogleCalendarEvent(string name, WorkflowTaskUpdateGoogleCalendarEventArgs args, CustomResourceOptions? opts = null)
public WorkflowTaskUpdateGoogleCalendarEvent(String name, WorkflowTaskUpdateGoogleCalendarEventArgs args)
public WorkflowTaskUpdateGoogleCalendarEvent(String name, WorkflowTaskUpdateGoogleCalendarEventArgs args, CustomResourceOptions options)
type: rootly:WorkflowTaskUpdateGoogleCalendarEvent
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 WorkflowTaskUpdateGoogleCalendarEventArgs
- 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 WorkflowTaskUpdateGoogleCalendarEventArgs
- 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 WorkflowTaskUpdateGoogleCalendarEventArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowTaskUpdateGoogleCalendarEventArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowTaskUpdateGoogleCalendarEventArgs
- 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 workflowTaskUpdateGoogleCalendarEventResource = new Rootly.WorkflowTaskUpdateGoogleCalendarEvent("workflowTaskUpdateGoogleCalendarEventResource", new()
{
TaskParams = new Rootly.Inputs.WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs
{
EventId = "string",
MeetingDuration = "string",
PostToIncidentTimeline = false,
CanGuestsModifyEvent = false,
CanGuestsSeeOtherGuests = false,
ConferenceSolutionKey = "string",
Description = "string",
CanGuestsInviteOthers = false,
AdjustmentDays = 0,
Attendees = new[]
{
"string",
},
PostToSlackChannels = new[]
{
new Rootly.Inputs.WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArgs
{
Id = "string",
Name = "string",
},
},
ReplaceAttendees = false,
SendUpdates = false,
Summary = "string",
TaskType = "string",
TimeOfMeeting = "string",
},
WorkflowId = "string",
Enabled = false,
Name = "string",
Position = 0,
SkipOnFailure = false,
});
example, err := rootly.NewWorkflowTaskUpdateGoogleCalendarEvent(ctx, "workflowTaskUpdateGoogleCalendarEventResource", &rootly.WorkflowTaskUpdateGoogleCalendarEventArgs{
TaskParams: &rootly.WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs{
EventId: pulumi.String("string"),
MeetingDuration: pulumi.String("string"),
PostToIncidentTimeline: pulumi.Bool(false),
CanGuestsModifyEvent: pulumi.Bool(false),
CanGuestsSeeOtherGuests: pulumi.Bool(false),
ConferenceSolutionKey: pulumi.String("string"),
Description: pulumi.String("string"),
CanGuestsInviteOthers: pulumi.Bool(false),
AdjustmentDays: pulumi.Int(0),
Attendees: pulumi.StringArray{
pulumi.String("string"),
},
PostToSlackChannels: rootly.WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArray{
&rootly.WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
ReplaceAttendees: pulumi.Bool(false),
SendUpdates: pulumi.Bool(false),
Summary: pulumi.String("string"),
TaskType: pulumi.String("string"),
TimeOfMeeting: pulumi.String("string"),
},
WorkflowId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Position: pulumi.Int(0),
SkipOnFailure: pulumi.Bool(false),
})
var workflowTaskUpdateGoogleCalendarEventResource = new WorkflowTaskUpdateGoogleCalendarEvent("workflowTaskUpdateGoogleCalendarEventResource", WorkflowTaskUpdateGoogleCalendarEventArgs.builder()
.taskParams(WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs.builder()
.eventId("string")
.meetingDuration("string")
.postToIncidentTimeline(false)
.canGuestsModifyEvent(false)
.canGuestsSeeOtherGuests(false)
.conferenceSolutionKey("string")
.description("string")
.canGuestsInviteOthers(false)
.adjustmentDays(0)
.attendees("string")
.postToSlackChannels(WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArgs.builder()
.id("string")
.name("string")
.build())
.replaceAttendees(false)
.sendUpdates(false)
.summary("string")
.taskType("string")
.timeOfMeeting("string")
.build())
.workflowId("string")
.enabled(false)
.name("string")
.position(0)
.skipOnFailure(false)
.build());
workflow_task_update_google_calendar_event_resource = rootly.WorkflowTaskUpdateGoogleCalendarEvent("workflowTaskUpdateGoogleCalendarEventResource",
task_params=rootly.WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs(
event_id="string",
meeting_duration="string",
post_to_incident_timeline=False,
can_guests_modify_event=False,
can_guests_see_other_guests=False,
conference_solution_key="string",
description="string",
can_guests_invite_others=False,
adjustment_days=0,
attendees=["string"],
post_to_slack_channels=[rootly.WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArgs(
id="string",
name="string",
)],
replace_attendees=False,
send_updates=False,
summary="string",
task_type="string",
time_of_meeting="string",
),
workflow_id="string",
enabled=False,
name="string",
position=0,
skip_on_failure=False)
const workflowTaskUpdateGoogleCalendarEventResource = new rootly.WorkflowTaskUpdateGoogleCalendarEvent("workflowTaskUpdateGoogleCalendarEventResource", {
taskParams: {
eventId: "string",
meetingDuration: "string",
postToIncidentTimeline: false,
canGuestsModifyEvent: false,
canGuestsSeeOtherGuests: false,
conferenceSolutionKey: "string",
description: "string",
canGuestsInviteOthers: false,
adjustmentDays: 0,
attendees: ["string"],
postToSlackChannels: [{
id: "string",
name: "string",
}],
replaceAttendees: false,
sendUpdates: false,
summary: "string",
taskType: "string",
timeOfMeeting: "string",
},
workflowId: "string",
enabled: false,
name: "string",
position: 0,
skipOnFailure: false,
});
type: rootly:WorkflowTaskUpdateGoogleCalendarEvent
properties:
enabled: false
name: string
position: 0
skipOnFailure: false
taskParams:
adjustmentDays: 0
attendees:
- string
canGuestsInviteOthers: false
canGuestsModifyEvent: false
canGuestsSeeOtherGuests: false
conferenceSolutionKey: string
description: string
eventId: string
meetingDuration: string
postToIncidentTimeline: false
postToSlackChannels:
- id: string
name: string
replaceAttendees: false
sendUpdates: false
summary: string
taskType: string
timeOfMeeting: string
workflowId: string
WorkflowTaskUpdateGoogleCalendarEvent 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 WorkflowTaskUpdateGoogleCalendarEvent resource accepts the following input properties:
- Task
Params WorkflowTask Update Google Calendar Event Task Params - The parameters for this workflow task.
- Workflow
Id 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)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Update Google Calendar Event Task Params Args - The parameters for this workflow task.
- Workflow
Id 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)
- Skip
On boolFailure - Skip workflow task if any failures
- task
Params WorkflowTask Update Google Calendar Event Task Params - The parameters for this workflow task.
- workflow
Id 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Update Google Calendar Event Task Params - The parameters for this workflow task.
- workflow
Id 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)
- skip
On booleanFailure - Skip workflow task if any failures
- task_
params WorkflowTask Update Google Calendar Event Task Params Args - 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_ boolfailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id 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)
- skip
On BooleanFailure - Skip workflow task if any failures
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowTaskUpdateGoogleCalendarEvent 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 WorkflowTaskUpdateGoogleCalendarEvent Resource
Get an existing WorkflowTaskUpdateGoogleCalendarEvent 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?: WorkflowTaskUpdateGoogleCalendarEventState, opts?: CustomResourceOptions): WorkflowTaskUpdateGoogleCalendarEvent
@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[WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs] = None,
workflow_id: Optional[str] = None) -> WorkflowTaskUpdateGoogleCalendarEvent
func GetWorkflowTaskUpdateGoogleCalendarEvent(ctx *Context, name string, id IDInput, state *WorkflowTaskUpdateGoogleCalendarEventState, opts ...ResourceOption) (*WorkflowTaskUpdateGoogleCalendarEvent, error)
public static WorkflowTaskUpdateGoogleCalendarEvent Get(string name, Input<string> id, WorkflowTaskUpdateGoogleCalendarEventState? state, CustomResourceOptions? opts = null)
public static WorkflowTaskUpdateGoogleCalendarEvent get(String name, Output<String> id, WorkflowTaskUpdateGoogleCalendarEventState 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.
- 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 Update Google Calendar Event Task Params - The parameters for this workflow task.
- Workflow
Id 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)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Update Google Calendar Event Task Params Args - The parameters for this workflow task.
- Workflow
Id 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Update Google Calendar Event Task Params - The parameters for this workflow task.
- workflow
Id 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)
- skip
On booleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Update Google Calendar Event Task Params - The parameters for this workflow task.
- workflow
Id 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_ boolfailure - Skip workflow task if any failures
- task_
params WorkflowTask Update Google Calendar Event Task Params Args - 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)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
Supporting Types
WorkflowTaskUpdateGoogleCalendarEventTaskParams, WorkflowTaskUpdateGoogleCalendarEventTaskParamsArgs
- Event
Id string - The event ID
- Adjustment
Days int - Days to adjust meeting by
- Attendees List<string>
- Emails of attendees
- Can
Guests boolInvite Others - Value must be one of true or false
- Can
Guests boolModify Event - Value must be one of true or false
- Can
Guests boolSee Other Guests - Value must be one of true or false
- Conference
Solution stringKey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - Description string
- The event description
- Meeting
Duration string - Meeting duration in format like '1 hour', '30 minutes'
- Post
To boolIncident Timeline - Value must be one of true or false
- Post
To List<WorkflowSlack Channels Task Update Google Calendar Event Task Params Post To Slack Channel> - Replace
Attendees bool - Value must be one of true or false
- Send
Updates bool - Send an email to the attendees notifying them of the event. Value must be one of true or false
- Summary string
- The event summary
- Task
Type string - Time
Of stringMeeting - Time of meeting in format HH:MM
- Event
Id string - The event ID
- Adjustment
Days int - Days to adjust meeting by
- Attendees []string
- Emails of attendees
- Can
Guests boolInvite Others - Value must be one of true or false
- Can
Guests boolModify Event - Value must be one of true or false
- Can
Guests boolSee Other Guests - Value must be one of true or false
- Conference
Solution stringKey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - Description string
- The event description
- Meeting
Duration string - Meeting duration in format like '1 hour', '30 minutes'
- Post
To boolIncident Timeline - Value must be one of true or false
- Post
To []WorkflowSlack Channels Task Update Google Calendar Event Task Params Post To Slack Channel - Replace
Attendees bool - Value must be one of true or false
- Send
Updates bool - Send an email to the attendees notifying them of the event. Value must be one of true or false
- Summary string
- The event summary
- Task
Type string - Time
Of stringMeeting - Time of meeting in format HH:MM
- event
Id String - The event ID
- adjustment
Days Integer - Days to adjust meeting by
- attendees List<String>
- Emails of attendees
- can
Guests BooleanInvite Others - Value must be one of true or false
- can
Guests BooleanModify Event - Value must be one of true or false
- can
Guests BooleanSee Other Guests - Value must be one of true or false
- conference
Solution StringKey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - description String
- The event description
- meeting
Duration String - Meeting duration in format like '1 hour', '30 minutes'
- post
To BooleanIncident Timeline - Value must be one of true or false
- post
To List<WorkflowSlack Channels Task Update Google Calendar Event Task Params Post To Slack Channel> - replace
Attendees Boolean - Value must be one of true or false
- send
Updates Boolean - Send an email to the attendees notifying them of the event. Value must be one of true or false
- summary String
- The event summary
- task
Type String - time
Of StringMeeting - Time of meeting in format HH:MM
- event
Id string - The event ID
- adjustment
Days number - Days to adjust meeting by
- attendees string[]
- Emails of attendees
- can
Guests booleanInvite Others - Value must be one of true or false
- can
Guests booleanModify Event - Value must be one of true or false
- can
Guests booleanSee Other Guests - Value must be one of true or false
- conference
Solution stringKey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - description string
- The event description
- meeting
Duration string - Meeting duration in format like '1 hour', '30 minutes'
- post
To booleanIncident Timeline - Value must be one of true or false
- post
To WorkflowSlack Channels Task Update Google Calendar Event Task Params Post To Slack Channel[] - replace
Attendees boolean - Value must be one of true or false
- send
Updates boolean - Send an email to the attendees notifying them of the event. Value must be one of true or false
- summary string
- The event summary
- task
Type string - time
Of stringMeeting - Time of meeting in format HH:MM
- event_
id str - The event ID
- adjustment_
days int - Days to adjust meeting by
- attendees Sequence[str]
- Emails of attendees
- can_
guests_ boolinvite_ others - Value must be one of true or false
- can_
guests_ boolmodify_ event - Value must be one of true or false
- can_
guests_ boolsee_ other_ guests - Value must be one of true or false
- conference_
solution_ strkey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - description str
- The event description
- meeting_
duration str - Meeting duration in format like '1 hour', '30 minutes'
- post_
to_ boolincident_ timeline - Value must be one of true or false
- post_
to_ Sequence[Workflowslack_ channels Task Update Google Calendar Event Task Params Post To Slack Channel] - replace_
attendees bool - Value must be one of true or false
- send_
updates bool - Send an email to the attendees notifying them of the event. Value must be one of true or false
- summary str
- The event summary
- task_
type str - time_
of_ strmeeting - Time of meeting in format HH:MM
- event
Id String - The event ID
- adjustment
Days Number - Days to adjust meeting by
- attendees List<String>
- Emails of attendees
- can
Guests BooleanInvite Others - Value must be one of true or false
- can
Guests BooleanModify Event - Value must be one of true or false
- can
Guests BooleanSee Other Guests - Value must be one of true or false
- conference
Solution StringKey - Sets the video conference type attached to the meeting. Value must be one of
eventHangout
,eventNamedHangout
,hangoutsMeet
,addOn
. - description String
- The event description
- meeting
Duration String - Meeting duration in format like '1 hour', '30 minutes'
- post
To BooleanIncident Timeline - Value must be one of true or false
- post
To List<Property Map>Slack Channels - replace
Attendees Boolean - Value must be one of true or false
- send
Updates Boolean - Send an email to the attendees notifying them of the event. Value must be one of true or false
- summary String
- The event summary
- task
Type String - time
Of StringMeeting - Time of meeting in format HH:MM
WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannel, WorkflowTaskUpdateGoogleCalendarEventTaskParamsPostToSlackChannelArgs
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootly
Terraform Provider.