@pulumi/wavefront 3.2.0-alpha.1706750552 → 3.2.0-alpha.1706815662
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 +6 -0
- package/types/output.d.ts +18 -0
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
export interface AlertAlertTriageDashboard {
|
|
4
|
+
/**
|
|
5
|
+
* Dashboard ID
|
|
6
|
+
*/
|
|
4
7
|
dashboardId: pulumi.Input<string>;
|
|
8
|
+
/**
|
|
9
|
+
* Dashboard Description
|
|
10
|
+
*/
|
|
5
11
|
description: pulumi.Input<string>;
|
|
6
12
|
parameters?: pulumi.Input<inputs.AlertAlertTriageDashboardParameters>;
|
|
7
13
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface AlertAlertTriageDashboard {
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard ID
|
|
5
|
+
*/
|
|
3
6
|
dashboardId: string;
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard Description
|
|
9
|
+
*/
|
|
4
10
|
description: string;
|
|
5
11
|
parameters?: outputs.AlertAlertTriageDashboardParameters;
|
|
6
12
|
}
|
|
@@ -414,7 +420,13 @@ export interface DashboardSectionRowChartSource {
|
|
|
414
420
|
sourceDescription?: string;
|
|
415
421
|
}
|
|
416
422
|
export interface GetAlertAlertTriageDashboard {
|
|
423
|
+
/**
|
|
424
|
+
* Dashboard ID
|
|
425
|
+
*/
|
|
417
426
|
dashboardId: string;
|
|
427
|
+
/**
|
|
428
|
+
* Dashboard Description
|
|
429
|
+
*/
|
|
418
430
|
description: string;
|
|
419
431
|
parameters?: outputs.GetAlertAlertTriageDashboardParameters;
|
|
420
432
|
}
|
|
@@ -535,7 +547,13 @@ export interface GetAlertsAlert {
|
|
|
535
547
|
};
|
|
536
548
|
}
|
|
537
549
|
export interface GetAlertsAlertAlertTriageDashboard {
|
|
550
|
+
/**
|
|
551
|
+
* Dashboard ID
|
|
552
|
+
*/
|
|
538
553
|
dashboardId: string;
|
|
554
|
+
/**
|
|
555
|
+
* Dashboard Description
|
|
556
|
+
*/
|
|
539
557
|
description: string;
|
|
540
558
|
parameters?: outputs.GetAlertsAlertAlertTriageDashboardParameters;
|
|
541
559
|
}
|