@pulumi/wavefront 2.0.0 → 3.0.0-alpha.1692133443
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/README.md +1 -1
- package/alert.d.ts +10 -10
- package/alert.js +1 -1
- package/alertTarget.d.ts +6 -53
- package/alertTarget.js +0 -53
- package/alertTarget.js.map +1 -1
- package/cloudIntegrationGcp.d.ts +3 -3
- package/dashboard.d.ts +7 -7
- package/dashboard.js +1 -1
- package/dashboardJson.d.ts +119 -95
- package/dashboardJson.js +119 -95
- package/dashboardJson.js.map +1 -1
- package/package.json +2 -2
- package/serviceAccount.d.ts +3 -3
- package/types/input.d.ts +16 -8
- package/types/output.d.ts +18 -10
- package/user.d.ts +3 -3
package/README.md
CHANGED
package/alert.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Provides a Wavefront Alert resource.
|
|
3
|
+
* Provides a Wavefront Alert resource. This allows alerts to be created, updated, and deleted.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -52,7 +52,7 @@ export declare class Alert extends pulumi.CustomResource {
|
|
|
52
52
|
*/
|
|
53
53
|
readonly additionalInformation: pulumi.Output<string | undefined>;
|
|
54
54
|
/**
|
|
55
|
-
* The type of alert in Wavefront.
|
|
55
|
+
* The type of alert in Wavefront. Either `CLASSIC` (default)
|
|
56
56
|
* or `THRESHOLD`.
|
|
57
57
|
*/
|
|
58
58
|
readonly alertType: pulumi.Output<string | undefined>;
|
|
@@ -79,7 +79,7 @@ export declare class Alert extends pulumi.CustomResource {
|
|
|
79
79
|
} | undefined>;
|
|
80
80
|
/**
|
|
81
81
|
* A second query whose results are displayed in the alert user
|
|
82
|
-
* interface instead of the condition query.
|
|
82
|
+
* interface instead of the condition query. This field is often used to display a version
|
|
83
83
|
* of the condition query with Boolean operators removed so that numerical values are plotted.
|
|
84
84
|
*/
|
|
85
85
|
readonly displayExpression: pulumi.Output<string | undefined>;
|
|
@@ -103,7 +103,7 @@ export declare class Alert extends pulumi.CustomResource {
|
|
|
103
103
|
readonly processRateMinutes: pulumi.Output<number | undefined>;
|
|
104
104
|
/**
|
|
105
105
|
* The number of consecutive minutes that a firing series matching the condition
|
|
106
|
-
* query must evaluate to "false" (zero value) before the alert resolves.
|
|
106
|
+
* query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
|
|
107
107
|
* the same value as `minutes`.
|
|
108
108
|
*/
|
|
109
109
|
readonly resolveAfterMinutes: pulumi.Output<number | undefined>;
|
|
@@ -146,7 +146,7 @@ export interface AlertState {
|
|
|
146
146
|
*/
|
|
147
147
|
additionalInformation?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
149
|
-
* The type of alert in Wavefront.
|
|
149
|
+
* The type of alert in Wavefront. Either `CLASSIC` (default)
|
|
150
150
|
* or `THRESHOLD`.
|
|
151
151
|
*/
|
|
152
152
|
alertType?: pulumi.Input<string>;
|
|
@@ -173,7 +173,7 @@ export interface AlertState {
|
|
|
173
173
|
}>;
|
|
174
174
|
/**
|
|
175
175
|
* A second query whose results are displayed in the alert user
|
|
176
|
-
* interface instead of the condition query.
|
|
176
|
+
* interface instead of the condition query. This field is often used to display a version
|
|
177
177
|
* of the condition query with Boolean operators removed so that numerical values are plotted.
|
|
178
178
|
*/
|
|
179
179
|
displayExpression?: pulumi.Input<string>;
|
|
@@ -197,7 +197,7 @@ export interface AlertState {
|
|
|
197
197
|
processRateMinutes?: pulumi.Input<number>;
|
|
198
198
|
/**
|
|
199
199
|
* The number of consecutive minutes that a firing series matching the condition
|
|
200
|
-
* query must evaluate to "false" (zero value) before the alert resolves.
|
|
200
|
+
* query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
|
|
201
201
|
* the same value as `minutes`.
|
|
202
202
|
*/
|
|
203
203
|
resolveAfterMinutes?: pulumi.Input<number>;
|
|
@@ -232,7 +232,7 @@ export interface AlertArgs {
|
|
|
232
232
|
*/
|
|
233
233
|
additionalInformation?: pulumi.Input<string>;
|
|
234
234
|
/**
|
|
235
|
-
* The type of alert in Wavefront.
|
|
235
|
+
* The type of alert in Wavefront. Either `CLASSIC` (default)
|
|
236
236
|
* or `THRESHOLD`.
|
|
237
237
|
*/
|
|
238
238
|
alertType?: pulumi.Input<string>;
|
|
@@ -259,7 +259,7 @@ export interface AlertArgs {
|
|
|
259
259
|
}>;
|
|
260
260
|
/**
|
|
261
261
|
* A second query whose results are displayed in the alert user
|
|
262
|
-
* interface instead of the condition query.
|
|
262
|
+
* interface instead of the condition query. This field is often used to display a version
|
|
263
263
|
* of the condition query with Boolean operators removed so that numerical values are plotted.
|
|
264
264
|
*/
|
|
265
265
|
displayExpression?: pulumi.Input<string>;
|
|
@@ -283,7 +283,7 @@ export interface AlertArgs {
|
|
|
283
283
|
processRateMinutes?: pulumi.Input<number>;
|
|
284
284
|
/**
|
|
285
285
|
* The number of consecutive minutes that a firing series matching the condition
|
|
286
|
-
* query must evaluate to "false" (zero value) before the alert resolves.
|
|
286
|
+
* query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
|
|
287
287
|
* the same value as `minutes`.
|
|
288
288
|
*/
|
|
289
289
|
resolveAfterMinutes?: pulumi.Input<number>;
|
package/alert.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Alert = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides a Wavefront Alert resource.
|
|
9
|
+
* Provides a Wavefront Alert resource. This allows alerts to be created, updated, and deleted.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
package/alertTarget.d.ts
CHANGED
|
@@ -25,59 +25,6 @@ import * as outputs from "./types/output";
|
|
|
25
25
|
* ],
|
|
26
26
|
* });
|
|
27
27
|
* ```
|
|
28
|
-
* ## Attributes Reference
|
|
29
|
-
*
|
|
30
|
-
* * `targetId` - The target ID prefixed with `target:` for interpolating into a Wavefront Alert.
|
|
31
|
-
*
|
|
32
|
-
* ### Route
|
|
33
|
-
*
|
|
34
|
-
* The `route` mapping supports the following:
|
|
35
|
-
*
|
|
36
|
-
* * `method` - (Required) The notification method used for notification target. One of `WEBHOOK`, `EMAIL`, `PAGERDUTY`.
|
|
37
|
-
* * `target` - (Required) The endpoint for the alert route. `EMAIL`: email address. `PAGERDUTY`: PagerDuty routing
|
|
38
|
-
* key. `WEBHOOK`: URL endpoint.
|
|
39
|
-
* * `filter` - (Required) String that filters the route. Space delimited. Currently only allows a single key value pair.
|
|
40
|
-
* (e.g. `env prod`)
|
|
41
|
-
*
|
|
42
|
-
* ### Example
|
|
43
|
-
*
|
|
44
|
-
* ```typescript
|
|
45
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
-
* import * as wavefront from "@pulumi/wavefront";
|
|
47
|
-
*
|
|
48
|
-
* const testTarget = new wavefront.AlertTarget("testTarget", {
|
|
49
|
-
* contentType: "application/json",
|
|
50
|
-
* customHeaders: {
|
|
51
|
-
* Testing: "true",
|
|
52
|
-
* },
|
|
53
|
-
* description: "Test target",
|
|
54
|
-
* method: "WEBHOOK",
|
|
55
|
-
* recipient: "https://hooks.slack.com/services/test/me",
|
|
56
|
-
* routes: [
|
|
57
|
-
* {
|
|
58
|
-
* filter: {
|
|
59
|
-
* key: "env",
|
|
60
|
-
* value: "prod",
|
|
61
|
-
* },
|
|
62
|
-
* method: "WEBHOOK",
|
|
63
|
-
* target: "https://hooks.slack.com/services/test/me/prod",
|
|
64
|
-
* },
|
|
65
|
-
* {
|
|
66
|
-
* filter: {
|
|
67
|
-
* key: "env",
|
|
68
|
-
* value: "dev",
|
|
69
|
-
* },
|
|
70
|
-
* method: "WEBHOOK",
|
|
71
|
-
* target: "https://hooks.slack.com/services/test/me/dev",
|
|
72
|
-
* },
|
|
73
|
-
* ],
|
|
74
|
-
* template: "{}",
|
|
75
|
-
* triggers: [
|
|
76
|
-
* "ALERT_OPENED",
|
|
77
|
-
* "ALERT_RESOLVED",
|
|
78
|
-
* ],
|
|
79
|
-
* });
|
|
80
|
-
* ```
|
|
81
28
|
*
|
|
82
29
|
* ## Import
|
|
83
30
|
*
|
|
@@ -143,6 +90,9 @@ export declare class AlertTarget extends pulumi.CustomResource {
|
|
|
143
90
|
* List of routing targets that this alert target will notify. See Route
|
|
144
91
|
*/
|
|
145
92
|
readonly routes: pulumi.Output<outputs.AlertTargetRoute[] | undefined>;
|
|
93
|
+
/**
|
|
94
|
+
* The target ID prefixed with `target:` for interpolating into a Wavefront Alert.
|
|
95
|
+
*/
|
|
146
96
|
readonly targetId: pulumi.Output<string>;
|
|
147
97
|
/**
|
|
148
98
|
* A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
|
|
@@ -206,6 +156,9 @@ export interface AlertTargetState {
|
|
|
206
156
|
* List of routing targets that this alert target will notify. See Route
|
|
207
157
|
*/
|
|
208
158
|
routes?: pulumi.Input<pulumi.Input<inputs.AlertTargetRoute>[]>;
|
|
159
|
+
/**
|
|
160
|
+
* The target ID prefixed with `target:` for interpolating into a Wavefront Alert.
|
|
161
|
+
*/
|
|
209
162
|
targetId?: pulumi.Input<string>;
|
|
210
163
|
/**
|
|
211
164
|
* A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
|
package/alertTarget.js
CHANGED
|
@@ -29,59 +29,6 @@ const utilities = require("./utilities");
|
|
|
29
29
|
* ],
|
|
30
30
|
* });
|
|
31
31
|
* ```
|
|
32
|
-
* ## Attributes Reference
|
|
33
|
-
*
|
|
34
|
-
* * `targetId` - The target ID prefixed with `target:` for interpolating into a Wavefront Alert.
|
|
35
|
-
*
|
|
36
|
-
* ### Route
|
|
37
|
-
*
|
|
38
|
-
* The `route` mapping supports the following:
|
|
39
|
-
*
|
|
40
|
-
* * `method` - (Required) The notification method used for notification target. One of `WEBHOOK`, `EMAIL`, `PAGERDUTY`.
|
|
41
|
-
* * `target` - (Required) The endpoint for the alert route. `EMAIL`: email address. `PAGERDUTY`: PagerDuty routing
|
|
42
|
-
* key. `WEBHOOK`: URL endpoint.
|
|
43
|
-
* * `filter` - (Required) String that filters the route. Space delimited. Currently only allows a single key value pair.
|
|
44
|
-
* (e.g. `env prod`)
|
|
45
|
-
*
|
|
46
|
-
* ### Example
|
|
47
|
-
*
|
|
48
|
-
* ```typescript
|
|
49
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
-
* import * as wavefront from "@pulumi/wavefront";
|
|
51
|
-
*
|
|
52
|
-
* const testTarget = new wavefront.AlertTarget("testTarget", {
|
|
53
|
-
* contentType: "application/json",
|
|
54
|
-
* customHeaders: {
|
|
55
|
-
* Testing: "true",
|
|
56
|
-
* },
|
|
57
|
-
* description: "Test target",
|
|
58
|
-
* method: "WEBHOOK",
|
|
59
|
-
* recipient: "https://hooks.slack.com/services/test/me",
|
|
60
|
-
* routes: [
|
|
61
|
-
* {
|
|
62
|
-
* filter: {
|
|
63
|
-
* key: "env",
|
|
64
|
-
* value: "prod",
|
|
65
|
-
* },
|
|
66
|
-
* method: "WEBHOOK",
|
|
67
|
-
* target: "https://hooks.slack.com/services/test/me/prod",
|
|
68
|
-
* },
|
|
69
|
-
* {
|
|
70
|
-
* filter: {
|
|
71
|
-
* key: "env",
|
|
72
|
-
* value: "dev",
|
|
73
|
-
* },
|
|
74
|
-
* method: "WEBHOOK",
|
|
75
|
-
* target: "https://hooks.slack.com/services/test/me/dev",
|
|
76
|
-
* },
|
|
77
|
-
* ],
|
|
78
|
-
* template: "{}",
|
|
79
|
-
* triggers: [
|
|
80
|
-
* "ALERT_OPENED",
|
|
81
|
-
* "ALERT_RESOLVED",
|
|
82
|
-
* ],
|
|
83
|
-
* });
|
|
84
|
-
* ```
|
|
85
32
|
*
|
|
86
33
|
* ## Import
|
|
87
34
|
*
|
package/alertTarget.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alertTarget.js","sourceRoot":"","sources":["../alertTarget.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"alertTarget.js","sourceRoot":"","sources":["../alertTarget.ts"],"names":[],"mappings":"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"}
|
package/cloudIntegrationGcp.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare class CloudIntegrationGcp extends pulumi.CustomResource {
|
|
|
48
48
|
[key: string]: string;
|
|
49
49
|
} | undefined>;
|
|
50
50
|
/**
|
|
51
|
-
* A list of Google Cloud Platform (GCP) services.
|
|
51
|
+
* A list of Google Cloud Platform (GCP) services. Valid values are `APPENGINE`,
|
|
52
52
|
* `BIGQUERY`, `BIGTABLE`, `CLOUDFUNCTIONS`, `CLOUDIOT`, `CLOUDSQL`, `CLOUDTASKS`, `COMPUTE`, `CONTAINER`,
|
|
53
53
|
* `DATAFLOW`, `DATAPROC`, `DATASTORE`, `FIREBASEDATABASE`, `FIREBASEHOSTING`, `FIRESTORE`, `INTERCONNECT`,
|
|
54
54
|
* `LOADBALANCING`, `LOGGING`, `ML`, `MONITORING`, `PUBSUB`, `REDIS`, `ROUTER`, `SERVICERUNTIME`, `SPANNER`, `STORAGE`,
|
|
@@ -104,7 +104,7 @@ export interface CloudIntegrationGcpState {
|
|
|
104
104
|
[key: string]: pulumi.Input<string>;
|
|
105
105
|
}>;
|
|
106
106
|
/**
|
|
107
|
-
* A list of Google Cloud Platform (GCP) services.
|
|
107
|
+
* A list of Google Cloud Platform (GCP) services. Valid values are `APPENGINE`,
|
|
108
108
|
* `BIGQUERY`, `BIGTABLE`, `CLOUDFUNCTIONS`, `CLOUDIOT`, `CLOUDSQL`, `CLOUDTASKS`, `COMPUTE`, `CONTAINER`,
|
|
109
109
|
* `DATAFLOW`, `DATAPROC`, `DATASTORE`, `FIREBASEDATABASE`, `FIREBASEHOSTING`, `FIRESTORE`, `INTERCONNECT`,
|
|
110
110
|
* `LOADBALANCING`, `LOGGING`, `ML`, `MONITORING`, `PUBSUB`, `REDIS`, `ROUTER`, `SERVICERUNTIME`, `SPANNER`, `STORAGE`,
|
|
@@ -152,7 +152,7 @@ export interface CloudIntegrationGcpArgs {
|
|
|
152
152
|
[key: string]: pulumi.Input<string>;
|
|
153
153
|
}>;
|
|
154
154
|
/**
|
|
155
|
-
* A list of Google Cloud Platform (GCP) services.
|
|
155
|
+
* A list of Google Cloud Platform (GCP) services. Valid values are `APPENGINE`,
|
|
156
156
|
* `BIGQUERY`, `BIGTABLE`, `CLOUDFUNCTIONS`, `CLOUDIOT`, `CLOUDSQL`, `CLOUDTASKS`, `COMPUTE`, `CONTAINER`,
|
|
157
157
|
* `DATAFLOW`, `DATAPROC`, `DATASTORE`, `FIREBASEDATABASE`, `FIREBASEHOSTING`, `FIRESTORE`, `INTERCONNECT`,
|
|
158
158
|
* `LOADBALANCING`, `LOGGING`, `ML`, `MONITORING`, `PUBSUB`, `REDIS`, `ROUTER`, `SERVICERUNTIME`, `SPANNER`, `STORAGE`,
|
package/dashboard.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Provides a Wavefront Dashboard resource.
|
|
5
|
+
* Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
|
6
6
|
*
|
|
7
7
|
* ## Import
|
|
8
8
|
*
|
|
@@ -29,11 +29,11 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
29
29
|
*/
|
|
30
30
|
static isInstance(obj: any): obj is Dashboard;
|
|
31
31
|
/**
|
|
32
|
-
* A list of users that
|
|
32
|
+
* A list of users/groups/roles that can modify the dashboard.
|
|
33
33
|
*/
|
|
34
34
|
readonly canModifies: pulumi.Output<string[]>;
|
|
35
35
|
/**
|
|
36
|
-
* A list of users that
|
|
36
|
+
* A list of users/groups/roles that can view the dashboard.
|
|
37
37
|
*/
|
|
38
38
|
readonly canViews: pulumi.Output<string[] | undefined>;
|
|
39
39
|
/**
|
|
@@ -89,11 +89,11 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
89
89
|
*/
|
|
90
90
|
export interface DashboardState {
|
|
91
91
|
/**
|
|
92
|
-
* A list of users that
|
|
92
|
+
* A list of users/groups/roles that can modify the dashboard.
|
|
93
93
|
*/
|
|
94
94
|
canModifies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
95
95
|
/**
|
|
96
|
-
* A list of users that
|
|
96
|
+
* A list of users/groups/roles that can view the dashboard.
|
|
97
97
|
*/
|
|
98
98
|
canViews?: pulumi.Input<pulumi.Input<string>[]>;
|
|
99
99
|
/**
|
|
@@ -141,11 +141,11 @@ export interface DashboardState {
|
|
|
141
141
|
*/
|
|
142
142
|
export interface DashboardArgs {
|
|
143
143
|
/**
|
|
144
|
-
* A list of users that
|
|
144
|
+
* A list of users/groups/roles that can modify the dashboard.
|
|
145
145
|
*/
|
|
146
146
|
canModifies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
147
147
|
/**
|
|
148
|
-
* A list of users that
|
|
148
|
+
* A list of users/groups/roles that can view the dashboard.
|
|
149
149
|
*/
|
|
150
150
|
canViews?: pulumi.Input<pulumi.Input<string>[]>;
|
|
151
151
|
/**
|
package/dashboard.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Dashboard = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides a Wavefront Dashboard resource.
|
|
9
|
+
* Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
|
10
10
|
*
|
|
11
11
|
* ## Import
|
|
12
12
|
*
|
package/dashboardJson.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Provides a Wavefront Dashboard JSON resource.
|
|
3
|
+
* Provides a Wavefront Dashboard JSON resource. This allows dashboards to be created, updated, and deleted.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -8,108 +8,132 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as wavefront from "@pulumi/wavefront";
|
|
10
10
|
*
|
|
11
|
-
* const testDashboardJson = new wavefront.DashboardJson("testDashboardJson", {dashboardJson: `{
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
* "expectedDataSpacing": 120,
|
|
48
|
-
* "windowing": "full",
|
|
49
|
-
* "windowSize": 10,
|
|
50
|
-
* "autoColumnTags": false,
|
|
51
|
-
* "columnTags": "deprecated",
|
|
52
|
-
* "tagMode": "all",
|
|
53
|
-
* "numTags": 2,
|
|
54
|
-
* "customTags": [
|
|
55
|
-
* "tag1",
|
|
56
|
-
* "tag2"
|
|
57
|
-
* ],
|
|
58
|
-
* "groupBySource": true,
|
|
59
|
-
* "y1Max": 100,
|
|
60
|
-
* "y1Units": "units",
|
|
61
|
-
* "y0ScaleSIBy1024": true,
|
|
62
|
-
* "y1ScaleSIBy1024": true,
|
|
63
|
-
* "y0UnitAutoscaling": true,
|
|
64
|
-
* "y1UnitAutoscaling": true,
|
|
65
|
-
* "fixedLegendEnabled": true,
|
|
66
|
-
* "fixedLegendUseRawStats": true,
|
|
67
|
-
* "fixedLegendPosition": "RIGHT",
|
|
68
|
-
* "fixedLegendDisplayStats": [
|
|
69
|
-
* "stat1",
|
|
70
|
-
* "stat2"
|
|
11
|
+
* const testDashboardJson = new wavefront.DashboardJson("testDashboardJson", {dashboardJson: ` {
|
|
12
|
+
* "acl": {
|
|
13
|
+
* "canModify": [
|
|
14
|
+
* "group-uuid",
|
|
15
|
+
* "role-uuid"
|
|
16
|
+
* ],
|
|
17
|
+
* "canView": [
|
|
18
|
+
* "group-uuid",
|
|
19
|
+
* "role-uuid"
|
|
20
|
+
* ]
|
|
21
|
+
* },
|
|
22
|
+
* "name": "Terraform Test Dashboard Json",
|
|
23
|
+
* "description": "a",
|
|
24
|
+
* "eventFilterType": "BYCHART",
|
|
25
|
+
* "eventQuery": "",
|
|
26
|
+
* "defaultTimeWindow": "",
|
|
27
|
+
* "url": "tftestimport",
|
|
28
|
+
* "displayDescription": false,
|
|
29
|
+
* "displaySectionTableOfContents": true,
|
|
30
|
+
* "displayQueryParameters": false,
|
|
31
|
+
* "sections": [
|
|
32
|
+
* {
|
|
33
|
+
* "name": "section 1",
|
|
34
|
+
* "rows": [
|
|
35
|
+
* {
|
|
36
|
+
* "charts": [
|
|
37
|
+
* {
|
|
38
|
+
* "name": "chart 1",
|
|
39
|
+
* "sources": [
|
|
40
|
+
* {
|
|
41
|
+
* "name": "source 1",
|
|
42
|
+
* "query": "ts()",
|
|
43
|
+
* "scatterPlotSource": "Y",
|
|
44
|
+
* "querybuilderEnabled": false,
|
|
45
|
+
* "sourceDescription": ""
|
|
46
|
+
* }
|
|
71
47
|
* ],
|
|
72
|
-
* "
|
|
73
|
-
* "
|
|
74
|
-
* "
|
|
75
|
-
* "
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
48
|
+
* "units": "someunit",
|
|
49
|
+
* "base": 0,
|
|
50
|
+
* "noDefaultEvents": false,
|
|
51
|
+
* "interpolatePoints": false,
|
|
52
|
+
* "includeObsoleteMetrics": false,
|
|
53
|
+
* "description": "This is chart 1, showing something",
|
|
54
|
+
* "chartSettings": {
|
|
55
|
+
* "type": "markdown-widget",
|
|
56
|
+
* "max": 100,
|
|
57
|
+
* "expectedDataSpacing": 120,
|
|
58
|
+
* "windowing": "full",
|
|
59
|
+
* "windowSize": 10,
|
|
60
|
+
* "autoColumnTags": false,
|
|
61
|
+
* "columnTags": "deprecated",
|
|
62
|
+
* "tagMode": "all",
|
|
63
|
+
* "numTags": 2,
|
|
64
|
+
* "customTags": [
|
|
65
|
+
* "tag1",
|
|
66
|
+
* "tag2"
|
|
67
|
+
* ],
|
|
68
|
+
* "groupBySource": true,
|
|
69
|
+
* "y1Max": 100,
|
|
70
|
+
* "y1Units": "units",
|
|
71
|
+
* "y0ScaleSIBy1024": true,
|
|
72
|
+
* "y1ScaleSIBy1024": true,
|
|
73
|
+
* "y0UnitAutoscaling": true,
|
|
74
|
+
* "y1UnitAutoscaling": true,
|
|
75
|
+
* "fixedLegendEnabled": true,
|
|
76
|
+
* "fixedLegendUseRawStats": true,
|
|
77
|
+
* "fixedLegendPosition": "RIGHT",
|
|
78
|
+
* "fixedLegendDisplayStats": [
|
|
79
|
+
* "stat1",
|
|
80
|
+
* "stat2"
|
|
81
|
+
* ],
|
|
82
|
+
* "fixedLegendFilterSort": "TOP",
|
|
83
|
+
* "fixedLegendFilterLimit": 1,
|
|
84
|
+
* "fixedLegendFilterField": "CURRENT",
|
|
85
|
+
* "plainMarkdownContent": "markdown content"
|
|
86
|
+
* },
|
|
87
|
+
* "chartAttributes": {
|
|
88
|
+
* "dashboardLinks": {
|
|
89
|
+
* "*": {
|
|
90
|
+
* "variables": {
|
|
91
|
+
* "xxx": "xxx"
|
|
92
|
+
* },
|
|
93
|
+
* "destination": "/dashboards/xxxx"
|
|
94
|
+
* }
|
|
95
|
+
* }
|
|
96
|
+
* },
|
|
97
|
+
* "summarization": "MEAN"
|
|
98
|
+
* }
|
|
99
|
+
* ],
|
|
100
|
+
* "heightFactor": 50
|
|
101
|
+
* }
|
|
102
|
+
* ]
|
|
103
|
+
* }
|
|
104
|
+
* ],
|
|
105
|
+
* "parameterDetails": {
|
|
106
|
+
* "param": {
|
|
107
|
+
* "hideFromView": false,
|
|
108
|
+
* "description": null,
|
|
109
|
+
* "allowAll": null,
|
|
110
|
+
* "tagKey": null,
|
|
111
|
+
* "queryValue": null,
|
|
112
|
+
* "dynamicFieldType": null,
|
|
113
|
+
* "reverseDynSort": null,
|
|
114
|
+
* "parameterType": "SIMPLE",
|
|
115
|
+
* "label": "test",
|
|
116
|
+
* "defaultValue": "Label",
|
|
117
|
+
* "valuesToReadableStrings": {
|
|
118
|
+
* "Label": "test"
|
|
119
|
+
* },
|
|
120
|
+
* "selectedLabel": "Label",
|
|
121
|
+
* "value": "test"
|
|
122
|
+
* }
|
|
123
|
+
* },
|
|
124
|
+
* "tags": {
|
|
125
|
+
* "customerTags": [
|
|
126
|
+
* "terraform"
|
|
82
127
|
* ]
|
|
83
128
|
* }
|
|
84
|
-
* ],
|
|
85
|
-
* "parameterDetails": {
|
|
86
|
-
* "param": {
|
|
87
|
-
* "hideFromView": false,
|
|
88
|
-
* "description": null,
|
|
89
|
-
* "allowAll": null,
|
|
90
|
-
* "tagKey": null,
|
|
91
|
-
* "queryValue": null,
|
|
92
|
-
* "dynamicFieldType": null,
|
|
93
|
-
* "reverseDynSort": null,
|
|
94
|
-
* "parameterType": "SIMPLE",
|
|
95
|
-
* "label": "test",
|
|
96
|
-
* "defaultValue": "Label",
|
|
97
|
-
* "valuesToReadableStrings": {
|
|
98
|
-
* "Label": "test"
|
|
99
|
-
* },
|
|
100
|
-
* "selectedLabel": "Label",
|
|
101
|
-
* "value": "test"
|
|
102
|
-
* }
|
|
103
|
-
* },
|
|
104
|
-
* "tags" :{
|
|
105
|
-
* "customerTags": ["terraform"]
|
|
106
129
|
* }
|
|
107
|
-
* }
|
|
108
130
|
*
|
|
109
131
|
* `});
|
|
110
132
|
* ```
|
|
111
133
|
*
|
|
112
|
-
*
|
|
134
|
+
* *
|
|
135
|
+
* *Note:
|
|
136
|
+
* ** If there are dynamic variables in the Wavefront dashboard json, then these variables must be present in a separate file as mentioned in the section below.
|
|
113
137
|
*
|
|
114
138
|
* ## Import
|
|
115
139
|
*
|
package/dashboardJson.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.DashboardJson = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides a Wavefront Dashboard JSON resource.
|
|
9
|
+
* Provides a Wavefront Dashboard JSON resource. This allows dashboards to be created, updated, and deleted.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -14,108 +14,132 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as wavefront from "@pulumi/wavefront";
|
|
16
16
|
*
|
|
17
|
-
* const testDashboardJson = new wavefront.DashboardJson("testDashboardJson", {dashboardJson: `{
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
* "expectedDataSpacing": 120,
|
|
54
|
-
* "windowing": "full",
|
|
55
|
-
* "windowSize": 10,
|
|
56
|
-
* "autoColumnTags": false,
|
|
57
|
-
* "columnTags": "deprecated",
|
|
58
|
-
* "tagMode": "all",
|
|
59
|
-
* "numTags": 2,
|
|
60
|
-
* "customTags": [
|
|
61
|
-
* "tag1",
|
|
62
|
-
* "tag2"
|
|
63
|
-
* ],
|
|
64
|
-
* "groupBySource": true,
|
|
65
|
-
* "y1Max": 100,
|
|
66
|
-
* "y1Units": "units",
|
|
67
|
-
* "y0ScaleSIBy1024": true,
|
|
68
|
-
* "y1ScaleSIBy1024": true,
|
|
69
|
-
* "y0UnitAutoscaling": true,
|
|
70
|
-
* "y1UnitAutoscaling": true,
|
|
71
|
-
* "fixedLegendEnabled": true,
|
|
72
|
-
* "fixedLegendUseRawStats": true,
|
|
73
|
-
* "fixedLegendPosition": "RIGHT",
|
|
74
|
-
* "fixedLegendDisplayStats": [
|
|
75
|
-
* "stat1",
|
|
76
|
-
* "stat2"
|
|
17
|
+
* const testDashboardJson = new wavefront.DashboardJson("testDashboardJson", {dashboardJson: ` {
|
|
18
|
+
* "acl": {
|
|
19
|
+
* "canModify": [
|
|
20
|
+
* "group-uuid",
|
|
21
|
+
* "role-uuid"
|
|
22
|
+
* ],
|
|
23
|
+
* "canView": [
|
|
24
|
+
* "group-uuid",
|
|
25
|
+
* "role-uuid"
|
|
26
|
+
* ]
|
|
27
|
+
* },
|
|
28
|
+
* "name": "Terraform Test Dashboard Json",
|
|
29
|
+
* "description": "a",
|
|
30
|
+
* "eventFilterType": "BYCHART",
|
|
31
|
+
* "eventQuery": "",
|
|
32
|
+
* "defaultTimeWindow": "",
|
|
33
|
+
* "url": "tftestimport",
|
|
34
|
+
* "displayDescription": false,
|
|
35
|
+
* "displaySectionTableOfContents": true,
|
|
36
|
+
* "displayQueryParameters": false,
|
|
37
|
+
* "sections": [
|
|
38
|
+
* {
|
|
39
|
+
* "name": "section 1",
|
|
40
|
+
* "rows": [
|
|
41
|
+
* {
|
|
42
|
+
* "charts": [
|
|
43
|
+
* {
|
|
44
|
+
* "name": "chart 1",
|
|
45
|
+
* "sources": [
|
|
46
|
+
* {
|
|
47
|
+
* "name": "source 1",
|
|
48
|
+
* "query": "ts()",
|
|
49
|
+
* "scatterPlotSource": "Y",
|
|
50
|
+
* "querybuilderEnabled": false,
|
|
51
|
+
* "sourceDescription": ""
|
|
52
|
+
* }
|
|
77
53
|
* ],
|
|
78
|
-
* "
|
|
79
|
-
* "
|
|
80
|
-
* "
|
|
81
|
-
* "
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
85
|
-
*
|
|
86
|
-
*
|
|
87
|
-
*
|
|
54
|
+
* "units": "someunit",
|
|
55
|
+
* "base": 0,
|
|
56
|
+
* "noDefaultEvents": false,
|
|
57
|
+
* "interpolatePoints": false,
|
|
58
|
+
* "includeObsoleteMetrics": false,
|
|
59
|
+
* "description": "This is chart 1, showing something",
|
|
60
|
+
* "chartSettings": {
|
|
61
|
+
* "type": "markdown-widget",
|
|
62
|
+
* "max": 100,
|
|
63
|
+
* "expectedDataSpacing": 120,
|
|
64
|
+
* "windowing": "full",
|
|
65
|
+
* "windowSize": 10,
|
|
66
|
+
* "autoColumnTags": false,
|
|
67
|
+
* "columnTags": "deprecated",
|
|
68
|
+
* "tagMode": "all",
|
|
69
|
+
* "numTags": 2,
|
|
70
|
+
* "customTags": [
|
|
71
|
+
* "tag1",
|
|
72
|
+
* "tag2"
|
|
73
|
+
* ],
|
|
74
|
+
* "groupBySource": true,
|
|
75
|
+
* "y1Max": 100,
|
|
76
|
+
* "y1Units": "units",
|
|
77
|
+
* "y0ScaleSIBy1024": true,
|
|
78
|
+
* "y1ScaleSIBy1024": true,
|
|
79
|
+
* "y0UnitAutoscaling": true,
|
|
80
|
+
* "y1UnitAutoscaling": true,
|
|
81
|
+
* "fixedLegendEnabled": true,
|
|
82
|
+
* "fixedLegendUseRawStats": true,
|
|
83
|
+
* "fixedLegendPosition": "RIGHT",
|
|
84
|
+
* "fixedLegendDisplayStats": [
|
|
85
|
+
* "stat1",
|
|
86
|
+
* "stat2"
|
|
87
|
+
* ],
|
|
88
|
+
* "fixedLegendFilterSort": "TOP",
|
|
89
|
+
* "fixedLegendFilterLimit": 1,
|
|
90
|
+
* "fixedLegendFilterField": "CURRENT",
|
|
91
|
+
* "plainMarkdownContent": "markdown content"
|
|
92
|
+
* },
|
|
93
|
+
* "chartAttributes": {
|
|
94
|
+
* "dashboardLinks": {
|
|
95
|
+
* "*": {
|
|
96
|
+
* "variables": {
|
|
97
|
+
* "xxx": "xxx"
|
|
98
|
+
* },
|
|
99
|
+
* "destination": "/dashboards/xxxx"
|
|
100
|
+
* }
|
|
101
|
+
* }
|
|
102
|
+
* },
|
|
103
|
+
* "summarization": "MEAN"
|
|
104
|
+
* }
|
|
105
|
+
* ],
|
|
106
|
+
* "heightFactor": 50
|
|
107
|
+
* }
|
|
108
|
+
* ]
|
|
109
|
+
* }
|
|
110
|
+
* ],
|
|
111
|
+
* "parameterDetails": {
|
|
112
|
+
* "param": {
|
|
113
|
+
* "hideFromView": false,
|
|
114
|
+
* "description": null,
|
|
115
|
+
* "allowAll": null,
|
|
116
|
+
* "tagKey": null,
|
|
117
|
+
* "queryValue": null,
|
|
118
|
+
* "dynamicFieldType": null,
|
|
119
|
+
* "reverseDynSort": null,
|
|
120
|
+
* "parameterType": "SIMPLE",
|
|
121
|
+
* "label": "test",
|
|
122
|
+
* "defaultValue": "Label",
|
|
123
|
+
* "valuesToReadableStrings": {
|
|
124
|
+
* "Label": "test"
|
|
125
|
+
* },
|
|
126
|
+
* "selectedLabel": "Label",
|
|
127
|
+
* "value": "test"
|
|
128
|
+
* }
|
|
129
|
+
* },
|
|
130
|
+
* "tags": {
|
|
131
|
+
* "customerTags": [
|
|
132
|
+
* "terraform"
|
|
88
133
|
* ]
|
|
89
134
|
* }
|
|
90
|
-
* ],
|
|
91
|
-
* "parameterDetails": {
|
|
92
|
-
* "param": {
|
|
93
|
-
* "hideFromView": false,
|
|
94
|
-
* "description": null,
|
|
95
|
-
* "allowAll": null,
|
|
96
|
-
* "tagKey": null,
|
|
97
|
-
* "queryValue": null,
|
|
98
|
-
* "dynamicFieldType": null,
|
|
99
|
-
* "reverseDynSort": null,
|
|
100
|
-
* "parameterType": "SIMPLE",
|
|
101
|
-
* "label": "test",
|
|
102
|
-
* "defaultValue": "Label",
|
|
103
|
-
* "valuesToReadableStrings": {
|
|
104
|
-
* "Label": "test"
|
|
105
|
-
* },
|
|
106
|
-
* "selectedLabel": "Label",
|
|
107
|
-
* "value": "test"
|
|
108
|
-
* }
|
|
109
|
-
* },
|
|
110
|
-
* "tags" :{
|
|
111
|
-
* "customerTags": ["terraform"]
|
|
112
135
|
* }
|
|
113
|
-
* }
|
|
114
136
|
*
|
|
115
137
|
* `});
|
|
116
138
|
* ```
|
|
117
139
|
*
|
|
118
|
-
*
|
|
140
|
+
* *
|
|
141
|
+
* *Note:
|
|
142
|
+
* ** If there are dynamic variables in the Wavefront dashboard json, then these variables must be present in a separate file as mentioned in the section below.
|
|
119
143
|
*
|
|
120
144
|
* ## Import
|
|
121
145
|
*
|
package/dashboardJson.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboardJson.js","sourceRoot":"","sources":["../dashboardJson.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"dashboardJson.js","sourceRoot":"","sources":["../dashboardJson.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+IG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AAzDL,sCA0DC;AA5CG,gBAAgB;AACO,0BAAY,GAAG,6CAA6C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/wavefront",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "v3.0.0-alpha.1692133443+985b8bfd",
|
|
4
4
|
"description": "A Pulumi package for creating and managing wavefront 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 wavefront
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource wavefront v3.0.0-alpha.1692133443+985b8bfd"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/serviceAccount.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare class ServiceAccount extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly ingestionPolicy: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
* List of permission to grant to this service account.
|
|
58
|
+
* List of permission to grant to this service account. Valid options are
|
|
59
59
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
60
60
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
61
61
|
*/
|
|
@@ -94,7 +94,7 @@ export interface ServiceAccountState {
|
|
|
94
94
|
*/
|
|
95
95
|
ingestionPolicy?: pulumi.Input<string>;
|
|
96
96
|
/**
|
|
97
|
-
* List of permission to grant to this service account.
|
|
97
|
+
* List of permission to grant to this service account. Valid options are
|
|
98
98
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
99
99
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
100
100
|
*/
|
|
@@ -125,7 +125,7 @@ export interface ServiceAccountArgs {
|
|
|
125
125
|
*/
|
|
126
126
|
ingestionPolicy?: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
128
|
-
* List of permission to grant to this service account.
|
|
128
|
+
* List of permission to grant to this service account. Valid options are
|
|
129
129
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
130
130
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
131
131
|
*/
|
package/types/input.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
export interface AlertTargetRoute {
|
|
4
|
+
/**
|
|
5
|
+
* (Required) String that filters the route. Space delimited. Currently only allows a single key value pair.
|
|
6
|
+
* (e.g. `env prod`)
|
|
7
|
+
*/
|
|
4
8
|
filter?: pulumi.Input<{
|
|
5
9
|
[key: string]: pulumi.Input<string>;
|
|
6
10
|
}>;
|
|
@@ -8,6 +12,10 @@ export interface AlertTargetRoute {
|
|
|
8
12
|
* The notification method used for notification target. One of `WEBHOOK`, `EMAIL`, `PAGERDUTY`.
|
|
9
13
|
*/
|
|
10
14
|
method: pulumi.Input<string>;
|
|
15
|
+
/**
|
|
16
|
+
* (Required) The endpoint for the alert route. `EMAIL`: email address. `PAGERDUTY`: PagerDuty routing
|
|
17
|
+
* key. `WEBHOOK`: URL endpoint.
|
|
18
|
+
*/
|
|
11
19
|
target: pulumi.Input<string>;
|
|
12
20
|
}
|
|
13
21
|
export interface CloudIntegrationNewRelicMetricFilter {
|
|
@@ -55,7 +63,7 @@ export interface DashboardParameterDetail {
|
|
|
55
63
|
*/
|
|
56
64
|
tagKey?: pulumi.Input<string>;
|
|
57
65
|
/**
|
|
58
|
-
* A string->string map.
|
|
66
|
+
* A string->string map. At least one of the keys must match the value of
|
|
59
67
|
* `defaultValue`.
|
|
60
68
|
*/
|
|
61
69
|
valuesToReadableStrings: pulumi.Input<{
|
|
@@ -169,7 +177,7 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
169
177
|
fixedLegendUseRawStats?: pulumi.Input<boolean>;
|
|
170
178
|
/**
|
|
171
179
|
* For the tabular view, whether to group multi metrics into a single row by a common source.
|
|
172
|
-
* If `false`, each source is displayed in its own row.
|
|
180
|
+
* If `false`, each source is displayed in its own row. if `true`, multiple metrics for the same host are displayed as different
|
|
173
181
|
* columns in the same row.
|
|
174
182
|
*/
|
|
175
183
|
groupBySource?: pulumi.Input<boolean>;
|
|
@@ -251,12 +259,12 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
251
259
|
*/
|
|
252
260
|
sparklineDisplayVerticalPosition?: pulumi.Input<string>;
|
|
253
261
|
/**
|
|
254
|
-
* For the single stat view, the color of the background fill.
|
|
262
|
+
* For the single stat view, the color of the background fill. Values should be
|
|
255
263
|
* in `rgba(,,,,)`.
|
|
256
264
|
*/
|
|
257
265
|
sparklineFillColor?: pulumi.Input<string>;
|
|
258
266
|
/**
|
|
259
|
-
* For the single stat view, the color of the line.
|
|
267
|
+
* For the single stat view, the color of the line. Values should be in `rgba(,,,,)` format.
|
|
260
268
|
*/
|
|
261
269
|
sparklineLineColor?: pulumi.Input<string>;
|
|
262
270
|
/**
|
|
@@ -280,17 +288,17 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
280
288
|
sparklineValueColorMapValues?: pulumi.Input<pulumi.Input<number>[]>;
|
|
281
289
|
/**
|
|
282
290
|
* For the single stat view, a list of boundaries for mapping different
|
|
283
|
-
* query values to colors.
|
|
291
|
+
* query values to colors. Must contain one element less than `sparklineValueColorMapColors`.
|
|
284
292
|
*/
|
|
285
293
|
sparklineValueColorMapValuesV2s?: pulumi.Input<pulumi.Input<number>[]>;
|
|
286
294
|
/**
|
|
287
295
|
* For the single stat view, a list of display text values that different query
|
|
288
|
-
* values map to.
|
|
296
|
+
* values map to. Must contain one more element than `sparklineValueTextMapThresholds`.
|
|
289
297
|
*/
|
|
290
298
|
sparklineValueTextMapTexts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
291
299
|
/**
|
|
292
300
|
* For the single stat view, a list of threshold boundaries for
|
|
293
|
-
* mapping different query values to display text.
|
|
301
|
+
* mapping different query values to display text. Must contain one element less than `sparklineValueTextMapText`.
|
|
294
302
|
*/
|
|
295
303
|
sparklineValueTextMapThresholds?: pulumi.Input<pulumi.Input<number>[]>;
|
|
296
304
|
/**
|
|
@@ -311,7 +319,7 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
311
319
|
/**
|
|
312
320
|
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to
|
|
313
321
|
* the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the
|
|
314
|
-
* Markdown display, and `sparkline` to the Single Stat view. Valid options are
|
|
322
|
+
* Markdown display, and `sparkline` to the Single Stat view. Valid options are`line`, `scatterplot`,
|
|
315
323
|
* `stacked-area`, `stacked-column`, `table`, `scatterplot-xy`, `markdown-widget`, `sparkline`, `globe`, `nodemap`,
|
|
316
324
|
* `top-k`, `status-list`, and `histogram`.
|
|
317
325
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface AlertTargetRoute {
|
|
3
|
+
/**
|
|
4
|
+
* (Required) String that filters the route. Space delimited. Currently only allows a single key value pair.
|
|
5
|
+
* (e.g. `env prod`)
|
|
6
|
+
*/
|
|
3
7
|
filter?: {
|
|
4
8
|
[key: string]: string;
|
|
5
9
|
};
|
|
@@ -7,6 +11,10 @@ export interface AlertTargetRoute {
|
|
|
7
11
|
* The notification method used for notification target. One of `WEBHOOK`, `EMAIL`, `PAGERDUTY`.
|
|
8
12
|
*/
|
|
9
13
|
method: string;
|
|
14
|
+
/**
|
|
15
|
+
* (Required) The endpoint for the alert route. `EMAIL`: email address. `PAGERDUTY`: PagerDuty routing
|
|
16
|
+
* key. `WEBHOOK`: URL endpoint.
|
|
17
|
+
*/
|
|
10
18
|
target: string;
|
|
11
19
|
}
|
|
12
20
|
export interface CloudIntegrationNewRelicMetricFilter {
|
|
@@ -54,7 +62,7 @@ export interface DashboardParameterDetail {
|
|
|
54
62
|
*/
|
|
55
63
|
tagKey?: string;
|
|
56
64
|
/**
|
|
57
|
-
* A string->string map.
|
|
65
|
+
* A string->string map. At least one of the keys must match the value of
|
|
58
66
|
* `defaultValue`.
|
|
59
67
|
*/
|
|
60
68
|
valuesToReadableStrings: {
|
|
@@ -168,7 +176,7 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
168
176
|
fixedLegendUseRawStats?: boolean;
|
|
169
177
|
/**
|
|
170
178
|
* For the tabular view, whether to group multi metrics into a single row by a common source.
|
|
171
|
-
* If `false`, each source is displayed in its own row.
|
|
179
|
+
* If `false`, each source is displayed in its own row. if `true`, multiple metrics for the same host are displayed as different
|
|
172
180
|
* columns in the same row.
|
|
173
181
|
*/
|
|
174
182
|
groupBySource?: boolean;
|
|
@@ -250,12 +258,12 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
250
258
|
*/
|
|
251
259
|
sparklineDisplayVerticalPosition?: string;
|
|
252
260
|
/**
|
|
253
|
-
* For the single stat view, the color of the background fill.
|
|
261
|
+
* For the single stat view, the color of the background fill. Values should be
|
|
254
262
|
* in `rgba(,,,,)`.
|
|
255
263
|
*/
|
|
256
264
|
sparklineFillColor?: string;
|
|
257
265
|
/**
|
|
258
|
-
* For the single stat view, the color of the line.
|
|
266
|
+
* For the single stat view, the color of the line. Values should be in `rgba(,,,,)` format.
|
|
259
267
|
*/
|
|
260
268
|
sparklineLineColor?: string;
|
|
261
269
|
/**
|
|
@@ -279,17 +287,17 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
279
287
|
sparklineValueColorMapValues?: number[];
|
|
280
288
|
/**
|
|
281
289
|
* For the single stat view, a list of boundaries for mapping different
|
|
282
|
-
* query values to colors.
|
|
290
|
+
* query values to colors. Must contain one element less than `sparklineValueColorMapColors`.
|
|
283
291
|
*/
|
|
284
292
|
sparklineValueColorMapValuesV2s?: number[];
|
|
285
293
|
/**
|
|
286
294
|
* For the single stat view, a list of display text values that different query
|
|
287
|
-
* values map to.
|
|
295
|
+
* values map to. Must contain one more element than `sparklineValueTextMapThresholds`.
|
|
288
296
|
*/
|
|
289
297
|
sparklineValueTextMapTexts?: string[];
|
|
290
298
|
/**
|
|
291
299
|
* For the single stat view, a list of threshold boundaries for
|
|
292
|
-
* mapping different query values to display text.
|
|
300
|
+
* mapping different query values to display text. Must contain one element less than `sparklineValueTextMapText`.
|
|
293
301
|
*/
|
|
294
302
|
sparklineValueTextMapThresholds?: number[];
|
|
295
303
|
/**
|
|
@@ -310,7 +318,7 @@ export interface DashboardSectionRowChartChartSetting {
|
|
|
310
318
|
/**
|
|
311
319
|
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to
|
|
312
320
|
* the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the
|
|
313
|
-
* Markdown display, and `sparkline` to the Single Stat view. Valid options are
|
|
321
|
+
* Markdown display, and `sparkline` to the Single Stat view. Valid options are`line`, `scatterplot`,
|
|
314
322
|
* `stacked-area`, `stacked-column`, `table`, `scatterplot-xy`, `markdown-widget`, `sparkline`, `globe`, `nodemap`,
|
|
315
323
|
* `top-k`, `status-list`, and `histogram`.
|
|
316
324
|
*/
|
|
@@ -761,7 +769,7 @@ export interface GetDashboardSectionRowChartChartSetting {
|
|
|
761
769
|
*/
|
|
762
770
|
timeBasedColoring: boolean;
|
|
763
771
|
/**
|
|
764
|
-
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the Markdown display, and `sparkline` to the Single Stat view. Valid options are
|
|
772
|
+
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the Markdown display, and `sparkline` to the Single Stat view. Valid options are`line`, `scatterplot`,
|
|
765
773
|
* `stacked-area`, `stacked-column`, `table`, `scatterplot-xy`, `markdown-widget`, `sparkline`, `globe`, `nodemap`, `top-k`, `status-list`, and `histogram`.
|
|
766
774
|
*/
|
|
767
775
|
type: string;
|
|
@@ -1156,7 +1164,7 @@ export interface GetDashboardsDashboardSectionRowChartChartSetting {
|
|
|
1156
1164
|
*/
|
|
1157
1165
|
timeBasedColoring: boolean;
|
|
1158
1166
|
/**
|
|
1159
|
-
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the Markdown display, and `sparkline` to the Single Stat view. Valid options are
|
|
1167
|
+
* Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the Markdown display, and `sparkline` to the Single Stat view. Valid options are`line`, `scatterplot`, `stacked-area`, `stacked-column`, `table`, `scatterplot-xy`, `markdown-widget`, `sparkline`, `globe`, `nodemap`, `top-k`, `status-list`, and `histogram`.
|
|
1160
1168
|
*/
|
|
1161
1169
|
type: string;
|
|
1162
1170
|
/**
|
package/user.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export declare class User extends pulumi.CustomResource {
|
|
|
44
44
|
*/
|
|
45
45
|
readonly email: pulumi.Output<string>;
|
|
46
46
|
/**
|
|
47
|
-
* List of permission to grant to this user.
|
|
47
|
+
* List of permission to grant to this user. Valid options are
|
|
48
48
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
49
49
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
50
50
|
*/
|
|
@@ -75,7 +75,7 @@ export interface UserState {
|
|
|
75
75
|
*/
|
|
76
76
|
email?: pulumi.Input<string>;
|
|
77
77
|
/**
|
|
78
|
-
* List of permission to grant to this user.
|
|
78
|
+
* List of permission to grant to this user. Valid options are
|
|
79
79
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
80
80
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
81
81
|
*/
|
|
@@ -98,7 +98,7 @@ export interface UserArgs {
|
|
|
98
98
|
*/
|
|
99
99
|
email: pulumi.Input<string>;
|
|
100
100
|
/**
|
|
101
|
-
* List of permission to grant to this user.
|
|
101
|
+
* List of permission to grant to this user. Valid options are
|
|
102
102
|
* `agentManagement`, `alertsManagement`, `dashboardManagement`, `embeddedCharts`, `eventsManagement`, `externalLinksManagement`,
|
|
103
103
|
* `hostTagManagement`, `metricsManagement`, and `userManagement`.
|
|
104
104
|
*/
|