@pulumi/signalfx 5.4.0-alpha.1650646887 → 5.4.0
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 +13 -11
- package/alertMutingRule.js +4 -2
- package/alertMutingRule.js.map +1 -1
- package/aws/externalIntegration.d.ts +1 -1
- package/aws/externalIntegration.js +1 -1
- package/aws/getServices.d.ts +0 -16
- package/aws/getServices.js +0 -16
- package/aws/getServices.js.map +1 -1
- package/aws/integration.d.ts +19 -7
- package/aws/integration.js +3 -1
- package/aws/integration.js.map +1 -1
- package/aws/tokenIntegration.d.ts +1 -1
- package/aws/tokenIntegration.js +1 -1
- package/azure/getServices.d.ts +0 -16
- package/azure/getServices.js +0 -16
- package/azure/getServices.js.map +1 -1
- package/azure/integration.d.ts +4 -4
- package/azure/integration.js +1 -1
- package/dashboard.d.ts +15 -6
- package/dashboard.js.map +1 -1
- package/dashboardGroup.d.ts +9 -9
- package/gcp/integration.d.ts +4 -4
- package/gcp/integration.js +1 -1
- package/jira/integration.d.ts +1 -1
- package/jira/integration.js +1 -1
- package/opsgenie/integration.d.ts +1 -1
- package/opsgenie/integration.js +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/pagerduty/integration.d.ts +1 -1
- package/pagerduty/integration.js +1 -1
- package/slack/integration.d.ts +1 -1
- package/slack/integration.js +1 -1
- package/team.d.ts +1 -1
- package/team.js +1 -1
- package/types/input.d.ts +9 -3
- package/types/output.d.ts +9 -3
- package/victorops/integration.d.ts +1 -1
- package/victorops/integration.js +1 -1
- package/webhookIntegration.d.ts +1 -1
- package/webhookIntegration.js +1 -1
package/alertMutingRule.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
* Provides
|
|
4
|
+
* Provides an Observability Cloud resource for managing alert muting rules. See [Mute Notifications](https://docs.splunk.com/Observability/alerts-detectors-notifications/mute-notifications.html) for more information.
|
|
5
5
|
*
|
|
6
|
-
* > **WARNING**
|
|
6
|
+
* > **WARNING** Observability Cloud does not allow the start time of a **currently active** muting rule to be modified. As such, attempting to modify a currently active rule will destroy the existing rule and create a new rule. This may result in the emission of notifications.
|
|
7
|
+
*
|
|
8
|
+
* > **WARNING** Observability Cloud currently allows linking alert muting rule with only one detector ID. Specifying multiple detector IDs will make the muting rule obsolete.
|
|
7
9
|
*
|
|
8
10
|
* ## Example Usage
|
|
9
11
|
*
|
|
@@ -44,12 +46,12 @@ export declare class AlertMutingRule extends pulumi.CustomResource {
|
|
|
44
46
|
*/
|
|
45
47
|
readonly description: pulumi.Output<string>;
|
|
46
48
|
/**
|
|
47
|
-
* A convenience attribute that associated this muting rule with specific detector
|
|
49
|
+
* A convenience attribute that associated this muting rule with specific detector IDs. Currently, only one ID is supported.
|
|
48
50
|
*/
|
|
49
51
|
readonly detectors: pulumi.Output<string[] | undefined>;
|
|
50
52
|
readonly effectiveStartTime: pulumi.Output<number>;
|
|
51
53
|
/**
|
|
52
|
-
* Filters for this rule. See [Creating muting rules from scratch](https://docs.
|
|
54
|
+
* Filters for this rule. See [Creating muting rules from scratch](https://docs.splunk.com/Observability/alerts-detectors-notifications/mute-notifications.html#rule-from-scratch) for more information.
|
|
53
55
|
*/
|
|
54
56
|
readonly filters: pulumi.Output<outputs.AlertMutingRuleFilter[] | undefined>;
|
|
55
57
|
/**
|
|
@@ -57,7 +59,7 @@ export declare class AlertMutingRule extends pulumi.CustomResource {
|
|
|
57
59
|
*/
|
|
58
60
|
readonly startTime: pulumi.Output<number>;
|
|
59
61
|
/**
|
|
60
|
-
*
|
|
62
|
+
* Stop time of an alert muting rule as a Unix time stamp in seconds.
|
|
61
63
|
*/
|
|
62
64
|
readonly stopTime: pulumi.Output<number | undefined>;
|
|
63
65
|
/**
|
|
@@ -78,12 +80,12 @@ export interface AlertMutingRuleState {
|
|
|
78
80
|
*/
|
|
79
81
|
description?: pulumi.Input<string>;
|
|
80
82
|
/**
|
|
81
|
-
* A convenience attribute that associated this muting rule with specific detector
|
|
83
|
+
* A convenience attribute that associated this muting rule with specific detector IDs. Currently, only one ID is supported.
|
|
82
84
|
*/
|
|
83
85
|
detectors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
84
86
|
effectiveStartTime?: pulumi.Input<number>;
|
|
85
87
|
/**
|
|
86
|
-
* Filters for this rule. See [Creating muting rules from scratch](https://docs.
|
|
88
|
+
* Filters for this rule. See [Creating muting rules from scratch](https://docs.splunk.com/Observability/alerts-detectors-notifications/mute-notifications.html#rule-from-scratch) for more information.
|
|
87
89
|
*/
|
|
88
90
|
filters?: pulumi.Input<pulumi.Input<inputs.AlertMutingRuleFilter>[]>;
|
|
89
91
|
/**
|
|
@@ -91,7 +93,7 @@ export interface AlertMutingRuleState {
|
|
|
91
93
|
*/
|
|
92
94
|
startTime?: pulumi.Input<number>;
|
|
93
95
|
/**
|
|
94
|
-
*
|
|
96
|
+
* Stop time of an alert muting rule as a Unix time stamp in seconds.
|
|
95
97
|
*/
|
|
96
98
|
stopTime?: pulumi.Input<number>;
|
|
97
99
|
}
|
|
@@ -104,11 +106,11 @@ export interface AlertMutingRuleArgs {
|
|
|
104
106
|
*/
|
|
105
107
|
description: pulumi.Input<string>;
|
|
106
108
|
/**
|
|
107
|
-
* A convenience attribute that associated this muting rule with specific detector
|
|
109
|
+
* A convenience attribute that associated this muting rule with specific detector IDs. Currently, only one ID is supported.
|
|
108
110
|
*/
|
|
109
111
|
detectors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
110
112
|
/**
|
|
111
|
-
* Filters for this rule. See [Creating muting rules from scratch](https://docs.
|
|
113
|
+
* Filters for this rule. See [Creating muting rules from scratch](https://docs.splunk.com/Observability/alerts-detectors-notifications/mute-notifications.html#rule-from-scratch) for more information.
|
|
112
114
|
*/
|
|
113
115
|
filters?: pulumi.Input<pulumi.Input<inputs.AlertMutingRuleFilter>[]>;
|
|
114
116
|
/**
|
|
@@ -116,7 +118,7 @@ export interface AlertMutingRuleArgs {
|
|
|
116
118
|
*/
|
|
117
119
|
startTime: pulumi.Input<number>;
|
|
118
120
|
/**
|
|
119
|
-
*
|
|
121
|
+
* Stop time of an alert muting rule as a Unix time stamp in seconds.
|
|
120
122
|
*/
|
|
121
123
|
stopTime?: pulumi.Input<number>;
|
|
122
124
|
}
|
package/alertMutingRule.js
CHANGED
|
@@ -6,9 +6,11 @@ exports.AlertMutingRule = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides
|
|
9
|
+
* Provides an Observability Cloud resource for managing alert muting rules. See [Mute Notifications](https://docs.splunk.com/Observability/alerts-detectors-notifications/mute-notifications.html) for more information.
|
|
10
10
|
*
|
|
11
|
-
* > **WARNING**
|
|
11
|
+
* > **WARNING** Observability Cloud does not allow the start time of a **currently active** muting rule to be modified. As such, attempting to modify a currently active rule will destroy the existing rule and create a new rule. This may result in the emission of notifications.
|
|
12
|
+
*
|
|
13
|
+
* > **WARNING** Observability Cloud currently allows linking alert muting rule with only one detector ID. Specifying multiple detector IDs will make the muting rule obsolete.
|
|
12
14
|
*
|
|
13
15
|
* ## Example Usage
|
|
14
16
|
*
|
package/alertMutingRule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alertMutingRule.js","sourceRoot":"","sources":["../alertMutingRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"alertMutingRule.js","sourceRoot":"","sources":["../alertMutingRule.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx AWS CloudWatch integrations using Role ARNs. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
6
6
|
*
|
|
7
7
|
* > **WARNING** This resource implements a part of a workflow. You must use it with `signalfx.aws.Integration`. Check with SignalFx support for your realm's AWS account id.
|
|
8
8
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx AWS CloudWatch integrations using Role ARNs. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
12
12
|
*
|
|
13
13
|
* > **WARNING** This resource implements a part of a workflow. You must use it with `signalfx.aws.Integration`. Check with SignalFx support for your realm's AWS account id.
|
|
14
14
|
*
|
package/aws/getServices.d.ts
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "../types";
|
|
3
|
-
/**
|
|
4
|
-
* Use this data source to get a list of AWS service names.
|
|
5
|
-
*
|
|
6
|
-
* ## Example Usage
|
|
7
|
-
*
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
-
* import * as signalfx from "@pulumi/signalfx";
|
|
11
|
-
*
|
|
12
|
-
* const awsServices = signalfx.aws.getServices({});
|
|
13
|
-
* // Leaves out most of the integration bits, see the docs
|
|
14
|
-
* // for signalfx_aws_integration for more
|
|
15
|
-
* // …
|
|
16
|
-
* const awsMyteam = new signalfx.aws.Integration("awsMyteam", {services: [awsServices.then(awsServices => awsServices.services)].map(__item => __item?.name)});
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
3
|
export declare function getServices(args?: GetServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetServicesResult>;
|
|
20
4
|
/**
|
|
21
5
|
* A collection of arguments for invoking getServices.
|
package/aws/getServices.js
CHANGED
|
@@ -5,22 +5,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getServicesOutput = exports.getServices = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Use this data source to get a list of AWS service names.
|
|
10
|
-
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as signalfx from "@pulumi/signalfx";
|
|
16
|
-
*
|
|
17
|
-
* const awsServices = signalfx.aws.getServices({});
|
|
18
|
-
* // Leaves out most of the integration bits, see the docs
|
|
19
|
-
* // for signalfx_aws_integration for more
|
|
20
|
-
* // …
|
|
21
|
-
* const awsMyteam = new signalfx.aws.Integration("awsMyteam", {services: [awsServices.then(awsServices => awsServices.services)].map(__item => __item?.name)});
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
8
|
function getServices(args, opts) {
|
|
25
9
|
args = args || {};
|
|
26
10
|
if (!opts) {
|
package/aws/getServices.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../aws/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../aws/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kCAUC;AAoBD,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/D,CAAC;AAFD,8CAEC"}
|
package/aws/integration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
3
3
|
/**
|
|
4
4
|
* SignalFx AWS CloudWatch integrations. For help with this integration see [Monitoring Amazon Web Services](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#monitor-amazon-web-services).
|
|
5
5
|
*
|
|
6
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
6
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
7
7
|
*
|
|
8
8
|
* > **WARNING** This resource implements a part of a workflow. You must use it with one of either `signalfx.aws.ExternalIntegration` or `signalfx.aws.TokenIntegration`.
|
|
9
9
|
*
|
|
@@ -108,11 +108,11 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
108
108
|
*/
|
|
109
109
|
readonly key: pulumi.Output<string | undefined>;
|
|
110
110
|
/**
|
|
111
|
-
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics. If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
111
|
+
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics when AWS metric streams are not used. When AWS metric streams are used this property specifies additional extended statistics to collect (please note that AWS metric streams API supports percentile stats only; other stats are ignored). If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
112
112
|
*/
|
|
113
113
|
readonly metricStatsToSyncs: pulumi.Output<outputs.aws.IntegrationMetricStatsToSync[] | undefined>;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
116
116
|
*/
|
|
117
117
|
readonly namedToken: pulumi.Output<string | undefined>;
|
|
118
118
|
/**
|
|
@@ -135,6 +135,10 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
135
135
|
* List of AWS services that you want SignalFx to monitor. Each element is a string designating an AWS service. Conflicts with `namespaceSyncRule`. See the documentation for [Creating Integrations](https://developers.signalfx.com/integrations_reference.html#operation/Create%20Integration) for valida values.
|
|
136
136
|
*/
|
|
137
137
|
readonly services: pulumi.Output<string[] | undefined>;
|
|
138
|
+
/**
|
|
139
|
+
* Indicates that SignalFx should sync metrics and metadata from custom AWS namespaces only (see the `customNamespaceSyncRule` above). Defaults to `false`.
|
|
140
|
+
*/
|
|
141
|
+
readonly syncCustomNamespacesOnly: pulumi.Output<boolean | undefined>;
|
|
138
142
|
/**
|
|
139
143
|
* If you specify `authMethod = \"SecurityToken\"` in your request to create an AWS integration object, use this property to specify the token (this is typically equivalent to the `AWS_ACCESS_KEY_ID` environment variable).
|
|
140
144
|
*/
|
|
@@ -201,11 +205,11 @@ export interface IntegrationState {
|
|
|
201
205
|
*/
|
|
202
206
|
key?: pulumi.Input<string>;
|
|
203
207
|
/**
|
|
204
|
-
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics. If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
208
|
+
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics when AWS metric streams are not used. When AWS metric streams are used this property specifies additional extended statistics to collect (please note that AWS metric streams API supports percentile stats only; other stats are ignored). If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
205
209
|
*/
|
|
206
210
|
metricStatsToSyncs?: pulumi.Input<pulumi.Input<inputs.aws.IntegrationMetricStatsToSync>[]>;
|
|
207
211
|
/**
|
|
208
|
-
*
|
|
212
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
209
213
|
*/
|
|
210
214
|
namedToken?: pulumi.Input<string>;
|
|
211
215
|
/**
|
|
@@ -228,6 +232,10 @@ export interface IntegrationState {
|
|
|
228
232
|
* List of AWS services that you want SignalFx to monitor. Each element is a string designating an AWS service. Conflicts with `namespaceSyncRule`. See the documentation for [Creating Integrations](https://developers.signalfx.com/integrations_reference.html#operation/Create%20Integration) for valida values.
|
|
229
233
|
*/
|
|
230
234
|
services?: pulumi.Input<pulumi.Input<string>[]>;
|
|
235
|
+
/**
|
|
236
|
+
* Indicates that SignalFx should sync metrics and metadata from custom AWS namespaces only (see the `customNamespaceSyncRule` above). Defaults to `false`.
|
|
237
|
+
*/
|
|
238
|
+
syncCustomNamespacesOnly?: pulumi.Input<boolean>;
|
|
231
239
|
/**
|
|
232
240
|
* If you specify `authMethod = \"SecurityToken\"` in your request to create an AWS integration object, use this property to specify the token (this is typically equivalent to the `AWS_ACCESS_KEY_ID` environment variable).
|
|
233
241
|
*/
|
|
@@ -286,11 +294,11 @@ export interface IntegrationArgs {
|
|
|
286
294
|
*/
|
|
287
295
|
key?: pulumi.Input<string>;
|
|
288
296
|
/**
|
|
289
|
-
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics. If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
297
|
+
* Each element in the array is an object that contains an AWS namespace name, AWS metric name and a list of statistics that SignalFx collects for this metric. If you specify this property, SignalFx retrieves only specified AWS statistics when AWS metric streams are not used. When AWS metric streams are used this property specifies additional extended statistics to collect (please note that AWS metric streams API supports percentile stats only; other stats are ignored). If you don't specify this property, SignalFx retrieves the AWS standard set of statistics.
|
|
290
298
|
*/
|
|
291
299
|
metricStatsToSyncs?: pulumi.Input<pulumi.Input<inputs.aws.IntegrationMetricStatsToSync>[]>;
|
|
292
300
|
/**
|
|
293
|
-
*
|
|
301
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
294
302
|
*/
|
|
295
303
|
namedToken?: pulumi.Input<string>;
|
|
296
304
|
/**
|
|
@@ -313,6 +321,10 @@ export interface IntegrationArgs {
|
|
|
313
321
|
* List of AWS services that you want SignalFx to monitor. Each element is a string designating an AWS service. Conflicts with `namespaceSyncRule`. See the documentation for [Creating Integrations](https://developers.signalfx.com/integrations_reference.html#operation/Create%20Integration) for valida values.
|
|
314
322
|
*/
|
|
315
323
|
services?: pulumi.Input<pulumi.Input<string>[]>;
|
|
324
|
+
/**
|
|
325
|
+
* Indicates that SignalFx should sync metrics and metadata from custom AWS namespaces only (see the `customNamespaceSyncRule` above). Defaults to `false`.
|
|
326
|
+
*/
|
|
327
|
+
syncCustomNamespacesOnly?: pulumi.Input<boolean>;
|
|
316
328
|
/**
|
|
317
329
|
* If you specify `authMethod = \"SecurityToken\"` in your request to create an AWS integration object, use this property to specify the token (this is typically equivalent to the `AWS_ACCESS_KEY_ID` environment variable).
|
|
318
330
|
*/
|
package/aws/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx AWS CloudWatch integrations. For help with this integration see [Monitoring Amazon Web Services](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#monitor-amazon-web-services).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
12
12
|
*
|
|
13
13
|
* > **WARNING** This resource implements a part of a workflow. You must use it with one of either `signalfx.aws.ExternalIntegration` or `signalfx.aws.TokenIntegration`.
|
|
14
14
|
*
|
|
@@ -79,6 +79,7 @@ class Integration extends pulumi.CustomResource {
|
|
|
79
79
|
resourceInputs["regions"] = state ? state.regions : undefined;
|
|
80
80
|
resourceInputs["roleArn"] = state ? state.roleArn : undefined;
|
|
81
81
|
resourceInputs["services"] = state ? state.services : undefined;
|
|
82
|
+
resourceInputs["syncCustomNamespacesOnly"] = state ? state.syncCustomNamespacesOnly : undefined;
|
|
82
83
|
resourceInputs["token"] = state ? state.token : undefined;
|
|
83
84
|
resourceInputs["useGetMetricDataMethod"] = state ? state.useGetMetricDataMethod : undefined;
|
|
84
85
|
resourceInputs["useMetricStreamsSync"] = state ? state.useMetricStreamsSync : undefined;
|
|
@@ -108,6 +109,7 @@ class Integration extends pulumi.CustomResource {
|
|
|
108
109
|
resourceInputs["regions"] = args ? args.regions : undefined;
|
|
109
110
|
resourceInputs["roleArn"] = args ? args.roleArn : undefined;
|
|
110
111
|
resourceInputs["services"] = args ? args.services : undefined;
|
|
112
|
+
resourceInputs["syncCustomNamespacesOnly"] = args ? args.syncCustomNamespacesOnly : undefined;
|
|
111
113
|
resourceInputs["token"] = args ? args.token : undefined;
|
|
112
114
|
resourceInputs["useGetMetricDataMethod"] = args ? args.useGetMetricDataMethod : undefined;
|
|
113
115
|
resourceInputs["useMetricStreamsSync"] = args ? args.useMetricStreamsSync : undefined;
|
package/aws/integration.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../aws/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../aws/integration.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx AWS CloudWatch integrations using security tokens. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
6
6
|
*
|
|
7
7
|
* > **WARNING** This resource implements a part of a workflow. You must use it with `signalfx.aws.Integration`.
|
|
8
8
|
*
|
package/aws/tokenIntegration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx AWS CloudWatch integrations using security tokens. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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).
|
|
12
12
|
*
|
|
13
13
|
* > **WARNING** This resource implements a part of a workflow. You must use it with `signalfx.aws.Integration`.
|
|
14
14
|
*
|
package/azure/getServices.d.ts
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "../types";
|
|
3
|
-
/**
|
|
4
|
-
* Use this data source to get a list of Azure service names.
|
|
5
|
-
*
|
|
6
|
-
* ## Example Usage
|
|
7
|
-
*
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
-
* import * as signalfx from "@pulumi/signalfx";
|
|
11
|
-
*
|
|
12
|
-
* const azureServices = signalfx.azure.getServices({});
|
|
13
|
-
* // Leaves out most of the integration bits, see the docs
|
|
14
|
-
* // for signalfx_azure_integration for more
|
|
15
|
-
* // …
|
|
16
|
-
* const azureMyteam = new signalfx.azure.Integration("azureMyteam", {services: [azureServices.then(azureServices => azureServices.services)].map(__item => __item?.name)});
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
3
|
export declare function getServices(args?: GetServicesArgs, opts?: pulumi.InvokeOptions): Promise<GetServicesResult>;
|
|
20
4
|
/**
|
|
21
5
|
* A collection of arguments for invoking getServices.
|
package/azure/getServices.js
CHANGED
|
@@ -5,22 +5,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getServicesOutput = exports.getServices = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Use this data source to get a list of Azure service names.
|
|
10
|
-
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as signalfx from "@pulumi/signalfx";
|
|
16
|
-
*
|
|
17
|
-
* const azureServices = signalfx.azure.getServices({});
|
|
18
|
-
* // Leaves out most of the integration bits, see the docs
|
|
19
|
-
* // for signalfx_azure_integration for more
|
|
20
|
-
* // …
|
|
21
|
-
* const azureMyteam = new signalfx.azure.Integration("azureMyteam", {services: [azureServices.then(azureServices => azureServices.services)].map(__item => __item?.name)});
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
8
|
function getServices(args, opts) {
|
|
25
9
|
args = args || {};
|
|
26
10
|
if (!opts) {
|
package/azure/getServices.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../azure/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../azure/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kCAUC;AAoBD,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/D,CAAC;AAFD,8CAEC"}
|
package/azure/integration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
3
3
|
/**
|
|
4
4
|
* SignalFx Azure integrations. For help with this integration see [Monitoring Microsoft Azure](https://docs.signalfx.com/en/latest/integrations/azure-info.html#connect-to-azure).
|
|
5
5
|
*
|
|
6
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
6
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -93,7 +93,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
93
93
|
*/
|
|
94
94
|
readonly name: pulumi.Output<string>;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
97
97
|
*/
|
|
98
98
|
readonly namedToken: pulumi.Output<string | undefined>;
|
|
99
99
|
/**
|
|
@@ -164,7 +164,7 @@ export interface IntegrationState {
|
|
|
164
164
|
*/
|
|
165
165
|
name?: pulumi.Input<string>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
168
168
|
*/
|
|
169
169
|
namedToken?: pulumi.Input<string>;
|
|
170
170
|
/**
|
|
@@ -227,7 +227,7 @@ export interface IntegrationArgs {
|
|
|
227
227
|
*/
|
|
228
228
|
name?: pulumi.Input<string>;
|
|
229
229
|
/**
|
|
230
|
-
*
|
|
230
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
231
231
|
*/
|
|
232
232
|
namedToken?: pulumi.Input<string>;
|
|
233
233
|
/**
|
package/azure/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx Azure integrations. For help with this integration see [Monitoring Microsoft Azure](https://docs.signalfx.com/en/latest/integrations/azure-info.html#connect-to-azure).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/dashboard.d.ts
CHANGED
|
@@ -17,13 +17,13 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
17
17
|
*/
|
|
18
18
|
static isInstance(obj: any): obj is Dashboard;
|
|
19
19
|
/**
|
|
20
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
20
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
21
21
|
*
|
|
22
22
|
* @deprecated Please use permissions_* fields now
|
|
23
23
|
*/
|
|
24
24
|
readonly authorizedWriterTeams: pulumi.Output<string[] | undefined>;
|
|
25
25
|
/**
|
|
26
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
26
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
27
27
|
*
|
|
28
28
|
* @deprecated Please use permissions fields now
|
|
29
29
|
*/
|
|
@@ -70,6 +70,9 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
70
70
|
* Name of the dashboard.
|
|
71
71
|
*/
|
|
72
72
|
readonly name: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
75
|
+
*/
|
|
73
76
|
readonly permissions: pulumi.Output<outputs.DashboardPermissions>;
|
|
74
77
|
/**
|
|
75
78
|
* Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `eventOverlay`, which are similar to the properties here.
|
|
@@ -109,13 +112,13 @@ export declare class Dashboard extends pulumi.CustomResource {
|
|
|
109
112
|
*/
|
|
110
113
|
export interface DashboardState {
|
|
111
114
|
/**
|
|
112
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
115
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
113
116
|
*
|
|
114
117
|
* @deprecated Please use permissions_* fields now
|
|
115
118
|
*/
|
|
116
119
|
authorizedWriterTeams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
117
120
|
/**
|
|
118
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
121
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
119
122
|
*
|
|
120
123
|
* @deprecated Please use permissions fields now
|
|
121
124
|
*/
|
|
@@ -162,6 +165,9 @@ export interface DashboardState {
|
|
|
162
165
|
* Name of the dashboard.
|
|
163
166
|
*/
|
|
164
167
|
name?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
170
|
+
*/
|
|
165
171
|
permissions?: pulumi.Input<inputs.DashboardPermissions>;
|
|
166
172
|
/**
|
|
167
173
|
* Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `eventOverlay`, which are similar to the properties here.
|
|
@@ -193,13 +199,13 @@ export interface DashboardState {
|
|
|
193
199
|
*/
|
|
194
200
|
export interface DashboardArgs {
|
|
195
201
|
/**
|
|
196
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
202
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
197
203
|
*
|
|
198
204
|
* @deprecated Please use permissions_* fields now
|
|
199
205
|
*/
|
|
200
206
|
authorizedWriterTeams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
201
207
|
/**
|
|
202
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
208
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
203
209
|
*
|
|
204
210
|
* @deprecated Please use permissions fields now
|
|
205
211
|
*/
|
|
@@ -246,6 +252,9 @@ export interface DashboardArgs {
|
|
|
246
252
|
* Name of the dashboard.
|
|
247
253
|
*/
|
|
248
254
|
name?: pulumi.Input<string>;
|
|
255
|
+
/**
|
|
256
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
257
|
+
*/
|
|
249
258
|
permissions?: pulumi.Input<inputs.DashboardPermissions>;
|
|
250
259
|
/**
|
|
251
260
|
* Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `eventOverlay`, which are similar to the properties here.
|
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,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../dashboard.ts"],"names":[],"mappings":"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"}
|
package/dashboardGroup.d.ts
CHANGED
|
@@ -90,13 +90,13 @@ export declare class DashboardGroup extends pulumi.CustomResource {
|
|
|
90
90
|
*/
|
|
91
91
|
static isInstance(obj: any): obj is DashboardGroup;
|
|
92
92
|
/**
|
|
93
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
93
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
94
94
|
*
|
|
95
95
|
* @deprecated Please use permissions field now
|
|
96
96
|
*/
|
|
97
97
|
readonly authorizedWriterTeams: pulumi.Output<string[] | undefined>;
|
|
98
98
|
/**
|
|
99
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
99
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
100
100
|
*
|
|
101
101
|
* @deprecated Please use permissions field now
|
|
102
102
|
*/
|
|
@@ -115,7 +115,7 @@ export declare class DashboardGroup extends pulumi.CustomResource {
|
|
|
115
115
|
*/
|
|
116
116
|
readonly name: pulumi.Output<string>;
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
119
119
|
*/
|
|
120
120
|
readonly permissions: pulumi.Output<outputs.DashboardGroupPermission[]>;
|
|
121
121
|
/**
|
|
@@ -136,13 +136,13 @@ export declare class DashboardGroup extends pulumi.CustomResource {
|
|
|
136
136
|
*/
|
|
137
137
|
export interface DashboardGroupState {
|
|
138
138
|
/**
|
|
139
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
139
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
140
140
|
*
|
|
141
141
|
* @deprecated Please use permissions field now
|
|
142
142
|
*/
|
|
143
143
|
authorizedWriterTeams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
144
|
/**
|
|
145
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
145
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
146
146
|
*
|
|
147
147
|
* @deprecated Please use permissions field now
|
|
148
148
|
*/
|
|
@@ -161,7 +161,7 @@ export interface DashboardGroupState {
|
|
|
161
161
|
*/
|
|
162
162
|
name?: pulumi.Input<string>;
|
|
163
163
|
/**
|
|
164
|
-
*
|
|
164
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
165
165
|
*/
|
|
166
166
|
permissions?: pulumi.Input<pulumi.Input<inputs.DashboardGroupPermission>[]>;
|
|
167
167
|
/**
|
|
@@ -174,13 +174,13 @@ export interface DashboardGroupState {
|
|
|
174
174
|
*/
|
|
175
175
|
export interface DashboardGroupArgs {
|
|
176
176
|
/**
|
|
177
|
-
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
177
|
+
* Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
178
178
|
*
|
|
179
179
|
* @deprecated Please use permissions field now
|
|
180
180
|
*/
|
|
181
181
|
authorizedWriterTeams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
182
182
|
/**
|
|
183
|
-
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `
|
|
183
|
+
* User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorizedWriterTeams`). **Note:** Deprecated use `permissions` instead.
|
|
184
184
|
*
|
|
185
185
|
* @deprecated Please use permissions field now
|
|
186
186
|
*/
|
|
@@ -199,7 +199,7 @@ export interface DashboardGroupArgs {
|
|
|
199
199
|
*/
|
|
200
200
|
name?: pulumi.Input<string>;
|
|
201
201
|
/**
|
|
202
|
-
*
|
|
202
|
+
* [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
|
|
203
203
|
*/
|
|
204
204
|
permissions?: pulumi.Input<pulumi.Input<inputs.DashboardGroupPermission>[]>;
|
|
205
205
|
/**
|
package/gcp/integration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
3
3
|
/**
|
|
4
4
|
* SignalFx GCP Integration
|
|
5
5
|
*
|
|
6
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
6
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -54,7 +54,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly name: pulumi.Output<string>;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
58
58
|
*/
|
|
59
59
|
readonly namedToken: pulumi.Output<string | undefined>;
|
|
60
60
|
/**
|
|
@@ -95,7 +95,7 @@ export interface IntegrationState {
|
|
|
95
95
|
*/
|
|
96
96
|
name?: pulumi.Input<string>;
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
99
99
|
*/
|
|
100
100
|
namedToken?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
@@ -128,7 +128,7 @@ export interface IntegrationArgs {
|
|
|
128
128
|
*/
|
|
129
129
|
name?: pulumi.Input<string>;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
132
132
|
*/
|
|
133
133
|
namedToken?: pulumi.Input<string>;
|
|
134
134
|
/**
|
package/gcp/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx GCP Integration
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/jira/integration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx Jira integrations. For help with this integration see [Integration with Jira](https://docs.signalfx.com/en/latest/admin-guide/integrate-notifications.html#integrate-with-jira).
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/jira/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx Jira integrations. For help with this integration see [Integration with Jira](https://docs.signalfx.com/en/latest/admin-guide/integrate-notifications.html#integrate-with-jira).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx Opsgenie integration.
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/opsgenie/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx Opsgenie integration.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/signalfx",
|
|
3
|
-
"version": "v5.4.0
|
|
3
|
+
"version": "v5.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing SignalFx 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 signalfx v5.4.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource signalfx v5.4.0"
|
|
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/signalfx",
|
|
3
|
-
"version": "v5.4.0
|
|
3
|
+
"version": "v5.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing SignalFx 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 signalfx v5.4.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource signalfx v5.4.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx PagerDuty integrations
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/pagerduty/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx PagerDuty integrations
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/slack/integration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx Slack integration.
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/slack/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx Slack integration.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/team.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* You can configure [team notification policies](https://docs.signalfx.com/en/latest/managing/teams/team-notifications.html) using this resource and the various `notifications_*` properties.
|
|
6
6
|
*
|
|
7
|
-
* > **NOTE** When managing teams use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
7
|
+
* > **NOTE** When managing teams use a session token for an administrator to authenticate the SignalFx 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
9
|
* ## Example Usage
|
|
10
10
|
*
|
package/team.js
CHANGED
|
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* You can configure [team notification policies](https://docs.signalfx.com/en/latest/managing/teams/team-notifications.html) using this resource and the various `notifications_*` properties.
|
|
12
12
|
*
|
|
13
|
-
* > **NOTE** When managing teams use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
13
|
+
* > **NOTE** When managing teams use a session token for an administrator to authenticate the SignalFx 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
15
|
* ## Example Usage
|
|
16
16
|
*
|
package/types/input.d.ts
CHANGED
|
@@ -206,7 +206,13 @@ export interface DashboardGroupPermission {
|
|
|
206
206
|
principalType: pulumi.Input<string>;
|
|
207
207
|
}
|
|
208
208
|
export interface DashboardPermissions {
|
|
209
|
+
/**
|
|
210
|
+
* List of read and write permission configurations to specify which user, team, and organization can view and/or edit your dashboard. Use the `permissions.parent` instead if you want to inherit permissions.
|
|
211
|
+
*/
|
|
209
212
|
acls?: pulumi.Input<pulumi.Input<inputs.DashboardPermissionsAcl>[]>;
|
|
213
|
+
/**
|
|
214
|
+
* ID of the dashboard group you want your dashboard to inherit permissions from. Use the `permissions.acl` instead if you want to specify various read and write permission configurations.
|
|
215
|
+
*/
|
|
210
216
|
parent?: pulumi.Input<string>;
|
|
211
217
|
}
|
|
212
218
|
export interface DashboardPermissionsAcl {
|
|
@@ -756,7 +762,7 @@ export declare namespace aws {
|
|
|
756
762
|
*/
|
|
757
763
|
filterSource?: pulumi.Input<string>;
|
|
758
764
|
/**
|
|
759
|
-
* An AWS namespace having AWS
|
|
765
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
760
766
|
*/
|
|
761
767
|
namespace: pulumi.Input<string>;
|
|
762
768
|
}
|
|
@@ -766,7 +772,7 @@ export declare namespace aws {
|
|
|
766
772
|
*/
|
|
767
773
|
metric: pulumi.Input<string>;
|
|
768
774
|
/**
|
|
769
|
-
* An AWS namespace having AWS
|
|
775
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
770
776
|
*/
|
|
771
777
|
namespace: pulumi.Input<string>;
|
|
772
778
|
/**
|
|
@@ -788,7 +794,7 @@ export declare namespace aws {
|
|
|
788
794
|
*/
|
|
789
795
|
filterSource?: pulumi.Input<string>;
|
|
790
796
|
/**
|
|
791
|
-
* An AWS namespace having AWS
|
|
797
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
792
798
|
*/
|
|
793
799
|
namespace: pulumi.Input<string>;
|
|
794
800
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -205,7 +205,13 @@ export interface DashboardGroupPermission {
|
|
|
205
205
|
principalType: string;
|
|
206
206
|
}
|
|
207
207
|
export interface DashboardPermissions {
|
|
208
|
+
/**
|
|
209
|
+
* List of read and write permission configurations to specify which user, team, and organization can view and/or edit your dashboard. Use the `permissions.parent` instead if you want to inherit permissions.
|
|
210
|
+
*/
|
|
208
211
|
acls?: outputs.DashboardPermissionsAcl[];
|
|
212
|
+
/**
|
|
213
|
+
* ID of the dashboard group you want your dashboard to inherit permissions from. Use the `permissions.acl` instead if you want to specify various read and write permission configurations.
|
|
214
|
+
*/
|
|
209
215
|
parent?: string;
|
|
210
216
|
}
|
|
211
217
|
export interface DashboardPermissionsAcl {
|
|
@@ -746,7 +752,7 @@ export declare namespace aws {
|
|
|
746
752
|
*/
|
|
747
753
|
filterSource?: string;
|
|
748
754
|
/**
|
|
749
|
-
* An AWS namespace having AWS
|
|
755
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
750
756
|
*/
|
|
751
757
|
namespace: string;
|
|
752
758
|
}
|
|
@@ -756,7 +762,7 @@ export declare namespace aws {
|
|
|
756
762
|
*/
|
|
757
763
|
metric: string;
|
|
758
764
|
/**
|
|
759
|
-
* An AWS namespace having AWS
|
|
765
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
760
766
|
*/
|
|
761
767
|
namespace: string;
|
|
762
768
|
/**
|
|
@@ -778,7 +784,7 @@ export declare namespace aws {
|
|
|
778
784
|
*/
|
|
779
785
|
filterSource?: string;
|
|
780
786
|
/**
|
|
781
|
-
* An AWS namespace having AWS
|
|
787
|
+
* An AWS custom namespace having custom AWS metrics that you want to sync with SignalFx. See the AWS documentation on publishing metrics for more information.
|
|
782
788
|
*/
|
|
783
789
|
namespace: string;
|
|
784
790
|
}
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* SignalFx VictorOps integration.
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
5
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/victorops/integration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx VictorOps integration.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/webhookIntegration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
3
3
|
/**
|
|
4
4
|
* SignalFx Webhook integration.
|
|
5
5
|
*
|
|
6
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
6
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
package/webhookIntegration.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* SignalFx Webhook integration.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx provider. See [Operations that require a session token for an administrator]
|
|
11
|
+
* > **NOTE** When managing integrations use a session token for an administrator to authenticate the SignalFx 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
13
|
* ## Example Usage
|
|
14
14
|
*
|