pulumi-newrelic 5.38.0a1736415260__py3-none-any.whl → 5.38.1a1738600613__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-newrelic might be problematic. Click here for more details.
- pulumi_newrelic/_inputs.py +3 -3
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +58 -51
- pulumi_newrelic/nrql_alert_condition.py +2 -2
- pulumi_newrelic/outputs.py +2 -2
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/RECORD +9 -9
- {pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
|
@@ -2042,7 +2042,7 @@ if not MYPY:
|
|
|
2042
2042
|
query: pulumi.Input[str]
|
|
2043
2043
|
data_account_id: NotRequired[pulumi.Input[str]]
|
|
2044
2044
|
"""
|
|
2045
|
-
|
|
2045
|
+
The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
|
|
2046
2046
|
"""
|
|
2047
2047
|
evaluation_offset: NotRequired[pulumi.Input[int]]
|
|
2048
2048
|
"""
|
|
@@ -2063,7 +2063,7 @@ class NrqlAlertConditionNrqlArgs:
|
|
|
2063
2063
|
evaluation_offset: Optional[pulumi.Input[int]] = None,
|
|
2064
2064
|
since_value: Optional[pulumi.Input[str]] = None):
|
|
2065
2065
|
"""
|
|
2066
|
-
:param pulumi.Input[str] data_account_id:
|
|
2066
|
+
:param pulumi.Input[str] data_account_id: The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
|
|
2067
2067
|
:param pulumi.Input[int] evaluation_offset: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
|
|
2068
2068
|
:param pulumi.Input[str] since_value: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
|
|
2069
2069
|
"""
|
|
@@ -2094,7 +2094,7 @@ class NrqlAlertConditionNrqlArgs:
|
|
|
2094
2094
|
@pulumi.getter(name="dataAccountId")
|
|
2095
2095
|
def data_account_id(self) -> Optional[pulumi.Input[str]]:
|
|
2096
2096
|
"""
|
|
2097
|
-
|
|
2097
|
+
The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
|
|
2098
2098
|
"""
|
|
2099
2099
|
return pulumi.get(self, "data_account_id")
|
|
2100
2100
|
|
|
@@ -27,12 +27,13 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
27
27
|
name: Optional[pulumi.Input[str]] = None):
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a AwsGovcloudLinkAccount resource.
|
|
30
|
-
:param pulumi.Input[str] access_key_id: The
|
|
31
|
-
:param pulumi.Input[str] aws_account_id: The
|
|
32
|
-
:param pulumi.Input[str] secret_access_key: The
|
|
30
|
+
:param pulumi.Input[str] access_key_id: The Access Key used to programmatically access the AWS GovCloud account.
|
|
31
|
+
:param pulumi.Input[str] aws_account_id: The ID of the AWS GovCloud account.
|
|
32
|
+
:param pulumi.Input[str] secret_access_key: The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
33
33
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
34
|
-
:param pulumi.Input[str] metric_collection_mode:
|
|
35
|
-
|
|
34
|
+
:param pulumi.Input[str] metric_collection_mode: The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
35
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
36
|
+
:param pulumi.Input[str] name: The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
36
37
|
"""
|
|
37
38
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
|
38
39
|
pulumi.set(__self__, "aws_account_id", aws_account_id)
|
|
@@ -48,7 +49,7 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
48
49
|
@pulumi.getter(name="accessKeyId")
|
|
49
50
|
def access_key_id(self) -> pulumi.Input[str]:
|
|
50
51
|
"""
|
|
51
|
-
The
|
|
52
|
+
The Access Key used to programmatically access the AWS GovCloud account.
|
|
52
53
|
"""
|
|
53
54
|
return pulumi.get(self, "access_key_id")
|
|
54
55
|
|
|
@@ -60,7 +61,7 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
60
61
|
@pulumi.getter(name="awsAccountId")
|
|
61
62
|
def aws_account_id(self) -> pulumi.Input[str]:
|
|
62
63
|
"""
|
|
63
|
-
The
|
|
64
|
+
The ID of the AWS GovCloud account.
|
|
64
65
|
"""
|
|
65
66
|
return pulumi.get(self, "aws_account_id")
|
|
66
67
|
|
|
@@ -72,7 +73,7 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
72
73
|
@pulumi.getter(name="secretAccessKey")
|
|
73
74
|
def secret_access_key(self) -> pulumi.Input[str]:
|
|
74
75
|
"""
|
|
75
|
-
The
|
|
76
|
+
The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
76
77
|
"""
|
|
77
78
|
return pulumi.get(self, "secret_access_key")
|
|
78
79
|
|
|
@@ -96,7 +97,8 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
96
97
|
@pulumi.getter(name="metricCollectionMode")
|
|
97
98
|
def metric_collection_mode(self) -> Optional[pulumi.Input[str]]:
|
|
98
99
|
"""
|
|
99
|
-
|
|
100
|
+
The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
101
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
100
102
|
"""
|
|
101
103
|
return pulumi.get(self, "metric_collection_mode")
|
|
102
104
|
|
|
@@ -108,7 +110,7 @@ class AwsGovcloudLinkAccountArgs:
|
|
|
108
110
|
@pulumi.getter
|
|
109
111
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
110
112
|
"""
|
|
111
|
-
The linked account
|
|
113
|
+
The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
112
114
|
"""
|
|
113
115
|
return pulumi.get(self, "name")
|
|
114
116
|
|
|
@@ -128,12 +130,13 @@ class _AwsGovcloudLinkAccountState:
|
|
|
128
130
|
secret_access_key: Optional[pulumi.Input[str]] = None):
|
|
129
131
|
"""
|
|
130
132
|
Input properties used for looking up and filtering AwsGovcloudLinkAccount resources.
|
|
131
|
-
:param pulumi.Input[str] access_key_id: The
|
|
133
|
+
:param pulumi.Input[str] access_key_id: The Access Key used to programmatically access the AWS GovCloud account.
|
|
132
134
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
133
|
-
:param pulumi.Input[str] aws_account_id: The
|
|
134
|
-
:param pulumi.Input[str] metric_collection_mode:
|
|
135
|
-
|
|
136
|
-
:param pulumi.Input[str]
|
|
135
|
+
:param pulumi.Input[str] aws_account_id: The ID of the AWS GovCloud account.
|
|
136
|
+
:param pulumi.Input[str] metric_collection_mode: The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
137
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
138
|
+
:param pulumi.Input[str] name: The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
139
|
+
:param pulumi.Input[str] secret_access_key: The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
137
140
|
"""
|
|
138
141
|
if access_key_id is not None:
|
|
139
142
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
|
@@ -152,7 +155,7 @@ class _AwsGovcloudLinkAccountState:
|
|
|
152
155
|
@pulumi.getter(name="accessKeyId")
|
|
153
156
|
def access_key_id(self) -> Optional[pulumi.Input[str]]:
|
|
154
157
|
"""
|
|
155
|
-
The
|
|
158
|
+
The Access Key used to programmatically access the AWS GovCloud account.
|
|
156
159
|
"""
|
|
157
160
|
return pulumi.get(self, "access_key_id")
|
|
158
161
|
|
|
@@ -176,7 +179,7 @@ class _AwsGovcloudLinkAccountState:
|
|
|
176
179
|
@pulumi.getter(name="awsAccountId")
|
|
177
180
|
def aws_account_id(self) -> Optional[pulumi.Input[str]]:
|
|
178
181
|
"""
|
|
179
|
-
The
|
|
182
|
+
The ID of the AWS GovCloud account.
|
|
180
183
|
"""
|
|
181
184
|
return pulumi.get(self, "aws_account_id")
|
|
182
185
|
|
|
@@ -188,7 +191,8 @@ class _AwsGovcloudLinkAccountState:
|
|
|
188
191
|
@pulumi.getter(name="metricCollectionMode")
|
|
189
192
|
def metric_collection_mode(self) -> Optional[pulumi.Input[str]]:
|
|
190
193
|
"""
|
|
191
|
-
|
|
194
|
+
The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
195
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
192
196
|
"""
|
|
193
197
|
return pulumi.get(self, "metric_collection_mode")
|
|
194
198
|
|
|
@@ -200,7 +204,7 @@ class _AwsGovcloudLinkAccountState:
|
|
|
200
204
|
@pulumi.getter
|
|
201
205
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
202
206
|
"""
|
|
203
|
-
The linked account
|
|
207
|
+
The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
204
208
|
"""
|
|
205
209
|
return pulumi.get(self, "name")
|
|
206
210
|
|
|
@@ -212,7 +216,7 @@ class _AwsGovcloudLinkAccountState:
|
|
|
212
216
|
@pulumi.getter(name="secretAccessKey")
|
|
213
217
|
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
|
214
218
|
"""
|
|
215
|
-
The
|
|
219
|
+
The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
216
220
|
"""
|
|
217
221
|
return pulumi.get(self, "secret_access_key")
|
|
218
222
|
|
|
@@ -236,7 +240,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
236
240
|
"""
|
|
237
241
|
> **IMPORTANT!** This resource is in alpha state, and could still contain issues and missing functionality. If you encounter any issue please create a ticket on Github with all the required information.
|
|
238
242
|
|
|
239
|
-
Use this resource to link an
|
|
243
|
+
Use this resource to link an AWS GovCloud account to New Relic.
|
|
240
244
|
|
|
241
245
|
## Prerequisite
|
|
242
246
|
|
|
@@ -253,17 +257,17 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
253
257
|
import pulumi_newrelic as newrelic
|
|
254
258
|
|
|
255
259
|
foo = newrelic.cloud.AwsGovcloudLinkAccount("foo",
|
|
256
|
-
account_id="
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
secret_access_key="
|
|
260
|
+
account_id="1234567",
|
|
261
|
+
name="My New Relic - AWS GovCloud Linked Account",
|
|
262
|
+
metric_collection_mode="PUSH",
|
|
263
|
+
aws_account_id="<Your AWS GovCloud Account's ID>",
|
|
264
|
+
access_key_id="<Your AWS GovCloud Account's Access Key ID>",
|
|
265
|
+
secret_access_key="<Your AWS GovCloud Account's Secret Access Key>")
|
|
262
266
|
```
|
|
263
267
|
|
|
264
268
|
## Import
|
|
265
269
|
|
|
266
|
-
Linked
|
|
270
|
+
Linked AWS GovCloud accounts can be imported using the `id`, e.g.
|
|
267
271
|
|
|
268
272
|
bash
|
|
269
273
|
|
|
@@ -273,12 +277,13 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
273
277
|
|
|
274
278
|
:param str resource_name: The name of the resource.
|
|
275
279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
276
|
-
:param pulumi.Input[str] access_key_id: The
|
|
280
|
+
:param pulumi.Input[str] access_key_id: The Access Key used to programmatically access the AWS GovCloud account.
|
|
277
281
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
278
|
-
:param pulumi.Input[str] aws_account_id: The
|
|
279
|
-
:param pulumi.Input[str] metric_collection_mode:
|
|
280
|
-
|
|
281
|
-
:param pulumi.Input[str]
|
|
282
|
+
:param pulumi.Input[str] aws_account_id: The ID of the AWS GovCloud account.
|
|
283
|
+
:param pulumi.Input[str] metric_collection_mode: The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
284
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
285
|
+
:param pulumi.Input[str] name: The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
286
|
+
:param pulumi.Input[str] secret_access_key: The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
282
287
|
"""
|
|
283
288
|
...
|
|
284
289
|
@overload
|
|
@@ -289,7 +294,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
289
294
|
"""
|
|
290
295
|
> **IMPORTANT!** This resource is in alpha state, and could still contain issues and missing functionality. If you encounter any issue please create a ticket on Github with all the required information.
|
|
291
296
|
|
|
292
|
-
Use this resource to link an
|
|
297
|
+
Use this resource to link an AWS GovCloud account to New Relic.
|
|
293
298
|
|
|
294
299
|
## Prerequisite
|
|
295
300
|
|
|
@@ -306,17 +311,17 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
306
311
|
import pulumi_newrelic as newrelic
|
|
307
312
|
|
|
308
313
|
foo = newrelic.cloud.AwsGovcloudLinkAccount("foo",
|
|
309
|
-
account_id="
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
secret_access_key="
|
|
314
|
+
account_id="1234567",
|
|
315
|
+
name="My New Relic - AWS GovCloud Linked Account",
|
|
316
|
+
metric_collection_mode="PUSH",
|
|
317
|
+
aws_account_id="<Your AWS GovCloud Account's ID>",
|
|
318
|
+
access_key_id="<Your AWS GovCloud Account's Access Key ID>",
|
|
319
|
+
secret_access_key="<Your AWS GovCloud Account's Secret Access Key>")
|
|
315
320
|
```
|
|
316
321
|
|
|
317
322
|
## Import
|
|
318
323
|
|
|
319
|
-
Linked
|
|
324
|
+
Linked AWS GovCloud accounts can be imported using the `id`, e.g.
|
|
320
325
|
|
|
321
326
|
bash
|
|
322
327
|
|
|
@@ -391,12 +396,13 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
391
396
|
:param str resource_name: The unique name of the resulting resource.
|
|
392
397
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
393
398
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
394
|
-
:param pulumi.Input[str] access_key_id: The
|
|
399
|
+
:param pulumi.Input[str] access_key_id: The Access Key used to programmatically access the AWS GovCloud account.
|
|
395
400
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
|
396
|
-
:param pulumi.Input[str] aws_account_id: The
|
|
397
|
-
:param pulumi.Input[str] metric_collection_mode:
|
|
398
|
-
|
|
399
|
-
:param pulumi.Input[str]
|
|
401
|
+
:param pulumi.Input[str] aws_account_id: The ID of the AWS GovCloud account.
|
|
402
|
+
:param pulumi.Input[str] metric_collection_mode: The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
403
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
404
|
+
:param pulumi.Input[str] name: The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
405
|
+
:param pulumi.Input[str] secret_access_key: The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
400
406
|
"""
|
|
401
407
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
402
408
|
|
|
@@ -414,7 +420,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
414
420
|
@pulumi.getter(name="accessKeyId")
|
|
415
421
|
def access_key_id(self) -> pulumi.Output[str]:
|
|
416
422
|
"""
|
|
417
|
-
The
|
|
423
|
+
The Access Key used to programmatically access the AWS GovCloud account.
|
|
418
424
|
"""
|
|
419
425
|
return pulumi.get(self, "access_key_id")
|
|
420
426
|
|
|
@@ -430,7 +436,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
430
436
|
@pulumi.getter(name="awsAccountId")
|
|
431
437
|
def aws_account_id(self) -> pulumi.Output[str]:
|
|
432
438
|
"""
|
|
433
|
-
The
|
|
439
|
+
The ID of the AWS GovCloud account.
|
|
434
440
|
"""
|
|
435
441
|
return pulumi.get(self, "aws_account_id")
|
|
436
442
|
|
|
@@ -438,7 +444,8 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
438
444
|
@pulumi.getter(name="metricCollectionMode")
|
|
439
445
|
def metric_collection_mode(self) -> pulumi.Output[Optional[str]]:
|
|
440
446
|
"""
|
|
441
|
-
|
|
447
|
+
The mode by which metric data is to be collected from the linked AWS GovCloud account. Use `PUSH` for Metric Streams and `PULL` for API Polling based metric collection respectively.
|
|
448
|
+
- Note: Altering the `metric_collection_mode` of an already applied `cloud.AwsGovcloudLinkAccount` resource shall trigger a recreation of the resource, instead of an update.
|
|
442
449
|
"""
|
|
443
450
|
return pulumi.get(self, "metric_collection_mode")
|
|
444
451
|
|
|
@@ -446,7 +453,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
446
453
|
@pulumi.getter
|
|
447
454
|
def name(self) -> pulumi.Output[str]:
|
|
448
455
|
"""
|
|
449
|
-
The linked account
|
|
456
|
+
The name/identifier of the AWS GovCloud - New Relic 'linked' account.
|
|
450
457
|
"""
|
|
451
458
|
return pulumi.get(self, "name")
|
|
452
459
|
|
|
@@ -454,7 +461,7 @@ class AwsGovcloudLinkAccount(pulumi.CustomResource):
|
|
|
454
461
|
@pulumi.getter(name="secretAccessKey")
|
|
455
462
|
def secret_access_key(self) -> pulumi.Output[str]:
|
|
456
463
|
"""
|
|
457
|
-
The
|
|
464
|
+
The Secret Access Key used to programmatically access the AWS GovCloud account.
|
|
458
465
|
"""
|
|
459
466
|
return pulumi.get(self, "secret_access_key")
|
|
460
467
|
|
|
@@ -1023,7 +1023,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1023
1023
|
The `nrql` block supports the following arguments:
|
|
1024
1024
|
|
|
1025
1025
|
- `query` - (Required) The NRQL query to execute for the condition.
|
|
1026
|
-
- `data_account_id` - (Optional)
|
|
1026
|
+
- `data_account_id` - (Optional) The account ID to use for the alert condition's query as specified in the the `query` field. If `data_account_id` is not specified, then the condition's query will be evaluated against the `account_id`. Note that the `account_id` must have read privileges for the `data_account_id` or else the condition will be invalid.
|
|
1027
1027
|
- `evaluation_offset` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. Represented in minutes and must be within 1-20 minutes (inclusive). NRQL queries are evaluated based on their `aggregation_window` size. The start time depends on this value. It's recommended to set this to 3 windows. An offset of less than 3 windows will trigger incidents sooner, but you may see more false positives and negatives due to data latency. With `evaluation_offset` set to 3 windows and an `aggregation_window` of 60 seconds, the NRQL time window applied to your query will be: `SINCE 3 minutes ago UNTIL 2 minutes ago`. `evaluation_offset` cannot be set with `aggregation_method`, `aggregation_delay`, or `aggregation_timer`.<br>
|
|
1028
1028
|
- `since_value` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. The value to be used in the `SINCE <X> minutes ago` clause for the NRQL query. Must be between 1-20 (inclusive). <br>
|
|
1029
1029
|
|
|
@@ -1322,7 +1322,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1322
1322
|
The `nrql` block supports the following arguments:
|
|
1323
1323
|
|
|
1324
1324
|
- `query` - (Required) The NRQL query to execute for the condition.
|
|
1325
|
-
- `data_account_id` - (Optional)
|
|
1325
|
+
- `data_account_id` - (Optional) The account ID to use for the alert condition's query as specified in the the `query` field. If `data_account_id` is not specified, then the condition's query will be evaluated against the `account_id`. Note that the `account_id` must have read privileges for the `data_account_id` or else the condition will be invalid.
|
|
1326
1326
|
- `evaluation_offset` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. Represented in minutes and must be within 1-20 minutes (inclusive). NRQL queries are evaluated based on their `aggregation_window` size. The start time depends on this value. It's recommended to set this to 3 windows. An offset of less than 3 windows will trigger incidents sooner, but you may see more false positives and negatives due to data latency. With `evaluation_offset` set to 3 windows and an `aggregation_window` of 60 seconds, the NRQL time window applied to your query will be: `SINCE 3 minutes ago UNTIL 2 minutes ago`. `evaluation_offset` cannot be set with `aggregation_method`, `aggregation_delay`, or `aggregation_timer`.<br>
|
|
1327
1327
|
- `since_value` - (Optional) **DEPRECATED:** Use `aggregation_method` instead. The value to be used in the `SINCE <X> minutes ago` clause for the NRQL query. Must be between 1-20 (inclusive). <br>
|
|
1328
1328
|
|
pulumi_newrelic/outputs.py
CHANGED
|
@@ -1453,7 +1453,7 @@ class NrqlAlertConditionNrql(dict):
|
|
|
1453
1453
|
evaluation_offset: Optional[int] = None,
|
|
1454
1454
|
since_value: Optional[str] = None):
|
|
1455
1455
|
"""
|
|
1456
|
-
:param str data_account_id:
|
|
1456
|
+
:param str data_account_id: The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
|
|
1457
1457
|
:param int evaluation_offset: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `evaluation_offset`.
|
|
1458
1458
|
:param str since_value: NRQL queries are evaluated in one-minute time windows. The start time depends on the value you provide in the NRQL condition's `since_value`.
|
|
1459
1459
|
"""
|
|
@@ -1474,7 +1474,7 @@ class NrqlAlertConditionNrql(dict):
|
|
|
1474
1474
|
@pulumi.getter(name="dataAccountId")
|
|
1475
1475
|
def data_account_id(self) -> Optional[str]:
|
|
1476
1476
|
"""
|
|
1477
|
-
|
|
1477
|
+
The New Relic account ID to use as the basis for the NRQL alert condition's `query`; will default to `account_id` if unspecified.
|
|
1478
1478
|
"""
|
|
1479
1479
|
return pulumi.get(self, "data_account_id")
|
|
1480
1480
|
|
{pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=q0NdPqgZC1kS4XOkgRZa7J_iuaWxIkMKXQfOnC5CysU,11535
|
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=70CkqfnaV3xViBsSreQggp7UL3FKVxdDg2EgbLR5Sjg,797096
|
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_newrelic/account_management.py,sha256=qFD7xsT6kNFNY3ZEO-15E4T6mSIOQ6uw_Goqf7-NkTU,8963
|
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=QNF_jzaDJLKD78qxtBnDpRaAVMJigmGYQtSWuCEIC7g,21825
|
|
@@ -33,16 +33,16 @@ pulumi_newrelic/log_parsing_rule.py,sha256=HOCj_6SaSGNkJdhXalrETqRapE550cdnpe1PJ
|
|
|
33
33
|
pulumi_newrelic/monitor_downtime.py,sha256=OKeKMevKKOTn4t3C2uhRX4rXuG-OikhQZTmRy6JtBfQ,40862
|
|
34
34
|
pulumi_newrelic/notification_channel.py,sha256=5M1toakKA-65WA5pec0HMp4t7eX9OkcSFs53pNcUQTI,47179
|
|
35
35
|
pulumi_newrelic/notification_destination.py,sha256=l7BC67LiRM4EXCtf3eNnWnrb-o1P7_9RmpsC4Rga6q4,39181
|
|
36
|
-
pulumi_newrelic/nrql_alert_condition.py,sha256=
|
|
36
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=IUl0PcymIcySKWesPYYKHN5a6NWFzoAeORJh1BDZnog,111967
|
|
37
37
|
pulumi_newrelic/nrql_drop_rule.py,sha256=T33XlLYt7RfQQeazJzF2_GtLrJL1lxiG1PmXRdFL8eA,17712
|
|
38
38
|
pulumi_newrelic/obfuscation_expression.py,sha256=V3YlnP1ZHyCbWnCgykm6uOHgyj0IUYqxpWllM7z43fE,12517
|
|
39
39
|
pulumi_newrelic/obfuscation_rule.py,sha256=HzyDhyK3-qkrgiERkAZs0HiC1ToH8vaeXXoLjx6fyss,18043
|
|
40
40
|
pulumi_newrelic/one_dashboard.py,sha256=91XJ8Dic5u66ZvUx7-uyZpNZJ306BOq9mLBULMe7-oQ,20854
|
|
41
41
|
pulumi_newrelic/one_dashboard_json.py,sha256=EZqg6akwsh-SqsRjCmQzDjgsjvbIfKsX2zt3vjQ8bYE,12796
|
|
42
42
|
pulumi_newrelic/one_dashboard_raw.py,sha256=__3ZuSPVubBaC5iPa9V6q1SG7lHFcpNdVsLXQie5c7U,23668
|
|
43
|
-
pulumi_newrelic/outputs.py,sha256=
|
|
43
|
+
pulumi_newrelic/outputs.py,sha256=GpBj8cVexHhJXbpzkqZBbcaOSQkLybzZ46vEKFaREPg,576475
|
|
44
44
|
pulumi_newrelic/provider.py,sha256=OjBqZT1L0Jt_1-c3zMSSGA03zIZjgif7RrThna-ojng,18493
|
|
45
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
|
45
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=uTDT4MpHqx_WT6GekVUq9gzJRTaobzgdXgeNlPVXDDo,85
|
|
46
46
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
pulumi_newrelic/service_level.py,sha256=Dk_AoEFTmaJAg5v8SKBN4-a4T-MGXDbPubxsnB98sFk,28980
|
|
48
48
|
pulumi_newrelic/user.py,sha256=guVvPGAeuR-mQ6_bA_MvBP7GY2grEmnbdNkc_5hs1us,19116
|
|
@@ -50,7 +50,7 @@ pulumi_newrelic/workflow.py,sha256=Ka0qEJke18DRFRdDjDUgwZd-sbOufowesAUaWZLg85U,4
|
|
|
50
50
|
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
|
51
51
|
pulumi_newrelic/cloud/_inputs.py,sha256=4rFcDJGO0GjsfxZG8USBt-SPnXdyvjMbmtzqpqHSi7o,381862
|
|
52
52
|
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=xRgN1R3xWAG0q0sTv_5Vba1h0P5KtH3jk10I7ZokvkQ,65413
|
|
53
|
-
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=
|
|
53
|
+
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=niAjN22F7UB4XYKNME7C4zuOzLpeSvf2OfMe5-EFVbQ,23727
|
|
54
54
|
pulumi_newrelic/cloud/aws_integrations.py,sha256=PggxGS3ECz71g6VydQGUpr9Z10wMQT-AKQCJku29Py8,128568
|
|
55
55
|
pulumi_newrelic/cloud/aws_link_account.py,sha256=-MfVXLan_qDRuMkgy54dJ3h6tPgCNLQDHPEw7R38PZY,15669
|
|
56
56
|
pulumi_newrelic/cloud/azure_integrations.py,sha256=Tr1j9QEMnTrNL1W7s7Jr3IhJTeGzE9CXhC7XrmASseQ,114191
|
|
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=-pj6W9dg9fB-jtnrTH8wnd7o_j
|
|
|
84
84
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=fwRaviLtkQ0ViK3V1W98npxcN_qBXFevwuHgHArl3m0,66220
|
|
85
85
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=EilBGvvvqmADHo1VPeWfQkCdc2GYRO8Dq9-lktE7Y3M,15776
|
|
86
86
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=7tqzQ9InEMRdfAr9K_vpLm-OCPHyIKEH4f8CT2BxaLQ,49116
|
|
87
|
-
pulumi_newrelic-5.38.
|
|
88
|
-
pulumi_newrelic-5.38.
|
|
89
|
-
pulumi_newrelic-5.38.
|
|
90
|
-
pulumi_newrelic-5.38.
|
|
87
|
+
pulumi_newrelic-5.38.1a1738600613.dist-info/METADATA,sha256=M8k4xLYaEDe6LqsVvMHOjUI3ktXlhLkRS_jm2Wrzz3A,3963
|
|
88
|
+
pulumi_newrelic-5.38.1a1738600613.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
89
|
+
pulumi_newrelic-5.38.1a1738600613.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
|
90
|
+
pulumi_newrelic-5.38.1a1738600613.dist-info/RECORD,,
|
{pulumi_newrelic-5.38.0a1736415260.dist-info → pulumi_newrelic-5.38.1a1738600613.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|