Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwent committed Jun 2, 2023
1 parent 7b7abc0 commit 93e6e8e
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 3 deletions.
38 changes: 38 additions & 0 deletions provider/cmd/pulumi-resource-rootly/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4841,6 +4841,14 @@
"mapCase": false
}
}
},
"ticketPayload": {
"type": "string",
"language": {
"python": {
"mapCase": false
}
}
}
},
"type": "object",
Expand Down Expand Up @@ -6552,6 +6560,17 @@
},
"rootly:index/WorkflowTaskSendEmailTaskParams:WorkflowTaskSendEmailTaskParams": {
"properties": {
"bccs": {
"type": "array",
"items": {
"type": "string"
},
"language": {
"python": {
"mapCase": false
}
}
},
"body": {
"type": "string",
"language": {
Expand All @@ -6560,6 +6579,17 @@
}
}
},
"ccs": {
"type": "array",
"items": {
"type": "string"
},
"language": {
"python": {
"mapCase": false
}
}
},
"customLogoUrl": {
"type": "string",
"language": {
Expand Down Expand Up @@ -9216,6 +9246,14 @@
"mapCase": false
}
}
},
"ticketPayload": {
"type": "string",
"language": {
"python": {
"mapCase": false
}
}
}
},
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ replace (
require (
github.com/gobuffalo/flect v0.2.5
github.com/pulumi/pulumi-terraform-bridge/v3 v3.21.0
github.com/rootlyhq/terraform-provider-rootly v0.1.99
github.com/rootlyhq/terraform-provider-rootly v1.0.0
)

require (
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -788,8 +788,8 @@ github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTE
github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg=
github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o=
github.com/rootlyhq/terraform-provider-rootly v0.1.99 h1:93wCDYYbe3HH30NjxKbUOaN4v2vSDo624KayNtVbAqI=
github.com/rootlyhq/terraform-provider-rootly v0.1.99/go.mod h1:E3K2zKUQ403jSax7Lv4JRgx7dQdFJa1v7SjmqiPd0NE=
github.com/rootlyhq/terraform-provider-rootly v1.0.0 h1:Eo0OHCsJ1Hb0ohYVkOPCda8+a8HV/HhqzaJ7IUc38qE=
github.com/rootlyhq/terraform-provider-rootly v1.0.0/go.mod h1:E3K2zKUQ403jSax7Lv4JRgx7dQdFJa1v7SjmqiPd0NE=
github.com/russross/blackfriday v1.6.0 h1:KqfZb0pUVN2lYqZUYRddxF4OR8ZMURnJIG5Y3VRLtww=
github.com/russross/blackfriday v1.6.0/go.mod h1:ti0ldHuxg49ri4ksnFxlkCfN+hvslNlmVHqNRXXJNAY=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
Expand Down
4 changes: 4 additions & 0 deletions sdk/nodejs/types/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ export interface WorkflowTaskCreateZendeskTicketTaskParams {
subject: pulumi.Input<string>;
tags?: pulumi.Input<string>;
taskType?: pulumi.Input<string>;
ticketPayload?: pulumi.Input<string>;
}

export interface WorkflowTaskCreateZoomMeetingTaskParams {
Expand Down Expand Up @@ -986,7 +987,9 @@ export interface WorkflowTaskSendDashboardReportTaskParams {
}

export interface WorkflowTaskSendEmailTaskParams {
bccs?: pulumi.Input<pulumi.Input<string>[]>;
body: pulumi.Input<string>;
ccs?: pulumi.Input<pulumi.Input<string>[]>;
customLogoUrl?: pulumi.Input<string>;
from?: pulumi.Input<string>;
includeFooter?: pulumi.Input<boolean>;
Expand Down Expand Up @@ -1394,4 +1397,5 @@ export interface WorkflowTaskUpdateZendeskTicketTaskParams {
tags?: pulumi.Input<string>;
taskType?: pulumi.Input<string>;
ticketId: pulumi.Input<string>;
ticketPayload?: pulumi.Input<string>;
}
4 changes: 4 additions & 0 deletions sdk/nodejs/types/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,7 @@ export interface WorkflowTaskCreateZendeskTicketTaskParams {
subject: string;
tags?: string;
taskType?: string;
ticketPayload?: string;
}

export interface WorkflowTaskCreateZoomMeetingTaskParams {
Expand Down Expand Up @@ -1070,7 +1071,9 @@ export interface WorkflowTaskSendDashboardReportTaskParams {
}

export interface WorkflowTaskSendEmailTaskParams {
bccs?: string[];
body: string;
ccs?: string[];
customLogoUrl?: string;
from?: string;
includeFooter?: boolean;
Expand Down Expand Up @@ -1478,5 +1481,6 @@ export interface WorkflowTaskUpdateZendeskTicketTaskParams {
tags?: string;
taskType?: string;
ticketId: string;
ticketPayload?: string;
}

0 comments on commit 93e6e8e

Please sign in to comment.