@pulumi/opsgenie 1.2.7 → 1.2.8

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/alertPolicy.d.ts CHANGED
@@ -131,7 +131,7 @@ export declare class AlertPolicy extends pulumi.CustomResource {
131
131
  */
132
132
  readonly priority: pulumi.Output<string | undefined>;
133
133
  /**
134
- * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`. This is a block, structure is documented below.
134
+ * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`, `escalation`, `schedule`. This is a block, structure is documented below.
135
135
  */
136
136
  readonly responders: pulumi.Output<outputs.AlertPolicyResponder[] | undefined>;
137
137
  /**
@@ -224,7 +224,7 @@ export interface AlertPolicyState {
224
224
  */
225
225
  priority?: pulumi.Input<string>;
226
226
  /**
227
- * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`. This is a block, structure is documented below.
227
+ * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`, `escalation`, `schedule`. This is a block, structure is documented below.
228
228
  */
229
229
  responders?: pulumi.Input<pulumi.Input<inputs.AlertPolicyResponder>[]>;
230
230
  /**
@@ -309,7 +309,7 @@ export interface AlertPolicyArgs {
309
309
  */
310
310
  priority?: pulumi.Input<string>;
311
311
  /**
312
- * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`. This is a block, structure is documented below.
312
+ * Responders to add to the alerts original responders value as a list of teams, users or the reserved word none or all. If `ignoreOriginalResponders` field is set to `true`, this will replace the original responders. The possible values for responders are: `user`, `team`, `escalation`, `schedule`. This is a block, structure is documented below.
313
313
  */
314
314
  responders?: pulumi.Input<pulumi.Input<inputs.AlertPolicyResponder>[]>;
315
315
  /**
@@ -99,7 +99,7 @@ export declare class ApiIntegration extends pulumi.CustomResource {
99
99
  */
100
100
  readonly name: pulumi.Output<string>;
101
101
  /**
102
- * Owner team id of the integration.
102
+ * Owner team id of the integration. If changed, this will recreate a new API integration, which will probably have a different API key.
103
103
  */
104
104
  readonly ownerTeamId: pulumi.Output<string | undefined>;
105
105
  /**
@@ -155,7 +155,7 @@ export interface ApiIntegrationState {
155
155
  */
156
156
  name?: pulumi.Input<string>;
157
157
  /**
158
- * Owner team id of the integration.
158
+ * Owner team id of the integration. If changed, this will recreate a new API integration, which will probably have a different API key.
159
159
  */
160
160
  ownerTeamId?: pulumi.Input<string>;
161
161
  /**
@@ -199,7 +199,7 @@ export interface ApiIntegrationArgs {
199
199
  */
200
200
  name?: pulumi.Input<string>;
201
201
  /**
202
- * Owner team id of the integration.
202
+ * Owner team id of the integration. If changed, this will recreate a new API integration, which will probably have a different API key.
203
203
  */
204
204
  ownerTeamId?: pulumi.Input<string>;
205
205
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/opsgenie",
3
- "version": "v1.2.7",
3
+ "version": "v1.2.8",
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.2.7"
14
+ "install": "node scripts/install-pulumi-plugin.js resource opsgenie v1.2.8"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -46,7 +46,7 @@ export interface AlertPolicyResponder {
46
46
  */
47
47
  name?: pulumi.Input<string>;
48
48
  /**
49
- * Type of responder. Acceptable values are: `user` or `team`
49
+ * Type of responder. Acceptable values are: `user`, `team`, `escalation` or `schedule`
50
50
  */
51
51
  type: pulumi.Input<string>;
52
52
  /**
package/types/output.d.ts CHANGED
@@ -45,7 +45,7 @@ export interface AlertPolicyResponder {
45
45
  */
46
46
  name?: string;
47
47
  /**
48
- * Type of responder. Acceptable values are: `user` or `team`
48
+ * Type of responder. Acceptable values are: `user`, `team`, `escalation` or `schedule`
49
49
  */
50
50
  type: string;
51
51
  /**