@pulumiverse/grafana 2.2.0 → 2.3.0-alpha.1759494769
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 +2 -2
- package/types/input.d.ts +4 -0
- package/types/output.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/grafana",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0-alpha.1759494769",
|
|
4
4
|
"description": "A Pulumi package for creating and managing grafana.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "grafana",
|
|
27
|
-
"version": "2.
|
|
27
|
+
"version": "2.3.0-alpha.1759494769",
|
|
28
28
|
"server": "github://api.github.com/pulumiverse"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1272,6 +1272,10 @@ export declare namespace alerting {
|
|
|
1272
1272
|
to: pulumi.Input<number>;
|
|
1273
1273
|
}
|
|
1274
1274
|
interface RuleGroupRuleNotificationSettings {
|
|
1275
|
+
/**
|
|
1276
|
+
* A list of time interval names to apply to alerts that match this policy to suppress them unless they are sent at the specified time. Supported in Grafana 12.1.0 and later
|
|
1277
|
+
*/
|
|
1278
|
+
activeTimings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1275
1279
|
/**
|
|
1276
1280
|
* The contact point to route notifications that match this rule to.
|
|
1277
1281
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -1271,6 +1271,10 @@ export declare namespace alerting {
|
|
|
1271
1271
|
to: number;
|
|
1272
1272
|
}
|
|
1273
1273
|
interface RuleGroupRuleNotificationSettings {
|
|
1274
|
+
/**
|
|
1275
|
+
* A list of time interval names to apply to alerts that match this policy to suppress them unless they are sent at the specified time. Supported in Grafana 12.1.0 and later
|
|
1276
|
+
*/
|
|
1277
|
+
activeTimings?: string[];
|
|
1274
1278
|
/**
|
|
1275
1279
|
* The contact point to route notifications that match this rule to.
|
|
1276
1280
|
*/
|