@pulumi/wavefront 1.2.0-alpha.1648832928 → 1.2.0-alpha.1654087414
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/dashboard.d.ts +0 -56
- package/dashboard.js +0 -56
- package/dashboard.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
package/dashboard.d.ts
CHANGED
|
@@ -3,62 +3,6 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
3
3
|
/**
|
|
4
4
|
* Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
|
5
5
|
*
|
|
6
|
-
* ## Example Usage
|
|
7
|
-
*
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
-
* import * as wavefront from "@pulumi/wavefront";
|
|
11
|
-
*
|
|
12
|
-
* const basic = new wavefront.User("basic", {
|
|
13
|
-
* email: "test+tftesting@example.com",
|
|
14
|
-
* groups: [
|
|
15
|
-
* "agent_management",
|
|
16
|
-
* "alerts_management",
|
|
17
|
-
* ],
|
|
18
|
-
* });
|
|
19
|
-
* const testDashboard = new wavefront.Dashboard("testDashboard", {
|
|
20
|
-
* description: "testing, testing",
|
|
21
|
-
* url: "tftestcreate",
|
|
22
|
-
* displaySectionTableOfContents: true,
|
|
23
|
-
* displayQueryParameters: true,
|
|
24
|
-
* canViews: [basic.id],
|
|
25
|
-
* sections: [{
|
|
26
|
-
* name: "section 1",
|
|
27
|
-
* rows: [{
|
|
28
|
-
* charts: [{
|
|
29
|
-
* name: "chart 1",
|
|
30
|
-
* description: "chart number 1",
|
|
31
|
-
* units: "something per unit",
|
|
32
|
-
* sources: [{
|
|
33
|
-
* name: "source name",
|
|
34
|
-
* query: "ts()",
|
|
35
|
-
* }],
|
|
36
|
-
* chartSetting: {
|
|
37
|
-
* type: "linear",
|
|
38
|
-
* },
|
|
39
|
-
* summarization: "MEAN",
|
|
40
|
-
* }],
|
|
41
|
-
* }],
|
|
42
|
-
* }],
|
|
43
|
-
* parameterDetails: [{
|
|
44
|
-
* name: "param1",
|
|
45
|
-
* label: "param1",
|
|
46
|
-
* defaultValue: "Label",
|
|
47
|
-
* hideFromView: false,
|
|
48
|
-
* parameterType: "SIMPLE",
|
|
49
|
-
* valuesToReadableStrings: {
|
|
50
|
-
* Label: "test",
|
|
51
|
-
* },
|
|
52
|
-
* }],
|
|
53
|
-
* tags: [
|
|
54
|
-
* "b",
|
|
55
|
-
* "terraform",
|
|
56
|
-
* "a",
|
|
57
|
-
* "test",
|
|
58
|
-
* ],
|
|
59
|
-
* });
|
|
60
|
-
* ```
|
|
61
|
-
*
|
|
62
6
|
* ## Import
|
|
63
7
|
*
|
|
64
8
|
* Dashboards can be imported by using the `id`, e.g.
|
package/dashboard.js
CHANGED
|
@@ -8,62 +8,6 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides a Wavefront Dashboard resource. This allows dashboards to be created, updated, and deleted.
|
|
10
10
|
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as wavefront from "@pulumi/wavefront";
|
|
16
|
-
*
|
|
17
|
-
* const basic = new wavefront.User("basic", {
|
|
18
|
-
* email: "test+tftesting@example.com",
|
|
19
|
-
* groups: [
|
|
20
|
-
* "agent_management",
|
|
21
|
-
* "alerts_management",
|
|
22
|
-
* ],
|
|
23
|
-
* });
|
|
24
|
-
* const testDashboard = new wavefront.Dashboard("testDashboard", {
|
|
25
|
-
* description: "testing, testing",
|
|
26
|
-
* url: "tftestcreate",
|
|
27
|
-
* displaySectionTableOfContents: true,
|
|
28
|
-
* displayQueryParameters: true,
|
|
29
|
-
* canViews: [basic.id],
|
|
30
|
-
* sections: [{
|
|
31
|
-
* name: "section 1",
|
|
32
|
-
* rows: [{
|
|
33
|
-
* charts: [{
|
|
34
|
-
* name: "chart 1",
|
|
35
|
-
* description: "chart number 1",
|
|
36
|
-
* units: "something per unit",
|
|
37
|
-
* sources: [{
|
|
38
|
-
* name: "source name",
|
|
39
|
-
* query: "ts()",
|
|
40
|
-
* }],
|
|
41
|
-
* chartSetting: {
|
|
42
|
-
* type: "linear",
|
|
43
|
-
* },
|
|
44
|
-
* summarization: "MEAN",
|
|
45
|
-
* }],
|
|
46
|
-
* }],
|
|
47
|
-
* }],
|
|
48
|
-
* parameterDetails: [{
|
|
49
|
-
* name: "param1",
|
|
50
|
-
* label: "param1",
|
|
51
|
-
* defaultValue: "Label",
|
|
52
|
-
* hideFromView: false,
|
|
53
|
-
* parameterType: "SIMPLE",
|
|
54
|
-
* valuesToReadableStrings: {
|
|
55
|
-
* Label: "test",
|
|
56
|
-
* },
|
|
57
|
-
* }],
|
|
58
|
-
* tags: [
|
|
59
|
-
* "b",
|
|
60
|
-
* "terraform",
|
|
61
|
-
* "a",
|
|
62
|
-
* "test",
|
|
63
|
-
* ],
|
|
64
|
-
* });
|
|
65
|
-
* ```
|
|
66
|
-
*
|
|
67
11
|
* ## Import
|
|
68
12
|
*
|
|
69
13
|
* Dashboards can be imported by using the `id`, e.g.
|
package/dashboard.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../dashboard.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../dashboard.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/wavefront",
|
|
3
|
-
"version": "v1.2.0-alpha.
|
|
3
|
+
"version": "v1.2.0-alpha.1654087414+67983be3",
|
|
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 v1.2.0-alpha.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource wavefront v1.2.0-alpha.1654087414+67983be3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/wavefront",
|
|
3
|
-
"version": "v1.2.0-alpha.
|
|
3
|
+
"version": "v1.2.0-alpha.1654087414+67983be3",
|
|
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 v1.2.0-alpha.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource wavefront v1.2.0-alpha.1654087414+67983be3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|