@pulumi/signalfx 7.0.1 → 7.0.2
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/alertMutingRule.d.ts +37 -19
- package/alertMutingRule.js +22 -4
- package/alertMutingRule.js.map +1 -1
- package/aws/externalIntegration.d.ts +23 -11
- package/aws/externalIntegration.js +16 -4
- package/aws/externalIntegration.js.map +1 -1
- package/aws/integration.d.ts +141 -72
- package/aws/integration.js +41 -4
- package/aws/integration.js.map +1 -1
- package/aws/tokenIntegration.d.ts +18 -7
- package/aws/tokenIntegration.js +13 -2
- package/aws/tokenIntegration.js.map +1 -1
- package/azure/integration.d.ts +101 -45
- package/azure/integration.js +29 -3
- package/azure/integration.js.map +1 -1
- package/config/vars.d.ts +3 -3
- package/dashboard.d.ts +62 -62
- package/dashboardGroup.d.ts +62 -27
- package/dashboardGroup.js +41 -6
- package/dashboardGroup.js.map +1 -1
- package/dataLink.d.ts +52 -18
- package/dataLink.js +31 -3
- package/dataLink.js.map +1 -1
- package/detector.d.ts +133 -70
- package/detector.js +70 -15
- package/detector.js.map +1 -1
- package/eventFeedChart.d.ts +38 -20
- package/eventFeedChart.js +18 -0
- package/eventFeedChart.js.map +1 -1
- package/gcp/integration.d.ts +64 -33
- package/gcp/integration.js +22 -3
- package/gcp/integration.js.map +1 -1
- package/getDimensionValues.d.ts +18 -2
- package/getDimensionValues.js +18 -2
- package/getDimensionValues.js.map +1 -1
- package/heatmapChart.d.ts +80 -46
- package/heatmapChart.js +36 -2
- package/heatmapChart.js.map +1 -1
- package/jira/integration.d.ts +51 -24
- package/jira/integration.js +24 -3
- package/jira/integration.js.map +1 -1
- package/listChart.d.ts +111 -64
- package/listChart.js +46 -2
- package/listChart.js.map +1 -1
- package/log/timeline.d.ts +44 -24
- package/log/timeline.js +21 -1
- package/log/timeline.js.map +1 -1
- package/log/view.d.ts +54 -31
- package/log/view.js +25 -2
- package/log/view.js.map +1 -1
- package/metricRuleset.d.ts +33 -11
- package/metricRuleset.js +24 -2
- package/metricRuleset.js.map +1 -1
- package/opsgenie/integration.d.ts +28 -15
- package/opsgenie/integration.js +16 -3
- package/opsgenie/integration.js.map +1 -1
- package/orgToken.d.ts +50 -39
- package/orgToken.js +32 -3
- package/orgToken.js.map +1 -1
- package/package.json +1 -1
- package/pagerduty/getIntegration.d.ts +22 -14
- package/pagerduty/getIntegration.js +22 -2
- package/pagerduty/getIntegration.js.map +1 -1
- package/pagerduty/integration.d.ts +23 -12
- package/pagerduty/integration.js +14 -3
- package/pagerduty/integration.js.map +1 -1
- package/provider.d.ts +6 -6
- package/servicenow/integration.d.ts +46 -17
- package/servicenow/integration.js +19 -2
- package/servicenow/integration.js.map +1 -1
- package/singleValueChart.d.ts +74 -39
- package/singleValueChart.js +36 -1
- package/singleValueChart.js.map +1 -1
- package/slack/integration.d.ts +24 -12
- package/slack/integration.js +15 -3
- package/slack/integration.js.map +1 -1
- package/tableChart.d.ts +32 -16
- package/tableChart.js +18 -2
- package/tableChart.js.map +1 -1
- package/team.d.ts +54 -33
- package/team.js +25 -4
- package/team.js.map +1 -1
- package/textChart.d.ts +27 -12
- package/textChart.js +16 -1
- package/textChart.js.map +1 -1
- package/timeChart.d.ts +148 -94
- package/timeChart.js +68 -2
- package/timeChart.js.map +1 -1
- package/types/input.d.ts +0 -577
- package/types/output.d.ts +0 -577
- package/victorops/integration.d.ts +24 -12
- package/victorops/integration.js +15 -3
- package/victorops/integration.js.map +1 -1
- package/webhookIntegration.d.ts +31 -15
- package/webhookIntegration.js +19 -3
- package/webhookIntegration.js.map +1 -1
package/slack/integration.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Slack integration.
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the
|
|
5
|
+
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator). Otherwise you'll receive a 4xx error.
|
|
6
6
|
*
|
|
7
|
-
* ## Example
|
|
7
|
+
* ## Example
|
|
8
8
|
*
|
|
9
9
|
* ```typescript
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -15,6 +15,18 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* webhookUrl: "http://example.com",
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
|
18
|
+
*
|
|
19
|
+
* ## Arguments
|
|
20
|
+
*
|
|
21
|
+
* * `name` - (Required) Name of the integration.
|
|
22
|
+
* * `enabled` - (Required) Whether the integration is enabled.
|
|
23
|
+
* * `webhookUrl` - (Required) Slack incoming webhook URL.
|
|
24
|
+
*
|
|
25
|
+
* ## Attributes
|
|
26
|
+
*
|
|
27
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
28
|
+
*
|
|
29
|
+
* * `id` - The ID of the integration.
|
|
18
30
|
*/
|
|
19
31
|
export declare class Integration extends pulumi.CustomResource {
|
|
20
32
|
/**
|
|
@@ -33,15 +45,15 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
33
45
|
*/
|
|
34
46
|
static isInstance(obj: any): obj is Integration;
|
|
35
47
|
/**
|
|
36
|
-
* Whether the integration is enabled
|
|
48
|
+
* Whether the integration is enabled or not
|
|
37
49
|
*/
|
|
38
50
|
readonly enabled: pulumi.Output<boolean>;
|
|
39
51
|
/**
|
|
40
|
-
* Name of the integration
|
|
52
|
+
* Name of the integration
|
|
41
53
|
*/
|
|
42
54
|
readonly name: pulumi.Output<string>;
|
|
43
55
|
/**
|
|
44
|
-
* Slack
|
|
56
|
+
* Slack Webhook URL for integration
|
|
45
57
|
*/
|
|
46
58
|
readonly webhookUrl: pulumi.Output<string>;
|
|
47
59
|
/**
|
|
@@ -58,15 +70,15 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
58
70
|
*/
|
|
59
71
|
export interface IntegrationState {
|
|
60
72
|
/**
|
|
61
|
-
* Whether the integration is enabled
|
|
73
|
+
* Whether the integration is enabled or not
|
|
62
74
|
*/
|
|
63
75
|
enabled?: pulumi.Input<boolean>;
|
|
64
76
|
/**
|
|
65
|
-
* Name of the integration
|
|
77
|
+
* Name of the integration
|
|
66
78
|
*/
|
|
67
79
|
name?: pulumi.Input<string>;
|
|
68
80
|
/**
|
|
69
|
-
* Slack
|
|
81
|
+
* Slack Webhook URL for integration
|
|
70
82
|
*/
|
|
71
83
|
webhookUrl?: pulumi.Input<string>;
|
|
72
84
|
}
|
|
@@ -75,15 +87,15 @@ export interface IntegrationState {
|
|
|
75
87
|
*/
|
|
76
88
|
export interface IntegrationArgs {
|
|
77
89
|
/**
|
|
78
|
-
* Whether the integration is enabled
|
|
90
|
+
* Whether the integration is enabled or not
|
|
79
91
|
*/
|
|
80
92
|
enabled: pulumi.Input<boolean>;
|
|
81
93
|
/**
|
|
82
|
-
* Name of the integration
|
|
94
|
+
* Name of the integration
|
|
83
95
|
*/
|
|
84
96
|
name?: pulumi.Input<string>;
|
|
85
97
|
/**
|
|
86
|
-
* Slack
|
|
98
|
+
* Slack Webhook URL for integration
|
|
87
99
|
*/
|
|
88
100
|
webhookUrl: pulumi.Input<string>;
|
|
89
101
|
}
|
package/slack/integration.js
CHANGED
|
@@ -6,11 +6,11 @@ exports.Integration = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Slack integration.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the
|
|
11
|
+
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator). Otherwise you'll receive a 4xx error.
|
|
12
12
|
*
|
|
13
|
-
* ## Example
|
|
13
|
+
* ## Example
|
|
14
14
|
*
|
|
15
15
|
* ```typescript
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -21,6 +21,18 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* webhookUrl: "http://example.com",
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Arguments
|
|
26
|
+
*
|
|
27
|
+
* * `name` - (Required) Name of the integration.
|
|
28
|
+
* * `enabled` - (Required) Whether the integration is enabled.
|
|
29
|
+
* * `webhookUrl` - (Required) Slack incoming webhook URL.
|
|
30
|
+
*
|
|
31
|
+
* ## Attributes
|
|
32
|
+
*
|
|
33
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
34
|
+
*
|
|
35
|
+
* * `id` - The ID of the integration.
|
|
24
36
|
*/
|
|
25
37
|
class Integration extends pulumi.CustomResource {
|
|
26
38
|
/**
|
package/slack/integration.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../slack/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../slack/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,UAAU,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;SAChG;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC;QAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAzEL,kCA0EC;AA5DG,gBAAgB;AACO,wBAAY,GAAG,wCAAwC,CAAC"}
|
package/tableChart.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ 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
|
-
* This special type of chart displays a
|
|
5
|
+
* This special type of chart displays a data table. This table can be grouped by a dimension.
|
|
6
6
|
*
|
|
7
|
-
* ## Example
|
|
7
|
+
* ## Example
|
|
8
8
|
*
|
|
9
9
|
* ```typescript
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -19,6 +19,22 @@ import * as outputs from "./types/output";
|
|
|
19
19
|
* programText: "A = data('cpu.usage.total').publish(label='CPU Total')",
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Arguments
|
|
24
|
+
*
|
|
25
|
+
* The following arguments are supported in the resource block:
|
|
26
|
+
*
|
|
27
|
+
* * `name` - (Required) Name of the table chart.
|
|
28
|
+
* * `programText` - (Required) The SignalFlow for your Data Table Chart
|
|
29
|
+
* * `description` - (Optional) Description of the table chart.
|
|
30
|
+
* * `groupBy` - (Optional) Dimension to group by
|
|
31
|
+
*
|
|
32
|
+
* ## Attributes
|
|
33
|
+
*
|
|
34
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
35
|
+
*
|
|
36
|
+
* * `id` - The ID of the chart.
|
|
37
|
+
* * `url` - The URL of the chart.
|
|
22
38
|
*/
|
|
23
39
|
export declare class TableChart extends pulumi.CustomResource {
|
|
24
40
|
/**
|
|
@@ -37,7 +53,7 @@ export declare class TableChart extends pulumi.CustomResource {
|
|
|
37
53
|
*/
|
|
38
54
|
static isInstance(obj: any): obj is TableChart;
|
|
39
55
|
/**
|
|
40
|
-
* Description of the
|
|
56
|
+
* Description of the chart (Optional)
|
|
41
57
|
*/
|
|
42
58
|
readonly description: pulumi.Output<string | undefined>;
|
|
43
59
|
/**
|
|
@@ -45,7 +61,7 @@ export declare class TableChart extends pulumi.CustomResource {
|
|
|
45
61
|
*/
|
|
46
62
|
readonly disableSampling: pulumi.Output<boolean | undefined>;
|
|
47
63
|
/**
|
|
48
|
-
*
|
|
64
|
+
* Properties to group by in the Table (in nesting order)
|
|
49
65
|
*/
|
|
50
66
|
readonly groupBies: pulumi.Output<string[] | undefined>;
|
|
51
67
|
/**
|
|
@@ -61,11 +77,11 @@ export declare class TableChart extends pulumi.CustomResource {
|
|
|
61
77
|
*/
|
|
62
78
|
readonly minimumResolution: pulumi.Output<number | undefined>;
|
|
63
79
|
/**
|
|
64
|
-
* Name of the
|
|
80
|
+
* Name of the chart
|
|
65
81
|
*/
|
|
66
82
|
readonly name: pulumi.Output<string>;
|
|
67
83
|
/**
|
|
68
|
-
*
|
|
84
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
69
85
|
*/
|
|
70
86
|
readonly programText: pulumi.Output<string>;
|
|
71
87
|
/**
|
|
@@ -81,7 +97,7 @@ export declare class TableChart extends pulumi.CustomResource {
|
|
|
81
97
|
*/
|
|
82
98
|
readonly unitPrefix: pulumi.Output<string | undefined>;
|
|
83
99
|
/**
|
|
84
|
-
*
|
|
100
|
+
* URL of the chart
|
|
85
101
|
*/
|
|
86
102
|
readonly url: pulumi.Output<string>;
|
|
87
103
|
/**
|
|
@@ -102,7 +118,7 @@ export declare class TableChart extends pulumi.CustomResource {
|
|
|
102
118
|
*/
|
|
103
119
|
export interface TableChartState {
|
|
104
120
|
/**
|
|
105
|
-
* Description of the
|
|
121
|
+
* Description of the chart (Optional)
|
|
106
122
|
*/
|
|
107
123
|
description?: pulumi.Input<string>;
|
|
108
124
|
/**
|
|
@@ -110,7 +126,7 @@ export interface TableChartState {
|
|
|
110
126
|
*/
|
|
111
127
|
disableSampling?: pulumi.Input<boolean>;
|
|
112
128
|
/**
|
|
113
|
-
*
|
|
129
|
+
* Properties to group by in the Table (in nesting order)
|
|
114
130
|
*/
|
|
115
131
|
groupBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
116
132
|
/**
|
|
@@ -126,11 +142,11 @@ export interface TableChartState {
|
|
|
126
142
|
*/
|
|
127
143
|
minimumResolution?: pulumi.Input<number>;
|
|
128
144
|
/**
|
|
129
|
-
* Name of the
|
|
145
|
+
* Name of the chart
|
|
130
146
|
*/
|
|
131
147
|
name?: pulumi.Input<string>;
|
|
132
148
|
/**
|
|
133
|
-
*
|
|
149
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
134
150
|
*/
|
|
135
151
|
programText?: pulumi.Input<string>;
|
|
136
152
|
/**
|
|
@@ -146,7 +162,7 @@ export interface TableChartState {
|
|
|
146
162
|
*/
|
|
147
163
|
unitPrefix?: pulumi.Input<string>;
|
|
148
164
|
/**
|
|
149
|
-
*
|
|
165
|
+
* URL of the chart
|
|
150
166
|
*/
|
|
151
167
|
url?: pulumi.Input<string>;
|
|
152
168
|
/**
|
|
@@ -159,7 +175,7 @@ export interface TableChartState {
|
|
|
159
175
|
*/
|
|
160
176
|
export interface TableChartArgs {
|
|
161
177
|
/**
|
|
162
|
-
* Description of the
|
|
178
|
+
* Description of the chart (Optional)
|
|
163
179
|
*/
|
|
164
180
|
description?: pulumi.Input<string>;
|
|
165
181
|
/**
|
|
@@ -167,7 +183,7 @@ export interface TableChartArgs {
|
|
|
167
183
|
*/
|
|
168
184
|
disableSampling?: pulumi.Input<boolean>;
|
|
169
185
|
/**
|
|
170
|
-
*
|
|
186
|
+
* Properties to group by in the Table (in nesting order)
|
|
171
187
|
*/
|
|
172
188
|
groupBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
173
189
|
/**
|
|
@@ -183,11 +199,11 @@ export interface TableChartArgs {
|
|
|
183
199
|
*/
|
|
184
200
|
minimumResolution?: pulumi.Input<number>;
|
|
185
201
|
/**
|
|
186
|
-
* Name of the
|
|
202
|
+
* Name of the chart
|
|
187
203
|
*/
|
|
188
204
|
name?: pulumi.Input<string>;
|
|
189
205
|
/**
|
|
190
|
-
*
|
|
206
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
191
207
|
*/
|
|
192
208
|
programText: pulumi.Input<string>;
|
|
193
209
|
/**
|
package/tableChart.js
CHANGED
|
@@ -6,9 +6,9 @@ exports.TableChart = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* This special type of chart displays a
|
|
9
|
+
* This special type of chart displays a data table. This table can be grouped by a dimension.
|
|
10
10
|
*
|
|
11
|
-
* ## Example
|
|
11
|
+
* ## Example
|
|
12
12
|
*
|
|
13
13
|
* ```typescript
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -23,6 +23,22 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* programText: "A = data('cpu.usage.total').publish(label='CPU Total')",
|
|
24
24
|
* });
|
|
25
25
|
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Arguments
|
|
28
|
+
*
|
|
29
|
+
* The following arguments are supported in the resource block:
|
|
30
|
+
*
|
|
31
|
+
* * `name` - (Required) Name of the table chart.
|
|
32
|
+
* * `programText` - (Required) The SignalFlow for your Data Table Chart
|
|
33
|
+
* * `description` - (Optional) Description of the table chart.
|
|
34
|
+
* * `groupBy` - (Optional) Dimension to group by
|
|
35
|
+
*
|
|
36
|
+
* ## Attributes
|
|
37
|
+
*
|
|
38
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
39
|
+
*
|
|
40
|
+
* * `id` - The ID of the chart.
|
|
41
|
+
* * `url` - The URL of the chart.
|
|
26
42
|
*/
|
|
27
43
|
class TableChart extends pulumi.CustomResource {
|
|
28
44
|
/**
|
package/tableChart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tableChart.js","sourceRoot":"","sources":["../tableChart.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"tableChart.js","sourceRoot":"","sources":["../tableChart.ts"],"names":[],"mappings":"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"}
|
package/team.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Handles management of
|
|
3
|
+
* Handles management of Splunk Observability Cloud teams.
|
|
4
4
|
*
|
|
5
|
-
* You can configure [team notification policies](https://docs.
|
|
5
|
+
* You can configure [team notification policies](https://docs.splunk.com/observability/en/admin/user-management/teams/team-notifications.html) using this resource and the various `notifications_*` properties.
|
|
6
6
|
*
|
|
7
|
-
* > **NOTE** When managing teams, use a session token of an administrator to authenticate the
|
|
7
|
+
* > **NOTE** When managing teams, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator).
|
|
8
8
|
*
|
|
9
|
-
* ## Example
|
|
9
|
+
* ## Example
|
|
10
10
|
*
|
|
11
11
|
* ```typescript
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -22,6 +22,27 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* notificationsInfos: ["Email,notify@example.com"],
|
|
23
23
|
* });
|
|
24
24
|
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Arguments
|
|
27
|
+
*
|
|
28
|
+
* The following arguments are supported in the resource block:
|
|
29
|
+
*
|
|
30
|
+
* * `name` - (Required) Name of the team.
|
|
31
|
+
* * `description` - (Optional) Description of the team.
|
|
32
|
+
* * `members` - (Optional) List of user IDs to include in the team.
|
|
33
|
+
* * `notificationsCritical` - (Optional) Where to send notifications for critical alerts
|
|
34
|
+
* * `notificationsDefault` - (Optional) Where to send notifications for default alerts
|
|
35
|
+
* * `notificationsInfo` - (Optional) Where to send notifications for info alerts
|
|
36
|
+
* * `notificationsMajor` - (Optional) Where to send notifications for major alerts
|
|
37
|
+
* * `notificationsMinor` - (Optional) Where to send notifications for minor alerts
|
|
38
|
+
* * `notificationsWarning` - (Optional) Where to send notifications for warning alerts
|
|
39
|
+
*
|
|
40
|
+
* ## Attributes
|
|
41
|
+
*
|
|
42
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
43
|
+
*
|
|
44
|
+
* * `id` - The ID of the team.
|
|
45
|
+
* * `url` - The URL of the team.
|
|
25
46
|
*/
|
|
26
47
|
export declare class Team extends pulumi.CustomResource {
|
|
27
48
|
/**
|
|
@@ -40,43 +61,43 @@ export declare class Team extends pulumi.CustomResource {
|
|
|
40
61
|
*/
|
|
41
62
|
static isInstance(obj: any): obj is Team;
|
|
42
63
|
/**
|
|
43
|
-
* Description of the team
|
|
64
|
+
* Description of the team (Optional)
|
|
44
65
|
*/
|
|
45
66
|
readonly description: pulumi.Output<string | undefined>;
|
|
46
67
|
/**
|
|
47
|
-
*
|
|
68
|
+
* Members of team
|
|
48
69
|
*/
|
|
49
70
|
readonly members: pulumi.Output<string[] | undefined>;
|
|
50
71
|
/**
|
|
51
|
-
* Name of the team
|
|
72
|
+
* Name of the team
|
|
52
73
|
*/
|
|
53
74
|
readonly name: pulumi.Output<string>;
|
|
54
75
|
/**
|
|
55
|
-
*
|
|
76
|
+
* List of notification destinations to use for the critical alerts category.
|
|
56
77
|
*/
|
|
57
78
|
readonly notificationsCriticals: pulumi.Output<string[] | undefined>;
|
|
58
79
|
/**
|
|
59
|
-
*
|
|
80
|
+
* List of notification destinations to use for the default alerts category.
|
|
60
81
|
*/
|
|
61
82
|
readonly notificationsDefaults: pulumi.Output<string[] | undefined>;
|
|
62
83
|
/**
|
|
63
|
-
*
|
|
84
|
+
* List of notification destinations to use for the info alerts category.
|
|
64
85
|
*/
|
|
65
86
|
readonly notificationsInfos: pulumi.Output<string[] | undefined>;
|
|
66
87
|
/**
|
|
67
|
-
*
|
|
88
|
+
* List of notification destinations to use for the major alerts category.
|
|
68
89
|
*/
|
|
69
90
|
readonly notificationsMajors: pulumi.Output<string[] | undefined>;
|
|
70
91
|
/**
|
|
71
|
-
*
|
|
92
|
+
* List of notification destinations to use for the minor alerts category.
|
|
72
93
|
*/
|
|
73
94
|
readonly notificationsMinors: pulumi.Output<string[] | undefined>;
|
|
74
95
|
/**
|
|
75
|
-
*
|
|
96
|
+
* List of notification destinations to use for the warning alerts category.
|
|
76
97
|
*/
|
|
77
98
|
readonly notificationsWarnings: pulumi.Output<string[] | undefined>;
|
|
78
99
|
/**
|
|
79
|
-
*
|
|
100
|
+
* URL of the team
|
|
80
101
|
*/
|
|
81
102
|
readonly url: pulumi.Output<string>;
|
|
82
103
|
/**
|
|
@@ -93,43 +114,43 @@ export declare class Team extends pulumi.CustomResource {
|
|
|
93
114
|
*/
|
|
94
115
|
export interface TeamState {
|
|
95
116
|
/**
|
|
96
|
-
* Description of the team
|
|
117
|
+
* Description of the team (Optional)
|
|
97
118
|
*/
|
|
98
119
|
description?: pulumi.Input<string>;
|
|
99
120
|
/**
|
|
100
|
-
*
|
|
121
|
+
* Members of team
|
|
101
122
|
*/
|
|
102
123
|
members?: pulumi.Input<pulumi.Input<string>[]>;
|
|
103
124
|
/**
|
|
104
|
-
* Name of the team
|
|
125
|
+
* Name of the team
|
|
105
126
|
*/
|
|
106
127
|
name?: pulumi.Input<string>;
|
|
107
128
|
/**
|
|
108
|
-
*
|
|
129
|
+
* List of notification destinations to use for the critical alerts category.
|
|
109
130
|
*/
|
|
110
131
|
notificationsCriticals?: pulumi.Input<pulumi.Input<string>[]>;
|
|
111
132
|
/**
|
|
112
|
-
*
|
|
133
|
+
* List of notification destinations to use for the default alerts category.
|
|
113
134
|
*/
|
|
114
135
|
notificationsDefaults?: pulumi.Input<pulumi.Input<string>[]>;
|
|
115
136
|
/**
|
|
116
|
-
*
|
|
137
|
+
* List of notification destinations to use for the info alerts category.
|
|
117
138
|
*/
|
|
118
139
|
notificationsInfos?: pulumi.Input<pulumi.Input<string>[]>;
|
|
119
140
|
/**
|
|
120
|
-
*
|
|
141
|
+
* List of notification destinations to use for the major alerts category.
|
|
121
142
|
*/
|
|
122
143
|
notificationsMajors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123
144
|
/**
|
|
124
|
-
*
|
|
145
|
+
* List of notification destinations to use for the minor alerts category.
|
|
125
146
|
*/
|
|
126
147
|
notificationsMinors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
127
148
|
/**
|
|
128
|
-
*
|
|
149
|
+
* List of notification destinations to use for the warning alerts category.
|
|
129
150
|
*/
|
|
130
151
|
notificationsWarnings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
131
152
|
/**
|
|
132
|
-
*
|
|
153
|
+
* URL of the team
|
|
133
154
|
*/
|
|
134
155
|
url?: pulumi.Input<string>;
|
|
135
156
|
}
|
|
@@ -138,39 +159,39 @@ export interface TeamState {
|
|
|
138
159
|
*/
|
|
139
160
|
export interface TeamArgs {
|
|
140
161
|
/**
|
|
141
|
-
* Description of the team
|
|
162
|
+
* Description of the team (Optional)
|
|
142
163
|
*/
|
|
143
164
|
description?: pulumi.Input<string>;
|
|
144
165
|
/**
|
|
145
|
-
*
|
|
166
|
+
* Members of team
|
|
146
167
|
*/
|
|
147
168
|
members?: pulumi.Input<pulumi.Input<string>[]>;
|
|
148
169
|
/**
|
|
149
|
-
* Name of the team
|
|
170
|
+
* Name of the team
|
|
150
171
|
*/
|
|
151
172
|
name?: pulumi.Input<string>;
|
|
152
173
|
/**
|
|
153
|
-
*
|
|
174
|
+
* List of notification destinations to use for the critical alerts category.
|
|
154
175
|
*/
|
|
155
176
|
notificationsCriticals?: pulumi.Input<pulumi.Input<string>[]>;
|
|
156
177
|
/**
|
|
157
|
-
*
|
|
178
|
+
* List of notification destinations to use for the default alerts category.
|
|
158
179
|
*/
|
|
159
180
|
notificationsDefaults?: pulumi.Input<pulumi.Input<string>[]>;
|
|
160
181
|
/**
|
|
161
|
-
*
|
|
182
|
+
* List of notification destinations to use for the info alerts category.
|
|
162
183
|
*/
|
|
163
184
|
notificationsInfos?: pulumi.Input<pulumi.Input<string>[]>;
|
|
164
185
|
/**
|
|
165
|
-
*
|
|
186
|
+
* List of notification destinations to use for the major alerts category.
|
|
166
187
|
*/
|
|
167
188
|
notificationsMajors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
168
189
|
/**
|
|
169
|
-
*
|
|
190
|
+
* List of notification destinations to use for the minor alerts category.
|
|
170
191
|
*/
|
|
171
192
|
notificationsMinors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
172
193
|
/**
|
|
173
|
-
*
|
|
194
|
+
* List of notification destinations to use for the warning alerts category.
|
|
174
195
|
*/
|
|
175
196
|
notificationsWarnings?: pulumi.Input<pulumi.Input<string>[]>;
|
|
176
197
|
}
|
package/team.js
CHANGED
|
@@ -6,13 +6,13 @@ exports.Team = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Handles management of
|
|
9
|
+
* Handles management of Splunk Observability Cloud teams.
|
|
10
10
|
*
|
|
11
|
-
* You can configure [team notification policies](https://docs.
|
|
11
|
+
* You can configure [team notification policies](https://docs.splunk.com/observability/en/admin/user-management/teams/team-notifications.html) using this resource and the various `notifications_*` properties.
|
|
12
12
|
*
|
|
13
|
-
* > **NOTE** When managing teams, use a session token of an administrator to authenticate the
|
|
13
|
+
* > **NOTE** When managing teams, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator).
|
|
14
14
|
*
|
|
15
|
-
* ## Example
|
|
15
|
+
* ## Example
|
|
16
16
|
*
|
|
17
17
|
* ```typescript
|
|
18
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -28,6 +28,27 @@ const utilities = require("./utilities");
|
|
|
28
28
|
* notificationsInfos: ["Email,notify@example.com"],
|
|
29
29
|
* });
|
|
30
30
|
* ```
|
|
31
|
+
*
|
|
32
|
+
* ## Arguments
|
|
33
|
+
*
|
|
34
|
+
* The following arguments are supported in the resource block:
|
|
35
|
+
*
|
|
36
|
+
* * `name` - (Required) Name of the team.
|
|
37
|
+
* * `description` - (Optional) Description of the team.
|
|
38
|
+
* * `members` - (Optional) List of user IDs to include in the team.
|
|
39
|
+
* * `notificationsCritical` - (Optional) Where to send notifications for critical alerts
|
|
40
|
+
* * `notificationsDefault` - (Optional) Where to send notifications for default alerts
|
|
41
|
+
* * `notificationsInfo` - (Optional) Where to send notifications for info alerts
|
|
42
|
+
* * `notificationsMajor` - (Optional) Where to send notifications for major alerts
|
|
43
|
+
* * `notificationsMinor` - (Optional) Where to send notifications for minor alerts
|
|
44
|
+
* * `notificationsWarning` - (Optional) Where to send notifications for warning alerts
|
|
45
|
+
*
|
|
46
|
+
* ## Attributes
|
|
47
|
+
*
|
|
48
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
49
|
+
*
|
|
50
|
+
* * `id` - The ID of the team.
|
|
51
|
+
* * `url` - The URL of the team.
|
|
31
52
|
*/
|
|
32
53
|
class Team extends pulumi.CustomResource {
|
|
33
54
|
/**
|
package/team.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team.js","sourceRoot":"","sources":["../team.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"team.js","sourceRoot":"","sources":["../team.ts"],"names":[],"mappings":"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"}
|