@pulumi/newrelic 5.64.1 → 5.65.0-alpha.1775837837
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/entityTags.d.ts +1 -1
- package/entityTags.js +1 -1
- package/getEntity.d.ts +2 -2
- package/getEntity.js +2 -2
- package/package.json +2 -2
package/entityTags.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ import * as outputs from "./types/output";
|
|
|
59
59
|
* name: __key,
|
|
60
60
|
* type: "APPLICATION",
|
|
61
61
|
* domain: "APM",
|
|
62
|
-
* }) }));
|
|
62
|
+
* }) }), {});
|
|
63
63
|
* const fooEntityTags: newrelic.EntityTags[] = [];
|
|
64
64
|
* for (const range of apps.map((v, k) => ({key: k, value: v}))) {
|
|
65
65
|
* fooEntityTags.push(new newrelic.EntityTags(`foo-${range.key}`, {
|
package/entityTags.js
CHANGED
|
@@ -63,7 +63,7 @@ const utilities = require("./utilities");
|
|
|
63
63
|
* name: __key,
|
|
64
64
|
* type: "APPLICATION",
|
|
65
65
|
* domain: "APM",
|
|
66
|
-
* }) }));
|
|
66
|
+
* }) }), {});
|
|
67
67
|
* const fooEntityTags: newrelic.EntityTags[] = [];
|
|
68
68
|
* for (const range of apps.map((v, k) => ({key: k, value: v}))) {
|
|
69
69
|
* fooEntityTags.push(new newrelic.EntityTags(`foo-${range.key}`, {
|
package/getEntity.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ import * as outputs from "./types/output";
|
|
|
91
91
|
* domain: "EXT",
|
|
92
92
|
* type: "SERVICE_LEVEL",
|
|
93
93
|
* });
|
|
94
|
-
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }));
|
|
94
|
+
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }), {});
|
|
95
95
|
* return {
|
|
96
96
|
* keyValueMap: keyValueMap,
|
|
97
97
|
* };
|
|
@@ -263,7 +263,7 @@ export interface GetEntityResult {
|
|
|
263
263
|
* domain: "EXT",
|
|
264
264
|
* type: "SERVICE_LEVEL",
|
|
265
265
|
* });
|
|
266
|
-
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }));
|
|
266
|
+
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }), {});
|
|
267
267
|
* return {
|
|
268
268
|
* keyValueMap: keyValueMap,
|
|
269
269
|
* };
|
package/getEntity.js
CHANGED
|
@@ -95,7 +95,7 @@ const utilities = require("./utilities");
|
|
|
95
95
|
* domain: "EXT",
|
|
96
96
|
* type: "SERVICE_LEVEL",
|
|
97
97
|
* });
|
|
98
|
-
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }));
|
|
98
|
+
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }), {});
|
|
99
99
|
* return {
|
|
100
100
|
* keyValueMap: keyValueMap,
|
|
101
101
|
* };
|
|
@@ -207,7 +207,7 @@ exports.getEntity = getEntity;
|
|
|
207
207
|
* domain: "EXT",
|
|
208
208
|
* type: "SERVICE_LEVEL",
|
|
209
209
|
* });
|
|
210
|
-
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }));
|
|
210
|
+
* const keyValueMap = .reduce((__obj, pair) => ({ ...__obj, [pair.key]: pair.values }), {});
|
|
211
211
|
* return {
|
|
212
212
|
* keyValueMap: keyValueMap,
|
|
213
213
|
* };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/newrelic",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.65.0-alpha.1775837837",
|
|
4
4
|
"description": "A Pulumi package for creating and managing New Relic resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "newrelic",
|
|
26
|
-
"version": "5.
|
|
26
|
+
"version": "5.65.0-alpha.1775837837"
|
|
27
27
|
}
|
|
28
28
|
}
|