@pulumi/opsgenie 1.1.8 → 1.1.9
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.
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/types/input.d.ts +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/opsgenie",
|
|
3
|
-
"version": "v1.1.
|
|
3
|
+
"version": "v1.1.9",
|
|
4
4
|
"description": "A Pulumi package for creating and managing opsgenie cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource opsgenie v1.1.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource opsgenie v1.1.9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"typescript": "^4.3.5"
|
|
23
23
|
},
|
|
24
24
|
"pulumi": {
|
|
25
|
-
"resource": true
|
|
25
|
+
"resource": true,
|
|
26
|
+
"name": "opsgenie"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/package.json.bak
CHANGED
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/opsgenie",
|
|
3
|
-
"version": "v1.1.
|
|
3
|
+
"version": "v1.1.9",
|
|
4
4
|
"description": "A Pulumi package for creating and managing opsgenie cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource opsgenie v1.1.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource opsgenie v1.1.9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"typescript": "^4.3.5"
|
|
23
23
|
},
|
|
24
24
|
"pulumi": {
|
|
25
|
-
"resource": true
|
|
25
|
+
"resource": true,
|
|
26
|
+
"name": "opsgenie"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -187,13 +187,6 @@ export interface GetEscalationRuleArgs {
|
|
|
187
187
|
notifyType: pulumi.Input<string>;
|
|
188
188
|
recipients: pulumi.Input<pulumi.Input<inputs.GetEscalationRuleRecipientArgs>[]>;
|
|
189
189
|
}
|
|
190
|
-
export interface GetEscalationRuleRecipientArgs {
|
|
191
|
-
/**
|
|
192
|
-
* The ID of the Opsgenie Escalation.
|
|
193
|
-
*/
|
|
194
|
-
id?: pulumi.Input<string>;
|
|
195
|
-
type?: pulumi.Input<string>;
|
|
196
|
-
}
|
|
197
190
|
export interface GetEscalationRuleRecipient {
|
|
198
191
|
/**
|
|
199
192
|
* The ID of the Opsgenie Escalation.
|
|
@@ -201,12 +194,12 @@ export interface GetEscalationRuleRecipient {
|
|
|
201
194
|
id?: string;
|
|
202
195
|
type?: string;
|
|
203
196
|
}
|
|
204
|
-
export interface
|
|
197
|
+
export interface GetEscalationRuleRecipientArgs {
|
|
205
198
|
/**
|
|
206
|
-
* The ID of the Opsgenie
|
|
199
|
+
* The ID of the Opsgenie Escalation.
|
|
207
200
|
*/
|
|
208
201
|
id?: pulumi.Input<string>;
|
|
209
|
-
|
|
202
|
+
type?: pulumi.Input<string>;
|
|
210
203
|
}
|
|
211
204
|
export interface GetTeamMember {
|
|
212
205
|
/**
|
|
@@ -215,6 +208,13 @@ export interface GetTeamMember {
|
|
|
215
208
|
id?: string;
|
|
216
209
|
role?: string;
|
|
217
210
|
}
|
|
211
|
+
export interface GetTeamMemberArgs {
|
|
212
|
+
/**
|
|
213
|
+
* The ID of the Opsgenie Team.
|
|
214
|
+
*/
|
|
215
|
+
id?: pulumi.Input<string>;
|
|
216
|
+
role?: pulumi.Input<string>;
|
|
217
|
+
}
|
|
218
218
|
export interface IncidentTemplateStakeholderProperty {
|
|
219
219
|
/**
|
|
220
220
|
* Description that is generally used to provide a detailed information about the alert. This field must not be longer than 15000 characters.
|