@pulumi/pagerduty 4.30.2 → 4.30.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,7 +37,7 @@ export interface GetUserContactMethodArgs {
|
|
|
37
37
|
*/
|
|
38
38
|
label: string;
|
|
39
39
|
/**
|
|
40
|
-
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`).
|
|
40
|
+
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`, `whatsappContactMethod`).
|
|
41
41
|
*/
|
|
42
42
|
type: string;
|
|
43
43
|
/**
|
|
@@ -125,7 +125,7 @@ export interface GetUserContactMethodOutputArgs {
|
|
|
125
125
|
*/
|
|
126
126
|
label: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
128
|
-
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`).
|
|
128
|
+
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`, `whatsappContactMethod`).
|
|
129
129
|
*/
|
|
130
130
|
type: pulumi.Input<string>;
|
|
131
131
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/pagerduty",
|
|
3
|
-
"version": "4.30.
|
|
3
|
+
"version": "4.30.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing pagerduty cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "pagerduty",
|
|
26
|
-
"version": "4.30.
|
|
26
|
+
"version": "4.30.3"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/userContactMethod.d.ts
CHANGED
|
@@ -87,7 +87,7 @@ export declare class UserContactMethod extends pulumi.CustomResource {
|
|
|
87
87
|
*/
|
|
88
88
|
readonly sendShortEmail: pulumi.Output<boolean>;
|
|
89
89
|
/**
|
|
90
|
-
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`).
|
|
90
|
+
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`, `whatsappContactMethod`).
|
|
91
91
|
*/
|
|
92
92
|
readonly type: pulumi.Output<string>;
|
|
93
93
|
/**
|
|
@@ -133,7 +133,7 @@ export interface UserContactMethodState {
|
|
|
133
133
|
*/
|
|
134
134
|
sendShortEmail?: pulumi.Input<boolean>;
|
|
135
135
|
/**
|
|
136
|
-
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`).
|
|
136
|
+
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`, `whatsappContactMethod`).
|
|
137
137
|
*/
|
|
138
138
|
type?: pulumi.Input<string>;
|
|
139
139
|
/**
|
|
@@ -163,7 +163,7 @@ export interface UserContactMethodArgs {
|
|
|
163
163
|
*/
|
|
164
164
|
sendShortEmail?: pulumi.Input<boolean>;
|
|
165
165
|
/**
|
|
166
|
-
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`).
|
|
166
|
+
* The contact method type. May be (`emailContactMethod`, `phoneContactMethod`, `smsContactMethod`, `pushNotificationContactMethod`, `whatsappContactMethod`).
|
|
167
167
|
*/
|
|
168
168
|
type: pulumi.Input<string>;
|
|
169
169
|
/**
|