@pulumi/pagerduty 4.3.0-alpha.1702360421 → 4.3.0
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 +1 -1
- package/types/input.d.ts +10 -0
- package/types/output.d.ts +10 -0
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -27,12 +27,22 @@ export interface EscalationPolicyRule {
|
|
|
27
27
|
* The number of minutes before an unacknowledged incident escalates away from this rule.
|
|
28
28
|
*/
|
|
29
29
|
escalationDelayInMinutes: pulumi.Input<number>;
|
|
30
|
+
/**
|
|
31
|
+
* The strategy used to assign the escalation rule to an incident. Documented below.
|
|
32
|
+
*/
|
|
33
|
+
escalationRuleAssignmentStrategy?: pulumi.Input<inputs.EscalationPolicyRuleEscalationRuleAssignmentStrategy>;
|
|
30
34
|
/**
|
|
31
35
|
* A target ID
|
|
32
36
|
*/
|
|
33
37
|
id?: pulumi.Input<string>;
|
|
34
38
|
targets: pulumi.Input<pulumi.Input<inputs.EscalationPolicyRuleTarget>[]>;
|
|
35
39
|
}
|
|
40
|
+
export interface EscalationPolicyRuleEscalationRuleAssignmentStrategy {
|
|
41
|
+
/**
|
|
42
|
+
* Can be `roundRobin` or `assignToEveryone`.
|
|
43
|
+
*/
|
|
44
|
+
type?: pulumi.Input<string>;
|
|
45
|
+
}
|
|
36
46
|
export interface EscalationPolicyRuleTarget {
|
|
37
47
|
/**
|
|
38
48
|
* A target ID
|
package/types/output.d.ts
CHANGED
|
@@ -26,12 +26,22 @@ export interface EscalationPolicyRule {
|
|
|
26
26
|
* The number of minutes before an unacknowledged incident escalates away from this rule.
|
|
27
27
|
*/
|
|
28
28
|
escalationDelayInMinutes: number;
|
|
29
|
+
/**
|
|
30
|
+
* The strategy used to assign the escalation rule to an incident. Documented below.
|
|
31
|
+
*/
|
|
32
|
+
escalationRuleAssignmentStrategy: outputs.EscalationPolicyRuleEscalationRuleAssignmentStrategy;
|
|
29
33
|
/**
|
|
30
34
|
* A target ID
|
|
31
35
|
*/
|
|
32
36
|
id: string;
|
|
33
37
|
targets: outputs.EscalationPolicyRuleTarget[];
|
|
34
38
|
}
|
|
39
|
+
export interface EscalationPolicyRuleEscalationRuleAssignmentStrategy {
|
|
40
|
+
/**
|
|
41
|
+
* Can be `roundRobin` or `assignToEveryone`.
|
|
42
|
+
*/
|
|
43
|
+
type: string;
|
|
44
|
+
}
|
|
35
45
|
export interface EscalationPolicyRuleTarget {
|
|
36
46
|
/**
|
|
37
47
|
* A target ID
|