@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/dataLink.d.ts
CHANGED
|
@@ -2,15 +2,15 @@ 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
|
-
* Manage
|
|
5
|
+
* Manage Splunk Observability Cloud [Data Links](https://docs.signalfx.com/en/latest/managing/data-links.html).
|
|
6
6
|
*
|
|
7
|
-
* ## Example
|
|
7
|
+
* ## Example
|
|
8
8
|
*
|
|
9
9
|
* ```typescript
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as signalfx from "@pulumi/signalfx";
|
|
12
12
|
*
|
|
13
|
-
* // A global link to
|
|
13
|
+
* // A global link to Splunk Observability Cloud dashboard.
|
|
14
14
|
* const myDataLink = new signalfx.DataLink("myDataLink", {
|
|
15
15
|
* propertyName: "pname",
|
|
16
16
|
* propertyValue: "pvalue",
|
|
@@ -36,6 +36,34 @@ import * as outputs from "./types/output";
|
|
|
36
36
|
* }],
|
|
37
37
|
* });
|
|
38
38
|
* ```
|
|
39
|
+
*
|
|
40
|
+
* ## Arguments
|
|
41
|
+
*
|
|
42
|
+
* The following arguments are supported in the resource block:
|
|
43
|
+
*
|
|
44
|
+
* * `propertyName` - (Optional) Name (key) of the metadata that's the trigger of a data link. If you specify `propertyValue`, you must specify `propertyName`.
|
|
45
|
+
* * `propertyValue` - (Optional) Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify `propertyName`.
|
|
46
|
+
* * `contextDashboardId` - (Optional) If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.
|
|
47
|
+
* * `targetExternalUrl` - (Optional) Link to an external URL
|
|
48
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
49
|
+
* * `url`- (Required) URL string for a Splunk instance or external system data link target. [See the supported template variables](https://dev.splunk.com/observability/docs/administration/datalinks/).
|
|
50
|
+
* * `timeFormat` - (Optional) [Designates the format](https://dev.splunk.com/observability/docs/administration/datalinks/) of `minimumTimeWindow` in the same data link target object. Must be one of `"ISO8601"`, `"EpochSeconds"` or `"Epoch"` (which is milliseconds). Defaults to `"ISO8601"`.
|
|
51
|
+
* * `minimumTimeWindow` - (Optional) The [minimum time window](https://dev.splunk.com/observability/docs/administration/datalinks/) for a search sent to an external site. Defaults to `6000`
|
|
52
|
+
* * `propertyKeyMapping` - Describes the relationship between Splunk Observability Cloud metadata keys and external system properties when the key names are different.
|
|
53
|
+
* * `targetSignalfxDashboard` - (Optional) Link to a Splunk Observability Cloud dashboard
|
|
54
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
55
|
+
* * `isDefault` - (Optional) Flag that designates a target as the default for a data link object. `true` by default
|
|
56
|
+
* * `dashboardId` - (Required) SignalFx-assigned ID of the dashboard link target
|
|
57
|
+
* * `dashboardGroupId` - (Required) SignalFx-assigned ID of the dashboard link target's dashboard group
|
|
58
|
+
* * `targetSplunk` - (Optional) Link to an external URL
|
|
59
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
60
|
+
* * `propertyKeyMapping` - Describes the relationship between Splunk Observability Cloud metadata keys and external system properties when the key names are different.
|
|
61
|
+
*
|
|
62
|
+
* ## Attributes
|
|
63
|
+
*
|
|
64
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
65
|
+
*
|
|
66
|
+
* * `id` - The ID of the link.
|
|
39
67
|
*/
|
|
40
68
|
export declare class DataLink extends pulumi.CustomResource {
|
|
41
69
|
/**
|
|
@@ -54,15 +82,17 @@ export declare class DataLink extends pulumi.CustomResource {
|
|
|
54
82
|
*/
|
|
55
83
|
static isInstance(obj: any): obj is DataLink;
|
|
56
84
|
/**
|
|
57
|
-
*
|
|
85
|
+
* The dashobard ID to which this data link will be applied
|
|
58
86
|
*/
|
|
59
87
|
readonly contextDashboardId: pulumi.Output<string | undefined>;
|
|
60
88
|
/**
|
|
61
|
-
* Name (key) of the metadata that's the trigger of a data link. If you specify `
|
|
89
|
+
* Name (key) of the metadata that's the trigger of a data link. If you specify `property_value`, you must specify
|
|
90
|
+
* `property_name`.
|
|
62
91
|
*/
|
|
63
92
|
readonly propertyName: pulumi.Output<string | undefined>;
|
|
64
93
|
/**
|
|
65
|
-
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
94
|
+
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
95
|
+
* `property_name`.
|
|
66
96
|
*/
|
|
67
97
|
readonly propertyValue: pulumi.Output<string | undefined>;
|
|
68
98
|
/**
|
|
@@ -70,11 +100,11 @@ export declare class DataLink extends pulumi.CustomResource {
|
|
|
70
100
|
*/
|
|
71
101
|
readonly targetExternalUrls: pulumi.Output<outputs.DataLinkTargetExternalUrl[] | undefined>;
|
|
72
102
|
/**
|
|
73
|
-
* Link to a
|
|
103
|
+
* Link to a Splunk Observability Cloud dashboard
|
|
74
104
|
*/
|
|
75
105
|
readonly targetSignalfxDashboards: pulumi.Output<outputs.DataLinkTargetSignalfxDashboard[] | undefined>;
|
|
76
106
|
/**
|
|
77
|
-
* Link to
|
|
107
|
+
* Link to a Splunk instance
|
|
78
108
|
*/
|
|
79
109
|
readonly targetSplunks: pulumi.Output<outputs.DataLinkTargetSplunk[] | undefined>;
|
|
80
110
|
/**
|
|
@@ -91,15 +121,17 @@ export declare class DataLink extends pulumi.CustomResource {
|
|
|
91
121
|
*/
|
|
92
122
|
export interface DataLinkState {
|
|
93
123
|
/**
|
|
94
|
-
*
|
|
124
|
+
* The dashobard ID to which this data link will be applied
|
|
95
125
|
*/
|
|
96
126
|
contextDashboardId?: pulumi.Input<string>;
|
|
97
127
|
/**
|
|
98
|
-
* Name (key) of the metadata that's the trigger of a data link. If you specify `
|
|
128
|
+
* Name (key) of the metadata that's the trigger of a data link. If you specify `property_value`, you must specify
|
|
129
|
+
* `property_name`.
|
|
99
130
|
*/
|
|
100
131
|
propertyName?: pulumi.Input<string>;
|
|
101
132
|
/**
|
|
102
|
-
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
133
|
+
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
134
|
+
* `property_name`.
|
|
103
135
|
*/
|
|
104
136
|
propertyValue?: pulumi.Input<string>;
|
|
105
137
|
/**
|
|
@@ -107,11 +139,11 @@ export interface DataLinkState {
|
|
|
107
139
|
*/
|
|
108
140
|
targetExternalUrls?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetExternalUrl>[]>;
|
|
109
141
|
/**
|
|
110
|
-
* Link to a
|
|
142
|
+
* Link to a Splunk Observability Cloud dashboard
|
|
111
143
|
*/
|
|
112
144
|
targetSignalfxDashboards?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetSignalfxDashboard>[]>;
|
|
113
145
|
/**
|
|
114
|
-
* Link to
|
|
146
|
+
* Link to a Splunk instance
|
|
115
147
|
*/
|
|
116
148
|
targetSplunks?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetSplunk>[]>;
|
|
117
149
|
}
|
|
@@ -120,15 +152,17 @@ export interface DataLinkState {
|
|
|
120
152
|
*/
|
|
121
153
|
export interface DataLinkArgs {
|
|
122
154
|
/**
|
|
123
|
-
*
|
|
155
|
+
* The dashobard ID to which this data link will be applied
|
|
124
156
|
*/
|
|
125
157
|
contextDashboardId?: pulumi.Input<string>;
|
|
126
158
|
/**
|
|
127
|
-
* Name (key) of the metadata that's the trigger of a data link. If you specify `
|
|
159
|
+
* Name (key) of the metadata that's the trigger of a data link. If you specify `property_value`, you must specify
|
|
160
|
+
* `property_name`.
|
|
128
161
|
*/
|
|
129
162
|
propertyName?: pulumi.Input<string>;
|
|
130
163
|
/**
|
|
131
|
-
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
164
|
+
* Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify
|
|
165
|
+
* `property_name`.
|
|
132
166
|
*/
|
|
133
167
|
propertyValue?: pulumi.Input<string>;
|
|
134
168
|
/**
|
|
@@ -136,11 +170,11 @@ export interface DataLinkArgs {
|
|
|
136
170
|
*/
|
|
137
171
|
targetExternalUrls?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetExternalUrl>[]>;
|
|
138
172
|
/**
|
|
139
|
-
* Link to a
|
|
173
|
+
* Link to a Splunk Observability Cloud dashboard
|
|
140
174
|
*/
|
|
141
175
|
targetSignalfxDashboards?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetSignalfxDashboard>[]>;
|
|
142
176
|
/**
|
|
143
|
-
* Link to
|
|
177
|
+
* Link to a Splunk instance
|
|
144
178
|
*/
|
|
145
179
|
targetSplunks?: pulumi.Input<pulumi.Input<inputs.DataLinkTargetSplunk>[]>;
|
|
146
180
|
}
|
package/dataLink.js
CHANGED
|
@@ -6,15 +6,15 @@ exports.DataLink = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Manage
|
|
9
|
+
* Manage Splunk Observability Cloud [Data Links](https://docs.signalfx.com/en/latest/managing/data-links.html).
|
|
10
10
|
*
|
|
11
|
-
* ## Example
|
|
11
|
+
* ## Example
|
|
12
12
|
*
|
|
13
13
|
* ```typescript
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as signalfx from "@pulumi/signalfx";
|
|
16
16
|
*
|
|
17
|
-
* // A global link to
|
|
17
|
+
* // A global link to Splunk Observability Cloud dashboard.
|
|
18
18
|
* const myDataLink = new signalfx.DataLink("myDataLink", {
|
|
19
19
|
* propertyName: "pname",
|
|
20
20
|
* propertyValue: "pvalue",
|
|
@@ -40,6 +40,34 @@ const utilities = require("./utilities");
|
|
|
40
40
|
* }],
|
|
41
41
|
* });
|
|
42
42
|
* ```
|
|
43
|
+
*
|
|
44
|
+
* ## Arguments
|
|
45
|
+
*
|
|
46
|
+
* The following arguments are supported in the resource block:
|
|
47
|
+
*
|
|
48
|
+
* * `propertyName` - (Optional) Name (key) of the metadata that's the trigger of a data link. If you specify `propertyValue`, you must specify `propertyName`.
|
|
49
|
+
* * `propertyValue` - (Optional) Value of the metadata that's the trigger of a data link. If you specify this property, you must also specify `propertyName`.
|
|
50
|
+
* * `contextDashboardId` - (Optional) If provided, scopes this data link to the supplied dashboard id. If omitted then the link will be global.
|
|
51
|
+
* * `targetExternalUrl` - (Optional) Link to an external URL
|
|
52
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
53
|
+
* * `url`- (Required) URL string for a Splunk instance or external system data link target. [See the supported template variables](https://dev.splunk.com/observability/docs/administration/datalinks/).
|
|
54
|
+
* * `timeFormat` - (Optional) [Designates the format](https://dev.splunk.com/observability/docs/administration/datalinks/) of `minimumTimeWindow` in the same data link target object. Must be one of `"ISO8601"`, `"EpochSeconds"` or `"Epoch"` (which is milliseconds). Defaults to `"ISO8601"`.
|
|
55
|
+
* * `minimumTimeWindow` - (Optional) The [minimum time window](https://dev.splunk.com/observability/docs/administration/datalinks/) for a search sent to an external site. Defaults to `6000`
|
|
56
|
+
* * `propertyKeyMapping` - Describes the relationship between Splunk Observability Cloud metadata keys and external system properties when the key names are different.
|
|
57
|
+
* * `targetSignalfxDashboard` - (Optional) Link to a Splunk Observability Cloud dashboard
|
|
58
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
59
|
+
* * `isDefault` - (Optional) Flag that designates a target as the default for a data link object. `true` by default
|
|
60
|
+
* * `dashboardId` - (Required) SignalFx-assigned ID of the dashboard link target
|
|
61
|
+
* * `dashboardGroupId` - (Required) SignalFx-assigned ID of the dashboard link target's dashboard group
|
|
62
|
+
* * `targetSplunk` - (Optional) Link to an external URL
|
|
63
|
+
* * `name` (Required) User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
64
|
+
* * `propertyKeyMapping` - Describes the relationship between Splunk Observability Cloud metadata keys and external system properties when the key names are different.
|
|
65
|
+
*
|
|
66
|
+
* ## Attributes
|
|
67
|
+
*
|
|
68
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
69
|
+
*
|
|
70
|
+
* * `id` - The ID of the link.
|
|
43
71
|
*/
|
|
44
72
|
class DataLink extends pulumi.CustomResource {
|
|
45
73
|
/**
|
package/dataLink.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataLink.js","sourceRoot":"","sources":["../dataLink.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"dataLink.js","sourceRoot":"","sources":["../dataLink.ts"],"names":[],"mappings":"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"}
|