@pulumi/newrelic 5.7.0 → 5.8.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/getEntity.d.ts CHANGED
@@ -7,7 +7,8 @@ import * as outputs from "./types/output";
7
7
  * ## Additional Examples
8
8
  *
9
9
  * > If the entities are not found please try again without providing the `types` field.
10
- * ### An example of querying OTEL entities
10
+ *
11
+ * ### Query for an OTEL entity
11
12
  *
12
13
  * ```typescript
13
14
  * import * as pulumi from "@pulumi/pulumi";
@@ -20,22 +21,19 @@ import * as outputs from "./types/output";
20
21
  * key: "accountID",
21
22
  * value: "12345",
22
23
  * }],
24
+ * type: "SERVICE",
23
25
  * });
24
26
  * ```
25
27
  *
26
- * ### An example of querying AWS lambda entities
28
+ * ### Query for an entity by type (AWS Lambda entity in this example)
27
29
  *
28
30
  * ```typescript
29
31
  * import * as pulumi from "@pulumi/pulumi";
30
32
  * import * as newrelic from "@pulumi/newrelic";
31
33
  *
32
34
  * const app = newrelic.getEntity({
33
- * domain: "INFRA",
34
35
  * name: "my_lambda_trace",
35
- * tags: [{
36
- * key: "accountID",
37
- * value: "12345",
38
- * }],
36
+ * type: "AWSLAMBDAFUNCTION",
39
37
  * });
40
38
  * ```
41
39
  */
@@ -61,7 +59,7 @@ export interface GetEntityArgs {
61
59
  */
62
60
  tags?: inputs.GetEntityTag[];
63
61
  /**
64
- * The entity's type. Valid values are APPLICATION, DASHBOARD, HOST, MONITOR, SERVICE and WORKLOAD.
62
+ * The entity's type. Valid values are APPLICATION, DASHBOARD, HOST, MONITOR, WORKLOAD, AWSLAMBDAFUNCTION, SERVICE_LEVEL, and KEY_TRANSACTION. Note: Other entity types may also be queryable as the list of entity types may fluctuate over time.
65
63
  */
66
64
  type?: string;
67
65
  }
@@ -101,7 +99,8 @@ export interface GetEntityResult {
101
99
  * ## Additional Examples
102
100
  *
103
101
  * > If the entities are not found please try again without providing the `types` field.
104
- * ### An example of querying OTEL entities
102
+ *
103
+ * ### Query for an OTEL entity
105
104
  *
106
105
  * ```typescript
107
106
  * import * as pulumi from "@pulumi/pulumi";
@@ -114,22 +113,19 @@ export interface GetEntityResult {
114
113
  * key: "accountID",
115
114
  * value: "12345",
116
115
  * }],
116
+ * type: "SERVICE",
117
117
  * });
118
118
  * ```
119
119
  *
120
- * ### An example of querying AWS lambda entities
120
+ * ### Query for an entity by type (AWS Lambda entity in this example)
121
121
  *
122
122
  * ```typescript
123
123
  * import * as pulumi from "@pulumi/pulumi";
124
124
  * import * as newrelic from "@pulumi/newrelic";
125
125
  *
126
126
  * const app = newrelic.getEntity({
127
- * domain: "INFRA",
128
127
  * name: "my_lambda_trace",
129
- * tags: [{
130
- * key: "accountID",
131
- * value: "12345",
132
- * }],
128
+ * type: "AWSLAMBDAFUNCTION",
133
129
  * });
134
130
  * ```
135
131
  */
@@ -155,7 +151,7 @@ export interface GetEntityOutputArgs {
155
151
  */
156
152
  tags?: pulumi.Input<pulumi.Input<inputs.GetEntityTagArgs>[]>;
157
153
  /**
158
- * The entity's type. Valid values are APPLICATION, DASHBOARD, HOST, MONITOR, SERVICE and WORKLOAD.
154
+ * The entity's type. Valid values are APPLICATION, DASHBOARD, HOST, MONITOR, WORKLOAD, AWSLAMBDAFUNCTION, SERVICE_LEVEL, and KEY_TRANSACTION. Note: Other entity types may also be queryable as the list of entity types may fluctuate over time.
159
155
  */
160
156
  type?: pulumi.Input<string>;
161
157
  }
package/getEntity.js CHANGED
@@ -11,7 +11,8 @@ const utilities = require("./utilities");
11
11
  * ## Additional Examples
12
12
  *
13
13
  * > If the entities are not found please try again without providing the `types` field.
14
- * ### An example of querying OTEL entities
14
+ *
15
+ * ### Query for an OTEL entity
15
16
  *
16
17
  * ```typescript
17
18
  * import * as pulumi from "@pulumi/pulumi";
@@ -24,22 +25,19 @@ const utilities = require("./utilities");
24
25
  * key: "accountID",
25
26
  * value: "12345",
26
27
  * }],
28
+ * type: "SERVICE",
27
29
  * });
28
30
  * ```
29
31
  *
30
- * ### An example of querying AWS lambda entities
32
+ * ### Query for an entity by type (AWS Lambda entity in this example)
31
33
  *
32
34
  * ```typescript
33
35
  * import * as pulumi from "@pulumi/pulumi";
34
36
  * import * as newrelic from "@pulumi/newrelic";
35
37
  *
36
38
  * const app = newrelic.getEntity({
37
- * domain: "INFRA",
38
39
  * name: "my_lambda_trace",
39
- * tags: [{
40
- * key: "accountID",
41
- * value: "12345",
42
- * }],
40
+ * type: "AWSLAMBDAFUNCTION",
43
41
  * });
44
42
  * ```
45
43
  */
@@ -60,7 +58,8 @@ exports.getEntity = getEntity;
60
58
  * ## Additional Examples
61
59
  *
62
60
  * > If the entities are not found please try again without providing the `types` field.
63
- * ### An example of querying OTEL entities
61
+ *
62
+ * ### Query for an OTEL entity
64
63
  *
65
64
  * ```typescript
66
65
  * import * as pulumi from "@pulumi/pulumi";
@@ -73,22 +72,19 @@ exports.getEntity = getEntity;
73
72
  * key: "accountID",
74
73
  * value: "12345",
75
74
  * }],
75
+ * type: "SERVICE",
76
76
  * });
77
77
  * ```
78
78
  *
79
- * ### An example of querying AWS lambda entities
79
+ * ### Query for an entity by type (AWS Lambda entity in this example)
80
80
  *
81
81
  * ```typescript
82
82
  * import * as pulumi from "@pulumi/pulumi";
83
83
  * import * as newrelic from "@pulumi/newrelic";
84
84
  *
85
85
  * const app = newrelic.getEntity({
86
- * domain: "INFRA",
87
86
  * name: "my_lambda_trace",
88
- * tags: [{
89
- * key: "accountID",
90
- * value: "12345",
91
- * }],
87
+ * type: "AWSLAMBDAFUNCTION",
92
88
  * });
93
89
  * ```
94
90
  */
package/getEntity.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getEntity.js","sourceRoot":"","sources":["../getEntity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AA0DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
1
+ {"version":3,"file":"getEntity.js","sourceRoot":"","sources":["../getEntity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AA0DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/newrelic",
3
- "version": "v5.7.0",
3
+ "version": "v5.8.0",
4
4
  "description": "A Pulumi package for creating and managing New Relic 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 newrelic v5.7.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource newrelic v5.8.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/newrelic",
3
- "version": "v5.7.0",
3
+ "version": "v5.8.0",
4
4
  "description": "A Pulumi package for creating and managing New Relic 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 newrelic v5.7.0"
14
+ "install": "node scripts/install-pulumi-plugin.js resource newrelic v5.8.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/serviceLevel.d.ts CHANGED
@@ -92,7 +92,6 @@ import * as outputs from "./types/output";
92
92
  * ],
93
93
  * });
94
94
  * ```
95
- *
96
95
  * For up-to-date documentation about the tagging resource, please check newrelic.EntityTags
97
96
  *
98
97
  * ## Import
package/serviceLevel.js CHANGED
@@ -96,7 +96,6 @@ const utilities = require("./utilities");
96
96
  * ],
97
97
  * });
98
98
  * ```
99
- *
100
99
  * For up-to-date documentation about the tagging resource, please check newrelic.EntityTags
101
100
  *
102
101
  * ## Import
@@ -1 +1 @@
1
- {"version":3,"file":"serviceLevel.js","sourceRoot":"","sources":["../serviceLevel.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"serviceLevel.js","sourceRoot":"","sources":["../serviceLevel.ts"],"names":[],"mappings":"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"}
package/types/input.d.ts CHANGED
@@ -2154,9 +2154,10 @@ export interface ServiceLevelEventsBadEventsSelect {
2154
2154
  */
2155
2155
  attribute?: pulumi.Input<string>;
2156
2156
  /**
2157
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2157
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2158
2158
  */
2159
2159
  function: pulumi.Input<string>;
2160
+ threshold?: pulumi.Input<number>;
2160
2161
  }
2161
2162
  export interface ServiceLevelEventsGoodEvents {
2162
2163
  /**
@@ -2180,9 +2181,10 @@ export interface ServiceLevelEventsGoodEventsSelect {
2180
2181
  */
2181
2182
  attribute?: pulumi.Input<string>;
2182
2183
  /**
2183
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2184
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2184
2185
  */
2185
2186
  function: pulumi.Input<string>;
2187
+ threshold?: pulumi.Input<number>;
2186
2188
  }
2187
2189
  export interface ServiceLevelEventsValidEvents {
2188
2190
  /**
@@ -2206,9 +2208,10 @@ export interface ServiceLevelEventsValidEventsSelect {
2206
2208
  */
2207
2209
  attribute?: pulumi.Input<string>;
2208
2210
  /**
2209
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2211
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2210
2212
  */
2211
2213
  function: pulumi.Input<string>;
2214
+ threshold?: pulumi.Input<number>;
2212
2215
  }
2213
2216
  export interface ServiceLevelObjective {
2214
2217
  /**
package/types/output.d.ts CHANGED
@@ -2199,9 +2199,10 @@ export interface ServiceLevelEventsBadEventsSelect {
2199
2199
  */
2200
2200
  attribute?: string;
2201
2201
  /**
2202
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2202
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2203
2203
  */
2204
2204
  function: string;
2205
+ threshold?: number;
2205
2206
  }
2206
2207
  export interface ServiceLevelEventsGoodEvents {
2207
2208
  /**
@@ -2225,9 +2226,10 @@ export interface ServiceLevelEventsGoodEventsSelect {
2225
2226
  */
2226
2227
  attribute?: string;
2227
2228
  /**
2228
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2229
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2229
2230
  */
2230
2231
  function: string;
2232
+ threshold?: number;
2231
2233
  }
2232
2234
  export interface ServiceLevelEventsValidEvents {
2233
2235
  /**
@@ -2251,9 +2253,10 @@ export interface ServiceLevelEventsValidEventsSelect {
2251
2253
  */
2252
2254
  attribute?: string;
2253
2255
  /**
2254
- * The function to use in the SELECT clause. Valid values are `COUNT`and `SUM`.
2256
+ * The function to use in the SELECT clause. Valid values are `COUNT` and `SUM`.
2255
2257
  */
2256
2258
  function: string;
2259
+ threshold?: number;
2257
2260
  }
2258
2261
  export interface ServiceLevelObjective {
2259
2262
  /**