@pulumi/newrelic 5.68.0 → 5.69.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.
@@ -0,0 +1,219 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Use this resource to manage cardinality limit overrides for a New Relic account.
6
+ *
7
+ * Dimensional metrics in New Relic are subject to a per-metric cardinality limit — the maximum number of unique attribute-value combinations a single metric name may produce per day. This resource lets you raise or lower that limit, either account-wide (for all metrics at once) or for individual named metrics.
8
+ *
9
+ * Two modes are available, selected via the required `mode` argument.
10
+ *
11
+ * > **Note:** Cardinality limit overrides are managed via reset rather than removal. Running `terraform destroy` resets the affected limit(s) back to the platform default of **100,000**. The behaviour for each mode is described in the sections below.
12
+ *
13
+ * ***
14
+ *
15
+ * ## DEFAULT Mode
16
+ *
17
+ * Sets a single account-wide limit that applies to every dimensional metric in the account that does not have its own per-metric override.
18
+ *
19
+ * ### Example
20
+ *
21
+ * ```typescript
22
+ * import * as pulumi from "@pulumi/pulumi";
23
+ * import * as newrelic from "@pulumi/newrelic";
24
+ *
25
+ * const accountDefault = new newrelic.CardinalityManagement("account_default", {
26
+ * mode: "DEFAULT",
27
+ * cardinalityLimit: 150000,
28
+ * });
29
+ * ```
30
+ *
31
+ * ### Behaviour
32
+ *
33
+ * - **`pulumi up`** — submits the new default value. The change takes effect in the enforcement layer straight away.
34
+ * - **`pulumi preview` / `terraform refresh` on an existing resource** — reads the current account-wide default and reconciles state. Any drift is surfaced before the next apply.
35
+ * - **`terraform destroy`** — resets the account-wide default to the platform default of **100,000** and displays a confirmation warning.
36
+ *
37
+ * > **Note:** Changes may take a few minutes to be visible in the New Relic UI, particularly if affected metrics have not sent data recently.
38
+ *
39
+ * ***
40
+ *
41
+ * ## PER_METRIC Mode
42
+ *
43
+ * Sets individual cardinality limits for one or more named metrics. Each metric is configured in its own `metric` block and can have a different limit.
44
+ *
45
+ * ### Example — single metric
46
+ *
47
+ * ```typescript
48
+ * import * as pulumi from "@pulumi/pulumi";
49
+ * import * as newrelic from "@pulumi/newrelic";
50
+ *
51
+ * const perMetric = new newrelic.CardinalityManagement("per_metric", {
52
+ * mode: "PER_METRIC",
53
+ * metrics: [{
54
+ * name: "http.server.duration",
55
+ * cardinalityLimit: 200000,
56
+ * }],
57
+ * });
58
+ * ```
59
+ *
60
+ * ### Example — multiple metrics in one resource
61
+ *
62
+ * ```typescript
63
+ * import * as pulumi from "@pulumi/pulumi";
64
+ * import * as newrelic from "@pulumi/newrelic";
65
+ *
66
+ * const highCardinalityMetrics = new newrelic.CardinalityManagement("high_cardinality_metrics", {
67
+ * mode: "PER_METRIC",
68
+ * metrics: [
69
+ * {
70
+ * name: "http.server.duration",
71
+ * cardinalityLimit: 200000,
72
+ * },
73
+ * {
74
+ * name: "otelcol_nrreceiver_incoming_request_proxy",
75
+ * cardinalityLimit: 300000,
76
+ * },
77
+ * {
78
+ * name: "k8s.pod.cpu.usage",
79
+ * cardinalityLimit: 150000,
80
+ * },
81
+ * ],
82
+ * });
83
+ * ```
84
+ *
85
+ * ### Behaviour
86
+ *
87
+ * - **`pulumi up`** — submits one override per `metric` block. A warning is displayed as a reminder that updates may take a few minutes to be reflected in the UI.
88
+ * - **`pulumi preview` / `terraform refresh` on an existing resource** — in `PER_METRIC` mode, `cardinalityLimit` values in state reflect the last configuration applied via terraform — this is the expected behaviour for this mode. A note is displayed as a reminder.
89
+ * - **`terraform destroy`** — resets each managed metric's limit to the platform default of **100,000** and displays a confirmation warning.
90
+ *
91
+ * > **Note:** In `PER_METRIC` mode, the `cardinalityLimit` values within `metric` blocks reflect the last configuration applied via terraform. If any of these limits have been adjusted outside of terraform, run `pulumi up` to re-apply the desired values.
92
+ *
93
+ * ***
94
+ *
95
+ * ## Using Both Modes Together
96
+ *
97
+ * You can manage both the account-wide default and individual metric overrides at the same time:
98
+ *
99
+ * ```typescript
100
+ * import * as pulumi from "@pulumi/pulumi";
101
+ * import * as newrelic from "@pulumi/newrelic";
102
+ *
103
+ * const accountDefault = new newrelic.CardinalityManagement("account_default", {
104
+ * mode: "DEFAULT",
105
+ * cardinalityLimit: 150000,
106
+ * });
107
+ * const perMetric = new newrelic.CardinalityManagement("per_metric", {
108
+ * mode: "PER_METRIC",
109
+ * metrics: [
110
+ * {
111
+ * name: "http.server.duration",
112
+ * cardinalityLimit: 250000,
113
+ * },
114
+ * {
115
+ * name: "otelcol_nrreceiver_incoming_request_proxy",
116
+ * cardinalityLimit: 300000,
117
+ * },
118
+ * ],
119
+ * });
120
+ * ```
121
+ *
122
+ * ***
123
+ *
124
+ * ## Import
125
+ *
126
+ * Cardinality management resources can be imported using the composite ID format `<account_id>:<mode>`.
127
+ *
128
+ * For a `DEFAULT` override:
129
+ *
130
+ * ```sh
131
+ * $ pulumi import newrelic:index/cardinalityManagement:CardinalityManagement account_default 12345678:DEFAULT
132
+ * ```
133
+ *
134
+ * For a `PER_METRIC` override:
135
+ *
136
+ * ```sh
137
+ * $ pulumi import newrelic:index/cardinalityManagement:CardinalityManagement per_metric 12345678:PER_METRIC
138
+ * ```
139
+ *
140
+ * > **Note:** When importing a `PER_METRIC` resource, `metric` blocks cannot be auto-populated on import and must be defined manually in your configuration. Run `pulumi up` after import to re-apply the desired limits.
141
+ */
142
+ export declare class CardinalityManagement extends pulumi.CustomResource {
143
+ /**
144
+ * Get an existing CardinalityManagement resource's state with the given name, ID, and optional extra
145
+ * properties used to qualify the lookup.
146
+ *
147
+ * @param name The _unique_ name of the resulting resource.
148
+ * @param id The _unique_ provider ID of the resource to lookup.
149
+ * @param state Any extra arguments used during the lookup.
150
+ * @param opts Optional settings to control the behavior of the CustomResource.
151
+ */
152
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CardinalityManagementState, opts?: pulumi.CustomResourceOptions): CardinalityManagement;
153
+ /**
154
+ * Returns true if the given object is an instance of CardinalityManagement. This is designed to work even
155
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
156
+ */
157
+ static isInstance(obj: any): obj is CardinalityManagement;
158
+ /**
159
+ * The account-wide cardinality limit — the maximum number of unique dimension-value combinations allowed per metric per day. Required when `mode` is `"DEFAULT"`; must not be set when `mode` is `"PER_METRIC"`.
160
+ */
161
+ readonly cardinalityLimit: pulumi.Output<number | undefined>;
162
+ /**
163
+ * One or more metric override blocks. Required when `mode` is `"PER_METRIC"`; must not be set when `mode` is `"DEFAULT"`. Each block supports:
164
+ */
165
+ readonly metrics: pulumi.Output<outputs.CardinalityManagementMetric[] | undefined>;
166
+ /**
167
+ * The override mode. Accepted values: `"DEFAULT"` or `"PER_METRIC"`. Forces re-creation when changed.
168
+ * * `DEFAULT` — sets an account-wide limit for all metrics. `cardinalityLimit` is required; `metric` blocks must not be set.
169
+ * * `PER_METRIC` — sets individual limits for named metrics. At least one `metric` block is required; `cardinalityLimit` must not be set at the top level.
170
+ */
171
+ readonly mode: pulumi.Output<string>;
172
+ /**
173
+ * Create a CardinalityManagement resource with the given unique name, arguments, and options.
174
+ *
175
+ * @param name The _unique_ name of the resource.
176
+ * @param args The arguments to use to populate this resource's properties.
177
+ * @param opts A bag of options that control this resource's behavior.
178
+ */
179
+ constructor(name: string, args: CardinalityManagementArgs, opts?: pulumi.CustomResourceOptions);
180
+ }
181
+ /**
182
+ * Input properties used for looking up and filtering CardinalityManagement resources.
183
+ */
184
+ export interface CardinalityManagementState {
185
+ /**
186
+ * The account-wide cardinality limit — the maximum number of unique dimension-value combinations allowed per metric per day. Required when `mode` is `"DEFAULT"`; must not be set when `mode` is `"PER_METRIC"`.
187
+ */
188
+ cardinalityLimit?: pulumi.Input<number | undefined>;
189
+ /**
190
+ * One or more metric override blocks. Required when `mode` is `"PER_METRIC"`; must not be set when `mode` is `"DEFAULT"`. Each block supports:
191
+ */
192
+ metrics?: pulumi.Input<pulumi.Input<inputs.CardinalityManagementMetric>[] | undefined>;
193
+ /**
194
+ * The override mode. Accepted values: `"DEFAULT"` or `"PER_METRIC"`. Forces re-creation when changed.
195
+ * * `DEFAULT` — sets an account-wide limit for all metrics. `cardinalityLimit` is required; `metric` blocks must not be set.
196
+ * * `PER_METRIC` — sets individual limits for named metrics. At least one `metric` block is required; `cardinalityLimit` must not be set at the top level.
197
+ */
198
+ mode?: pulumi.Input<string | undefined>;
199
+ }
200
+ /**
201
+ * The set of arguments for constructing a CardinalityManagement resource.
202
+ */
203
+ export interface CardinalityManagementArgs {
204
+ /**
205
+ * The account-wide cardinality limit — the maximum number of unique dimension-value combinations allowed per metric per day. Required when `mode` is `"DEFAULT"`; must not be set when `mode` is `"PER_METRIC"`.
206
+ */
207
+ cardinalityLimit?: pulumi.Input<number | undefined>;
208
+ /**
209
+ * One or more metric override blocks. Required when `mode` is `"PER_METRIC"`; must not be set when `mode` is `"DEFAULT"`. Each block supports:
210
+ */
211
+ metrics?: pulumi.Input<pulumi.Input<inputs.CardinalityManagementMetric>[] | undefined>;
212
+ /**
213
+ * The override mode. Accepted values: `"DEFAULT"` or `"PER_METRIC"`. Forces re-creation when changed.
214
+ * * `DEFAULT` — sets an account-wide limit for all metrics. `cardinalityLimit` is required; `metric` blocks must not be set.
215
+ * * `PER_METRIC` — sets individual limits for named metrics. At least one `metric` block is required; `cardinalityLimit` must not be set at the top level.
216
+ */
217
+ mode: pulumi.Input<string>;
218
+ }
219
+ //# sourceMappingURL=cardinalityManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cardinalityManagement.d.ts","sourceRoot":"","sources":["../cardinalityManagement.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyIG;AACH,qBAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,qBAAqB;IAO5J;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,qBAAqB;IAOhE;;OAEG;IACH,SAAwB,gBAAgB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5E;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,2BAA2B,EAAE,GAAG,SAAS,CAAC,CAAC;IAClG;;;;OAIG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAEpD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAqBjG;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACvF;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC3C;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACvF;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC9B"}
@@ -0,0 +1,217 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.CardinalityManagement = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * Use this resource to manage cardinality limit overrides for a New Relic account.
33
+ *
34
+ * Dimensional metrics in New Relic are subject to a per-metric cardinality limit — the maximum number of unique attribute-value combinations a single metric name may produce per day. This resource lets you raise or lower that limit, either account-wide (for all metrics at once) or for individual named metrics.
35
+ *
36
+ * Two modes are available, selected via the required `mode` argument.
37
+ *
38
+ * > **Note:** Cardinality limit overrides are managed via reset rather than removal. Running `terraform destroy` resets the affected limit(s) back to the platform default of **100,000**. The behaviour for each mode is described in the sections below.
39
+ *
40
+ * ***
41
+ *
42
+ * ## DEFAULT Mode
43
+ *
44
+ * Sets a single account-wide limit that applies to every dimensional metric in the account that does not have its own per-metric override.
45
+ *
46
+ * ### Example
47
+ *
48
+ * ```typescript
49
+ * import * as pulumi from "@pulumi/pulumi";
50
+ * import * as newrelic from "@pulumi/newrelic";
51
+ *
52
+ * const accountDefault = new newrelic.CardinalityManagement("account_default", {
53
+ * mode: "DEFAULT",
54
+ * cardinalityLimit: 150000,
55
+ * });
56
+ * ```
57
+ *
58
+ * ### Behaviour
59
+ *
60
+ * - **`pulumi up`** — submits the new default value. The change takes effect in the enforcement layer straight away.
61
+ * - **`pulumi preview` / `terraform refresh` on an existing resource** — reads the current account-wide default and reconciles state. Any drift is surfaced before the next apply.
62
+ * - **`terraform destroy`** — resets the account-wide default to the platform default of **100,000** and displays a confirmation warning.
63
+ *
64
+ * > **Note:** Changes may take a few minutes to be visible in the New Relic UI, particularly if affected metrics have not sent data recently.
65
+ *
66
+ * ***
67
+ *
68
+ * ## PER_METRIC Mode
69
+ *
70
+ * Sets individual cardinality limits for one or more named metrics. Each metric is configured in its own `metric` block and can have a different limit.
71
+ *
72
+ * ### Example — single metric
73
+ *
74
+ * ```typescript
75
+ * import * as pulumi from "@pulumi/pulumi";
76
+ * import * as newrelic from "@pulumi/newrelic";
77
+ *
78
+ * const perMetric = new newrelic.CardinalityManagement("per_metric", {
79
+ * mode: "PER_METRIC",
80
+ * metrics: [{
81
+ * name: "http.server.duration",
82
+ * cardinalityLimit: 200000,
83
+ * }],
84
+ * });
85
+ * ```
86
+ *
87
+ * ### Example — multiple metrics in one resource
88
+ *
89
+ * ```typescript
90
+ * import * as pulumi from "@pulumi/pulumi";
91
+ * import * as newrelic from "@pulumi/newrelic";
92
+ *
93
+ * const highCardinalityMetrics = new newrelic.CardinalityManagement("high_cardinality_metrics", {
94
+ * mode: "PER_METRIC",
95
+ * metrics: [
96
+ * {
97
+ * name: "http.server.duration",
98
+ * cardinalityLimit: 200000,
99
+ * },
100
+ * {
101
+ * name: "otelcol_nrreceiver_incoming_request_proxy",
102
+ * cardinalityLimit: 300000,
103
+ * },
104
+ * {
105
+ * name: "k8s.pod.cpu.usage",
106
+ * cardinalityLimit: 150000,
107
+ * },
108
+ * ],
109
+ * });
110
+ * ```
111
+ *
112
+ * ### Behaviour
113
+ *
114
+ * - **`pulumi up`** — submits one override per `metric` block. A warning is displayed as a reminder that updates may take a few minutes to be reflected in the UI.
115
+ * - **`pulumi preview` / `terraform refresh` on an existing resource** — in `PER_METRIC` mode, `cardinalityLimit` values in state reflect the last configuration applied via terraform — this is the expected behaviour for this mode. A note is displayed as a reminder.
116
+ * - **`terraform destroy`** — resets each managed metric's limit to the platform default of **100,000** and displays a confirmation warning.
117
+ *
118
+ * > **Note:** In `PER_METRIC` mode, the `cardinalityLimit` values within `metric` blocks reflect the last configuration applied via terraform. If any of these limits have been adjusted outside of terraform, run `pulumi up` to re-apply the desired values.
119
+ *
120
+ * ***
121
+ *
122
+ * ## Using Both Modes Together
123
+ *
124
+ * You can manage both the account-wide default and individual metric overrides at the same time:
125
+ *
126
+ * ```typescript
127
+ * import * as pulumi from "@pulumi/pulumi";
128
+ * import * as newrelic from "@pulumi/newrelic";
129
+ *
130
+ * const accountDefault = new newrelic.CardinalityManagement("account_default", {
131
+ * mode: "DEFAULT",
132
+ * cardinalityLimit: 150000,
133
+ * });
134
+ * const perMetric = new newrelic.CardinalityManagement("per_metric", {
135
+ * mode: "PER_METRIC",
136
+ * metrics: [
137
+ * {
138
+ * name: "http.server.duration",
139
+ * cardinalityLimit: 250000,
140
+ * },
141
+ * {
142
+ * name: "otelcol_nrreceiver_incoming_request_proxy",
143
+ * cardinalityLimit: 300000,
144
+ * },
145
+ * ],
146
+ * });
147
+ * ```
148
+ *
149
+ * ***
150
+ *
151
+ * ## Import
152
+ *
153
+ * Cardinality management resources can be imported using the composite ID format `<account_id>:<mode>`.
154
+ *
155
+ * For a `DEFAULT` override:
156
+ *
157
+ * ```sh
158
+ * $ pulumi import newrelic:index/cardinalityManagement:CardinalityManagement account_default 12345678:DEFAULT
159
+ * ```
160
+ *
161
+ * For a `PER_METRIC` override:
162
+ *
163
+ * ```sh
164
+ * $ pulumi import newrelic:index/cardinalityManagement:CardinalityManagement per_metric 12345678:PER_METRIC
165
+ * ```
166
+ *
167
+ * > **Note:** When importing a `PER_METRIC` resource, `metric` blocks cannot be auto-populated on import and must be defined manually in your configuration. Run `pulumi up` after import to re-apply the desired limits.
168
+ */
169
+ class CardinalityManagement extends pulumi.CustomResource {
170
+ /**
171
+ * Get an existing CardinalityManagement resource's state with the given name, ID, and optional extra
172
+ * properties used to qualify the lookup.
173
+ *
174
+ * @param name The _unique_ name of the resulting resource.
175
+ * @param id The _unique_ provider ID of the resource to lookup.
176
+ * @param state Any extra arguments used during the lookup.
177
+ * @param opts Optional settings to control the behavior of the CustomResource.
178
+ */
179
+ static get(name, id, state, opts) {
180
+ return new CardinalityManagement(name, state, { ...opts, id: id });
181
+ }
182
+ /** @internal */
183
+ static __pulumiType = 'newrelic:index/cardinalityManagement:CardinalityManagement';
184
+ /**
185
+ * Returns true if the given object is an instance of CardinalityManagement. This is designed to work even
186
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
187
+ */
188
+ static isInstance(obj) {
189
+ if (obj === undefined || obj === null) {
190
+ return false;
191
+ }
192
+ return obj['__pulumiType'] === CardinalityManagement.__pulumiType;
193
+ }
194
+ constructor(name, argsOrState, opts) {
195
+ let resourceInputs = {};
196
+ opts = opts || {};
197
+ if (opts.id) {
198
+ const state = argsOrState;
199
+ resourceInputs["cardinalityLimit"] = state?.cardinalityLimit;
200
+ resourceInputs["metrics"] = state?.metrics;
201
+ resourceInputs["mode"] = state?.mode;
202
+ }
203
+ else {
204
+ const args = argsOrState;
205
+ if (args?.mode === undefined && !opts.urn) {
206
+ throw new Error("Missing required property 'mode'");
207
+ }
208
+ resourceInputs["cardinalityLimit"] = args?.cardinalityLimit;
209
+ resourceInputs["metrics"] = args?.metrics;
210
+ resourceInputs["mode"] = args?.mode;
211
+ }
212
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
213
+ super(CardinalityManagement.__pulumiType, name, resourceInputs, opts);
214
+ }
215
+ }
216
+ exports.CardinalityManagement = CardinalityManagement;
217
+ //# sourceMappingURL=cardinalityManagement.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cardinalityManagement.js","sourceRoot":"","sources":["../cardinalityManagement.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyIG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,OAAO,IAAI,qBAAqB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,4DAA4D,CAAC;IAEnG;;;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,qBAAqB,CAAC,YAAY,CAAC;IACtE,CAAC;IAyBD,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqD,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAoD,CAAC;YAClE,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,qBAAqB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1E,CAAC;;AAtEL,sDAuEC"}
package/index.d.ts CHANGED
@@ -25,6 +25,9 @@ export declare const ApiAccessKey: typeof import("./apiAccessKey").ApiAccessKey;
25
25
  export { BrowserApplicationArgs, BrowserApplicationState } from "./browserApplication";
26
26
  export type BrowserApplication = import("./browserApplication").BrowserApplication;
27
27
  export declare const BrowserApplication: typeof import("./browserApplication").BrowserApplication;
28
+ export { CardinalityManagementArgs, CardinalityManagementState } from "./cardinalityManagement";
29
+ export type CardinalityManagement = import("./cardinalityManagement").CardinalityManagement;
30
+ export declare const CardinalityManagement: typeof import("./cardinalityManagement").CardinalityManagement;
28
31
  export { DataPartitionRuleArgs, DataPartitionRuleState } from "./dataPartitionRule";
29
32
  export type DataPartitionRule = import("./dataPartitionRule").DataPartitionRule;
30
33
  export declare const DataPartitionRule: typeof import("./dataPartitionRule").DataPartitionRule;
@@ -106,6 +109,9 @@ export declare const KeyTransaction: typeof import("./keyTransaction").KeyTransa
106
109
  export { LogParsingRuleArgs, LogParsingRuleState } from "./logParsingRule";
107
110
  export type LogParsingRule = import("./logParsingRule").LogParsingRule;
108
111
  export declare const LogParsingRule: typeof import("./logParsingRule").LogParsingRule;
112
+ export { MetricPruningRuleArgs, MetricPruningRuleState } from "./metricPruningRule";
113
+ export type MetricPruningRule = import("./metricPruningRule").MetricPruningRule;
114
+ export declare const MetricPruningRule: typeof import("./metricPruningRule").MetricPruningRule;
109
115
  export { MonitorDowntimeArgs, MonitorDowntimeState } from "./monitorDowntime";
110
116
  export type MonitorDowntime = import("./monitorDowntime").MonitorDowntime;
111
117
  export declare const MonitorDowntime: typeof import("./monitorDowntime").MonitorDowntime;
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
package/index.js CHANGED
@@ -28,8 +28,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
28
28
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
29
29
  };
30
30
  Object.defineProperty(exports, "__esModule", { value: true });
31
- exports.InfraAlertCondition = exports.Group = exports.getUserOutput = exports.getUser = exports.getTestGrokPatternOutput = exports.getTestGrokPattern = exports.getServiceLevelAlertHelperOutput = exports.getServiceLevelAlertHelper = exports.getObfuscationExpressionOutput = exports.getObfuscationExpression = exports.getNotificationDestinationOutput = exports.getNotificationDestination = exports.getKeyTransactionOutput = exports.getKeyTransaction = exports.getGroupOutput = exports.getGroup = exports.getFleetMembersOutput = exports.getFleetMembers = exports.getFleetConfigurationOutput = exports.getFleetConfiguration = exports.getEntityOutput = exports.getEntity = exports.getCloudAccountOutput = exports.getCloudAccount = exports.getAuthenticationDomainOutput = exports.getAuthenticationDomain = exports.getApplicationOutput = exports.getApplication = exports.getAlertPolicyOutput = exports.getAlertPolicy = exports.getAlertChannelOutput = exports.getAlertChannel = exports.getAccountOutput = exports.getAccount = exports.FleetMembers = exports.FleetDeployment = exports.FleetConfiguration = exports.Fleet = exports.EventsToMetricsRule = exports.EntityTags = exports.DataPartitionRule = exports.BrowserApplication = exports.ApiAccessKey = exports.AlertPolicyChannel = exports.AlertPolicy = exports.AlertMutingRule = exports.AlertCondition = exports.AlertCompoundCondition = exports.AlertChannel = exports.AccountManagement = void 0;
32
- exports.types = exports.synthetics = exports.plugins = exports.insights = exports.config = exports.cloud = exports.WorkflowAutomation = exports.Workflow = exports.User = exports.ServiceLevel = exports.PipelineCloudRule = exports.OneDashboardRaw = exports.OneDashboardJson = exports.OneDashboard = exports.ObfuscationRule = exports.ObfuscationExpression = exports.NrqlDropRule = exports.NrqlAlertCondition = exports.NotificationDestination = exports.NotificationChannel = exports.MonitorDowntime = exports.LogParsingRule = exports.KeyTransaction = void 0;
31
+ exports.Group = exports.getUserOutput = exports.getUser = exports.getTestGrokPatternOutput = exports.getTestGrokPattern = exports.getServiceLevelAlertHelperOutput = exports.getServiceLevelAlertHelper = exports.getObfuscationExpressionOutput = exports.getObfuscationExpression = exports.getNotificationDestinationOutput = exports.getNotificationDestination = exports.getKeyTransactionOutput = exports.getKeyTransaction = exports.getGroupOutput = exports.getGroup = exports.getFleetMembersOutput = exports.getFleetMembers = exports.getFleetConfigurationOutput = exports.getFleetConfiguration = exports.getEntityOutput = exports.getEntity = exports.getCloudAccountOutput = exports.getCloudAccount = exports.getAuthenticationDomainOutput = exports.getAuthenticationDomain = exports.getApplicationOutput = exports.getApplication = exports.getAlertPolicyOutput = exports.getAlertPolicy = exports.getAlertChannelOutput = exports.getAlertChannel = exports.getAccountOutput = exports.getAccount = exports.FleetMembers = exports.FleetDeployment = exports.FleetConfiguration = exports.Fleet = exports.EventsToMetricsRule = exports.EntityTags = exports.DataPartitionRule = exports.CardinalityManagement = exports.BrowserApplication = exports.ApiAccessKey = exports.AlertPolicyChannel = exports.AlertPolicy = exports.AlertMutingRule = exports.AlertCondition = exports.AlertCompoundCondition = exports.AlertChannel = exports.AccountManagement = void 0;
32
+ exports.types = exports.synthetics = exports.plugins = exports.insights = exports.config = exports.cloud = exports.WorkflowAutomation = exports.Workflow = exports.User = exports.ServiceLevel = exports.PipelineCloudRule = exports.OneDashboardRaw = exports.OneDashboardJson = exports.OneDashboard = exports.ObfuscationRule = exports.ObfuscationExpression = exports.NrqlDropRule = exports.NrqlAlertCondition = exports.NotificationDestination = exports.NotificationChannel = exports.MonitorDowntime = exports.MetricPruningRule = exports.LogParsingRule = exports.KeyTransaction = exports.InfraAlertCondition = void 0;
33
33
  const pulumi = __importStar(require("@pulumi/pulumi"));
34
34
  const utilities = __importStar(require("./utilities"));
35
35
  exports.AccountManagement = null;
@@ -50,6 +50,8 @@ exports.ApiAccessKey = null;
50
50
  utilities.lazyLoad(exports, ["ApiAccessKey"], () => require("./apiAccessKey"));
51
51
  exports.BrowserApplication = null;
52
52
  utilities.lazyLoad(exports, ["BrowserApplication"], () => require("./browserApplication"));
53
+ exports.CardinalityManagement = null;
54
+ utilities.lazyLoad(exports, ["CardinalityManagement"], () => require("./cardinalityManagement"));
53
55
  exports.DataPartitionRule = null;
54
56
  utilities.lazyLoad(exports, ["DataPartitionRule"], () => require("./dataPartitionRule"));
55
57
  exports.EntityTags = null;
@@ -120,6 +122,8 @@ exports.KeyTransaction = null;
120
122
  utilities.lazyLoad(exports, ["KeyTransaction"], () => require("./keyTransaction"));
121
123
  exports.LogParsingRule = null;
122
124
  utilities.lazyLoad(exports, ["LogParsingRule"], () => require("./logParsingRule"));
125
+ exports.MetricPruningRule = null;
126
+ utilities.lazyLoad(exports, ["MetricPruningRule"], () => require("./metricPruningRule"));
123
127
  exports.MonitorDowntime = null;
124
128
  utilities.lazyLoad(exports, ["MonitorDowntime"], () => require("./monitorDowntime"));
125
129
  exports.NotificationChannel = null;
@@ -187,6 +191,8 @@ const _module = {
187
191
  return new exports.ApiAccessKey(name, undefined, { urn });
188
192
  case "newrelic:index/browserApplication:BrowserApplication":
189
193
  return new exports.BrowserApplication(name, undefined, { urn });
194
+ case "newrelic:index/cardinalityManagement:CardinalityManagement":
195
+ return new exports.CardinalityManagement(name, undefined, { urn });
190
196
  case "newrelic:index/dataPartitionRule:DataPartitionRule":
191
197
  return new exports.DataPartitionRule(name, undefined, { urn });
192
198
  case "newrelic:index/entityTags:EntityTags":
@@ -209,6 +215,8 @@ const _module = {
209
215
  return new exports.KeyTransaction(name, undefined, { urn });
210
216
  case "newrelic:index/logParsingRule:LogParsingRule":
211
217
  return new exports.LogParsingRule(name, undefined, { urn });
218
+ case "newrelic:index/metricPruningRule:MetricPruningRule":
219
+ return new exports.MetricPruningRule(name, undefined, { urn });
212
220
  case "newrelic:index/monitorDowntime:MonitorDowntime":
213
221
  return new exports.MonitorDowntime(name, undefined, { urn });
214
222
  case "newrelic:index/notificationChannel:NotificationChannel":
@@ -253,6 +261,7 @@ pulumi.runtime.registerResourceModule("newrelic", "index/alertPolicy", _module);
253
261
  pulumi.runtime.registerResourceModule("newrelic", "index/alertPolicyChannel", _module);
254
262
  pulumi.runtime.registerResourceModule("newrelic", "index/apiAccessKey", _module);
255
263
  pulumi.runtime.registerResourceModule("newrelic", "index/browserApplication", _module);
264
+ pulumi.runtime.registerResourceModule("newrelic", "index/cardinalityManagement", _module);
256
265
  pulumi.runtime.registerResourceModule("newrelic", "index/dataPartitionRule", _module);
257
266
  pulumi.runtime.registerResourceModule("newrelic", "index/entityTags", _module);
258
267
  pulumi.runtime.registerResourceModule("newrelic", "index/eventsToMetricsRule", _module);
@@ -264,6 +273,7 @@ pulumi.runtime.registerResourceModule("newrelic", "index/group", _module);
264
273
  pulumi.runtime.registerResourceModule("newrelic", "index/infraAlertCondition", _module);
265
274
  pulumi.runtime.registerResourceModule("newrelic", "index/keyTransaction", _module);
266
275
  pulumi.runtime.registerResourceModule("newrelic", "index/logParsingRule", _module);
276
+ pulumi.runtime.registerResourceModule("newrelic", "index/metricPruningRule", _module);
267
277
  pulumi.runtime.registerResourceModule("newrelic", "index/monitorDowntime", _module);
268
278
  pulumi.runtime.registerResourceModule("newrelic", "index/notificationChannel", _module);
269
279
  pulumi.runtime.registerResourceModule("newrelic", "index/notificationDestination", _module);