pulumi-newrelic 5.58.0a1764915474__py3-none-any.whl → 5.59.0a1768456783__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 +105 -0
- pulumi_newrelic/account_management.py +30 -2
- pulumi_newrelic/get_account.py +28 -15
- pulumi_newrelic/nrql_alert_condition.py +47 -0
- pulumi_newrelic/outputs.py +80 -0
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
|
@@ -55,6 +55,10 @@ __all__ = [
|
|
|
55
55
|
'NrqlAlertConditionCriticalPredictionArgsDict',
|
|
56
56
|
'NrqlAlertConditionNrqlArgs',
|
|
57
57
|
'NrqlAlertConditionNrqlArgsDict',
|
|
58
|
+
'NrqlAlertConditionOutlierConfigurationArgs',
|
|
59
|
+
'NrqlAlertConditionOutlierConfigurationArgsDict',
|
|
60
|
+
'NrqlAlertConditionOutlierConfigurationDbscanArgs',
|
|
61
|
+
'NrqlAlertConditionOutlierConfigurationDbscanArgsDict',
|
|
58
62
|
'NrqlAlertConditionTermArgs',
|
|
59
63
|
'NrqlAlertConditionTermArgsDict',
|
|
60
64
|
'NrqlAlertConditionTermPredictionArgs',
|
|
@@ -2241,6 +2245,107 @@ class NrqlAlertConditionNrqlArgs:
|
|
|
2241
2245
|
pulumi.set(self, "since_value", value)
|
|
2242
2246
|
|
|
2243
2247
|
|
|
2248
|
+
if not MYPY:
|
|
2249
|
+
class NrqlAlertConditionOutlierConfigurationArgsDict(TypedDict):
|
|
2250
|
+
dbscan: pulumi.Input['NrqlAlertConditionOutlierConfigurationDbscanArgsDict']
|
|
2251
|
+
"""
|
|
2252
|
+
BETA PREVIEW: the `dbscan` field is in limited release and only enabled for preview on a per-account basis. - Container for DBSCAN settings used to cluster data points and classify noise as outliers. Requires `epsilon` and `minimum_points`; optional `evaluation_group_facet` partitions data before analysis.
|
|
2253
|
+
"""
|
|
2254
|
+
elif False:
|
|
2255
|
+
NrqlAlertConditionOutlierConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
2256
|
+
|
|
2257
|
+
@pulumi.input_type
|
|
2258
|
+
class NrqlAlertConditionOutlierConfigurationArgs:
|
|
2259
|
+
def __init__(__self__, *,
|
|
2260
|
+
dbscan: pulumi.Input['NrqlAlertConditionOutlierConfigurationDbscanArgs']):
|
|
2261
|
+
"""
|
|
2262
|
+
:param pulumi.Input['NrqlAlertConditionOutlierConfigurationDbscanArgs'] dbscan: BETA PREVIEW: the `dbscan` field is in limited release and only enabled for preview on a per-account basis. - Container for DBSCAN settings used to cluster data points and classify noise as outliers. Requires `epsilon` and `minimum_points`; optional `evaluation_group_facet` partitions data before analysis.
|
|
2263
|
+
"""
|
|
2264
|
+
pulumi.set(__self__, "dbscan", dbscan)
|
|
2265
|
+
|
|
2266
|
+
@_builtins.property
|
|
2267
|
+
@pulumi.getter
|
|
2268
|
+
def dbscan(self) -> pulumi.Input['NrqlAlertConditionOutlierConfigurationDbscanArgs']:
|
|
2269
|
+
"""
|
|
2270
|
+
BETA PREVIEW: the `dbscan` field is in limited release and only enabled for preview on a per-account basis. - Container for DBSCAN settings used to cluster data points and classify noise as outliers. Requires `epsilon` and `minimum_points`; optional `evaluation_group_facet` partitions data before analysis.
|
|
2271
|
+
"""
|
|
2272
|
+
return pulumi.get(self, "dbscan")
|
|
2273
|
+
|
|
2274
|
+
@dbscan.setter
|
|
2275
|
+
def dbscan(self, value: pulumi.Input['NrqlAlertConditionOutlierConfigurationDbscanArgs']):
|
|
2276
|
+
pulumi.set(self, "dbscan", value)
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
if not MYPY:
|
|
2280
|
+
class NrqlAlertConditionOutlierConfigurationDbscanArgsDict(TypedDict):
|
|
2281
|
+
epsilon: pulumi.Input[_builtins.float]
|
|
2282
|
+
"""
|
|
2283
|
+
BETA PREVIEW: the `epsilon` field is in limited release and only enabled for preview on a per-account basis. - Radius (distance threshold) for DBSCAN in the units of the query result. Smaller values tighten clusters; larger values broaden them. Must be > 0.
|
|
2284
|
+
"""
|
|
2285
|
+
minimum_points: pulumi.Input[_builtins.int]
|
|
2286
|
+
"""
|
|
2287
|
+
BETA PREVIEW: the `minimum_points` field is in limited release and only enabled for preview on a per-account basis. - Minimum number of neighboring points needed to form a cluster. Must be >= 1.
|
|
2288
|
+
"""
|
|
2289
|
+
evaluation_group_facet: NotRequired[pulumi.Input[_builtins.str]]
|
|
2290
|
+
"""
|
|
2291
|
+
BETA PREVIEW: the `evaluation_group_facet` field is in limited release and only enabled for preview on a per-account basis. - Optional NRQL facet attribute used to segment data into groups (e.g. `host`, `region`) before running outlier detection. Omit to evaluate all results together.
|
|
2292
|
+
"""
|
|
2293
|
+
elif False:
|
|
2294
|
+
NrqlAlertConditionOutlierConfigurationDbscanArgsDict: TypeAlias = Mapping[str, Any]
|
|
2295
|
+
|
|
2296
|
+
@pulumi.input_type
|
|
2297
|
+
class NrqlAlertConditionOutlierConfigurationDbscanArgs:
|
|
2298
|
+
def __init__(__self__, *,
|
|
2299
|
+
epsilon: pulumi.Input[_builtins.float],
|
|
2300
|
+
minimum_points: pulumi.Input[_builtins.int],
|
|
2301
|
+
evaluation_group_facet: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2302
|
+
"""
|
|
2303
|
+
:param pulumi.Input[_builtins.float] epsilon: BETA PREVIEW: the `epsilon` field is in limited release and only enabled for preview on a per-account basis. - Radius (distance threshold) for DBSCAN in the units of the query result. Smaller values tighten clusters; larger values broaden them. Must be > 0.
|
|
2304
|
+
:param pulumi.Input[_builtins.int] minimum_points: BETA PREVIEW: the `minimum_points` field is in limited release and only enabled for preview on a per-account basis. - Minimum number of neighboring points needed to form a cluster. Must be >= 1.
|
|
2305
|
+
:param pulumi.Input[_builtins.str] evaluation_group_facet: BETA PREVIEW: the `evaluation_group_facet` field is in limited release and only enabled for preview on a per-account basis. - Optional NRQL facet attribute used to segment data into groups (e.g. `host`, `region`) before running outlier detection. Omit to evaluate all results together.
|
|
2306
|
+
"""
|
|
2307
|
+
pulumi.set(__self__, "epsilon", epsilon)
|
|
2308
|
+
pulumi.set(__self__, "minimum_points", minimum_points)
|
|
2309
|
+
if evaluation_group_facet is not None:
|
|
2310
|
+
pulumi.set(__self__, "evaluation_group_facet", evaluation_group_facet)
|
|
2311
|
+
|
|
2312
|
+
@_builtins.property
|
|
2313
|
+
@pulumi.getter
|
|
2314
|
+
def epsilon(self) -> pulumi.Input[_builtins.float]:
|
|
2315
|
+
"""
|
|
2316
|
+
BETA PREVIEW: the `epsilon` field is in limited release and only enabled for preview on a per-account basis. - Radius (distance threshold) for DBSCAN in the units of the query result. Smaller values tighten clusters; larger values broaden them. Must be > 0.
|
|
2317
|
+
"""
|
|
2318
|
+
return pulumi.get(self, "epsilon")
|
|
2319
|
+
|
|
2320
|
+
@epsilon.setter
|
|
2321
|
+
def epsilon(self, value: pulumi.Input[_builtins.float]):
|
|
2322
|
+
pulumi.set(self, "epsilon", value)
|
|
2323
|
+
|
|
2324
|
+
@_builtins.property
|
|
2325
|
+
@pulumi.getter(name="minimumPoints")
|
|
2326
|
+
def minimum_points(self) -> pulumi.Input[_builtins.int]:
|
|
2327
|
+
"""
|
|
2328
|
+
BETA PREVIEW: the `minimum_points` field is in limited release and only enabled for preview on a per-account basis. - Minimum number of neighboring points needed to form a cluster. Must be >= 1.
|
|
2329
|
+
"""
|
|
2330
|
+
return pulumi.get(self, "minimum_points")
|
|
2331
|
+
|
|
2332
|
+
@minimum_points.setter
|
|
2333
|
+
def minimum_points(self, value: pulumi.Input[_builtins.int]):
|
|
2334
|
+
pulumi.set(self, "minimum_points", value)
|
|
2335
|
+
|
|
2336
|
+
@_builtins.property
|
|
2337
|
+
@pulumi.getter(name="evaluationGroupFacet")
|
|
2338
|
+
def evaluation_group_facet(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2339
|
+
"""
|
|
2340
|
+
BETA PREVIEW: the `evaluation_group_facet` field is in limited release and only enabled for preview on a per-account basis. - Optional NRQL facet attribute used to segment data into groups (e.g. `host`, `region`) before running outlier detection. Omit to evaluate all results together.
|
|
2341
|
+
"""
|
|
2342
|
+
return pulumi.get(self, "evaluation_group_facet")
|
|
2343
|
+
|
|
2344
|
+
@evaluation_group_facet.setter
|
|
2345
|
+
def evaluation_group_facet(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2346
|
+
pulumi.set(self, "evaluation_group_facet", value)
|
|
2347
|
+
|
|
2348
|
+
|
|
2244
2349
|
if not MYPY:
|
|
2245
2350
|
class NrqlAlertConditionTermArgsDict(TypedDict):
|
|
2246
2351
|
threshold: pulumi.Input[_builtins.float]
|
|
@@ -59,16 +59,20 @@ class AccountManagementArgs:
|
|
|
59
59
|
class _AccountManagementState:
|
|
60
60
|
def __init__(__self__, *,
|
|
61
61
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
62
|
-
region: Optional[pulumi.Input[_builtins.str]] = None
|
|
62
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
63
|
+
status: Optional[pulumi.Input[_builtins.str]] = None):
|
|
63
64
|
"""
|
|
64
65
|
Input properties used for looking up and filtering AccountManagement resources.
|
|
65
66
|
:param pulumi.Input[_builtins.str] name: The name of the Account.
|
|
66
67
|
:param pulumi.Input[_builtins.str] region: The region code of the account. One of: `us01`, `eu01`.
|
|
68
|
+
:param pulumi.Input[_builtins.str] status: Status of the account - active or canceled
|
|
67
69
|
"""
|
|
68
70
|
if name is not None:
|
|
69
71
|
pulumi.set(__self__, "name", name)
|
|
70
72
|
if region is not None:
|
|
71
73
|
pulumi.set(__self__, "region", region)
|
|
74
|
+
if status is not None:
|
|
75
|
+
pulumi.set(__self__, "status", status)
|
|
72
76
|
|
|
73
77
|
@_builtins.property
|
|
74
78
|
@pulumi.getter
|
|
@@ -94,6 +98,18 @@ class _AccountManagementState:
|
|
|
94
98
|
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95
99
|
pulumi.set(self, "region", value)
|
|
96
100
|
|
|
101
|
+
@_builtins.property
|
|
102
|
+
@pulumi.getter
|
|
103
|
+
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
104
|
+
"""
|
|
105
|
+
Status of the account - active or canceled
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "status")
|
|
108
|
+
|
|
109
|
+
@status.setter
|
|
110
|
+
def status(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
111
|
+
pulumi.set(self, "status", value)
|
|
112
|
+
|
|
97
113
|
|
|
98
114
|
@pulumi.type_token("newrelic:index/accountManagement:AccountManagement")
|
|
99
115
|
class AccountManagement(pulumi.CustomResource):
|
|
@@ -199,6 +215,7 @@ class AccountManagement(pulumi.CustomResource):
|
|
|
199
215
|
if region is None and not opts.urn:
|
|
200
216
|
raise TypeError("Missing required property 'region'")
|
|
201
217
|
__props__.__dict__["region"] = region
|
|
218
|
+
__props__.__dict__["status"] = None
|
|
202
219
|
super(AccountManagement, __self__).__init__(
|
|
203
220
|
'newrelic:index/accountManagement:AccountManagement',
|
|
204
221
|
resource_name,
|
|
@@ -210,7 +227,8 @@ class AccountManagement(pulumi.CustomResource):
|
|
|
210
227
|
id: pulumi.Input[str],
|
|
211
228
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
212
229
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
213
|
-
region: Optional[pulumi.Input[_builtins.str]] = None
|
|
230
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
231
|
+
status: Optional[pulumi.Input[_builtins.str]] = None) -> 'AccountManagement':
|
|
214
232
|
"""
|
|
215
233
|
Get an existing AccountManagement resource's state with the given name, id, and optional extra
|
|
216
234
|
properties used to qualify the lookup.
|
|
@@ -220,6 +238,7 @@ class AccountManagement(pulumi.CustomResource):
|
|
|
220
238
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
221
239
|
:param pulumi.Input[_builtins.str] name: The name of the Account.
|
|
222
240
|
:param pulumi.Input[_builtins.str] region: The region code of the account. One of: `us01`, `eu01`.
|
|
241
|
+
:param pulumi.Input[_builtins.str] status: Status of the account - active or canceled
|
|
223
242
|
"""
|
|
224
243
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
225
244
|
|
|
@@ -227,6 +246,7 @@ class AccountManagement(pulumi.CustomResource):
|
|
|
227
246
|
|
|
228
247
|
__props__.__dict__["name"] = name
|
|
229
248
|
__props__.__dict__["region"] = region
|
|
249
|
+
__props__.__dict__["status"] = status
|
|
230
250
|
return AccountManagement(resource_name, opts=opts, __props__=__props__)
|
|
231
251
|
|
|
232
252
|
@_builtins.property
|
|
@@ -245,3 +265,11 @@ class AccountManagement(pulumi.CustomResource):
|
|
|
245
265
|
"""
|
|
246
266
|
return pulumi.get(self, "region")
|
|
247
267
|
|
|
268
|
+
@_builtins.property
|
|
269
|
+
@pulumi.getter
|
|
270
|
+
def status(self) -> pulumi.Output[_builtins.str]:
|
|
271
|
+
"""
|
|
272
|
+
Status of the account - active or canceled
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "status")
|
|
275
|
+
|
pulumi_newrelic/get_account.py
CHANGED
|
@@ -26,7 +26,7 @@ class GetAccountResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getAccount.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, account_id=None, id=None, name=None, scope=None):
|
|
29
|
+
def __init__(__self__, account_id=None, id=None, name=None, region=None, scope=None):
|
|
30
30
|
if account_id and not isinstance(account_id, str):
|
|
31
31
|
raise TypeError("Expected argument 'account_id' to be a str")
|
|
32
32
|
pulumi.set(__self__, "account_id", account_id)
|
|
@@ -36,6 +36,9 @@ class GetAccountResult:
|
|
|
36
36
|
if name and not isinstance(name, str):
|
|
37
37
|
raise TypeError("Expected argument 'name' to be a str")
|
|
38
38
|
pulumi.set(__self__, "name", name)
|
|
39
|
+
if region and not isinstance(region, str):
|
|
40
|
+
raise TypeError("Expected argument 'region' to be a str")
|
|
41
|
+
pulumi.set(__self__, "region", region)
|
|
39
42
|
if scope and not isinstance(scope, str):
|
|
40
43
|
raise TypeError("Expected argument 'scope' to be a str")
|
|
41
44
|
pulumi.set(__self__, "scope", scope)
|
|
@@ -58,6 +61,11 @@ class GetAccountResult:
|
|
|
58
61
|
def name(self) -> Optional[_builtins.str]:
|
|
59
62
|
return pulumi.get(self, "name")
|
|
60
63
|
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def region(self) -> _builtins.str:
|
|
67
|
+
return pulumi.get(self, "region")
|
|
68
|
+
|
|
61
69
|
@_builtins.property
|
|
62
70
|
@pulumi.getter
|
|
63
71
|
def scope(self) -> Optional[_builtins.str]:
|
|
@@ -73,6 +81,7 @@ class AwaitableGetAccountResult(GetAccountResult):
|
|
|
73
81
|
account_id=self.account_id,
|
|
74
82
|
id=self.id,
|
|
75
83
|
name=self.name,
|
|
84
|
+
region=self.region,
|
|
76
85
|
scope=self.scope)
|
|
77
86
|
|
|
78
87
|
|
|
@@ -81,9 +90,11 @@ def get_account(account_id: Optional[_builtins.str] = None,
|
|
|
81
90
|
scope: Optional[_builtins.str] = None,
|
|
82
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountResult:
|
|
83
92
|
"""
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
93
|
+
This data source allows you to retrieve information about a specific account in New Relic.
|
|
94
|
+
|
|
95
|
+
## Overview
|
|
96
|
+
|
|
97
|
+
You can locate accounts using either their `account_id` or `name`. However, only one of these attributes can be specified at a time. If neither attribute is provided, the provider's default `account_id` will be used.
|
|
87
98
|
|
|
88
99
|
## Example Usage
|
|
89
100
|
|
|
@@ -91,13 +102,12 @@ def get_account(account_id: Optional[_builtins.str] = None,
|
|
|
91
102
|
import pulumi
|
|
92
103
|
import pulumi_newrelic as newrelic
|
|
93
104
|
|
|
94
|
-
|
|
105
|
+
example = newrelic.get_account(name="Test Account")
|
|
95
106
|
```
|
|
96
107
|
|
|
97
108
|
|
|
98
|
-
:param _builtins.str account_id: The account
|
|
99
|
-
:param _builtins.str name: The account
|
|
100
|
-
:param _builtins.str scope: The scope of the account in New Relic. Valid values are "global" and "in_region". Defaults to "in_region".
|
|
109
|
+
:param _builtins.str account_id: The unique identifier of the account in New Relic. This must be an integer.
|
|
110
|
+
:param _builtins.str name: The name of the account in New Relic. This must be a string.
|
|
101
111
|
"""
|
|
102
112
|
__args__ = dict()
|
|
103
113
|
__args__['accountId'] = account_id
|
|
@@ -110,15 +120,18 @@ def get_account(account_id: Optional[_builtins.str] = None,
|
|
|
110
120
|
account_id=pulumi.get(__ret__, 'account_id'),
|
|
111
121
|
id=pulumi.get(__ret__, 'id'),
|
|
112
122
|
name=pulumi.get(__ret__, 'name'),
|
|
123
|
+
region=pulumi.get(__ret__, 'region'),
|
|
113
124
|
scope=pulumi.get(__ret__, 'scope'))
|
|
114
125
|
def get_account_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
115
126
|
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
116
127
|
scope: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
117
128
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountResult]:
|
|
118
129
|
"""
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
130
|
+
This data source allows you to retrieve information about a specific account in New Relic.
|
|
131
|
+
|
|
132
|
+
## Overview
|
|
133
|
+
|
|
134
|
+
You can locate accounts using either their `account_id` or `name`. However, only one of these attributes can be specified at a time. If neither attribute is provided, the provider's default `account_id` will be used.
|
|
122
135
|
|
|
123
136
|
## Example Usage
|
|
124
137
|
|
|
@@ -126,13 +139,12 @@ def get_account_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]
|
|
|
126
139
|
import pulumi
|
|
127
140
|
import pulumi_newrelic as newrelic
|
|
128
141
|
|
|
129
|
-
|
|
142
|
+
example = newrelic.get_account(name="Test Account")
|
|
130
143
|
```
|
|
131
144
|
|
|
132
145
|
|
|
133
|
-
:param _builtins.str account_id: The account
|
|
134
|
-
:param _builtins.str name: The account
|
|
135
|
-
:param _builtins.str scope: The scope of the account in New Relic. Valid values are "global" and "in_region". Defaults to "in_region".
|
|
146
|
+
:param _builtins.str account_id: The unique identifier of the account in New Relic. This must be an integer.
|
|
147
|
+
:param _builtins.str name: The name of the account in New Relic. This must be a string.
|
|
136
148
|
"""
|
|
137
149
|
__args__ = dict()
|
|
138
150
|
__args__['accountId'] = account_id
|
|
@@ -144,4 +156,5 @@ def get_account_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]
|
|
|
144
156
|
account_id=pulumi.get(__response__, 'account_id'),
|
|
145
157
|
id=pulumi.get(__response__, 'id'),
|
|
146
158
|
name=pulumi.get(__response__, 'name'),
|
|
159
|
+
region=pulumi.get(__response__, 'region'),
|
|
147
160
|
scope=pulumi.get(__response__, 'scope')))
|
|
@@ -40,6 +40,7 @@ class NrqlAlertConditionArgs:
|
|
|
40
40
|
ignore_on_expected_termination: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
41
41
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
42
42
|
open_violation_on_expiration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
43
|
+
outlier_configuration: Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']] = None,
|
|
43
44
|
runbook_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
44
45
|
signal_seasonality: Optional[pulumi.Input[_builtins.str]] = None,
|
|
45
46
|
slide_by: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -71,6 +72,7 @@ class NrqlAlertConditionArgs:
|
|
|
71
72
|
:param pulumi.Input[_builtins.bool] ignore_on_expected_termination: Whether an alert condition should ignore expected termination of a signal when considering whether to create a loss of signal incident. Defaults to false.
|
|
72
73
|
:param pulumi.Input[_builtins.str] name: The title of the condition.
|
|
73
74
|
:param pulumi.Input[_builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
|
|
75
|
+
:param pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs'] outlier_configuration: BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
74
76
|
:param pulumi.Input[_builtins.str] runbook_url: Runbook URL to display in notifications.
|
|
75
77
|
:param pulumi.Input[_builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
|
|
76
78
|
:param pulumi.Input[_builtins.int] slide_by: Gathers data in overlapping time windows to smooth the chart line, making it easier to spot trends. The `slide_by` value is specified in seconds and must be smaller than and a factor of the `aggregation_window`.
|
|
@@ -120,6 +122,8 @@ class NrqlAlertConditionArgs:
|
|
|
120
122
|
pulumi.set(__self__, "name", name)
|
|
121
123
|
if open_violation_on_expiration is not None:
|
|
122
124
|
pulumi.set(__self__, "open_violation_on_expiration", open_violation_on_expiration)
|
|
125
|
+
if outlier_configuration is not None:
|
|
126
|
+
pulumi.set(__self__, "outlier_configuration", outlier_configuration)
|
|
123
127
|
if runbook_url is not None:
|
|
124
128
|
pulumi.set(__self__, "runbook_url", runbook_url)
|
|
125
129
|
if signal_seasonality is not None:
|
|
@@ -375,6 +379,18 @@ class NrqlAlertConditionArgs:
|
|
|
375
379
|
def open_violation_on_expiration(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
376
380
|
pulumi.set(self, "open_violation_on_expiration", value)
|
|
377
381
|
|
|
382
|
+
@_builtins.property
|
|
383
|
+
@pulumi.getter(name="outlierConfiguration")
|
|
384
|
+
def outlier_configuration(self) -> Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']]:
|
|
385
|
+
"""
|
|
386
|
+
BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
387
|
+
"""
|
|
388
|
+
return pulumi.get(self, "outlier_configuration")
|
|
389
|
+
|
|
390
|
+
@outlier_configuration.setter
|
|
391
|
+
def outlier_configuration(self, value: Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']]):
|
|
392
|
+
pulumi.set(self, "outlier_configuration", value)
|
|
393
|
+
|
|
378
394
|
@_builtins.property
|
|
379
395
|
@pulumi.getter(name="runbookUrl")
|
|
380
396
|
def runbook_url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -522,6 +538,7 @@ class _NrqlAlertConditionState:
|
|
|
522
538
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
523
539
|
nrql: Optional[pulumi.Input['NrqlAlertConditionNrqlArgs']] = None,
|
|
524
540
|
open_violation_on_expiration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
541
|
+
outlier_configuration: Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']] = None,
|
|
525
542
|
policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
526
543
|
runbook_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
527
544
|
signal_seasonality: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -554,6 +571,7 @@ class _NrqlAlertConditionState:
|
|
|
554
571
|
:param pulumi.Input[_builtins.str] name: The title of the condition.
|
|
555
572
|
:param pulumi.Input['NrqlAlertConditionNrqlArgs'] nrql: A NRQL query. See NRQL below for details.
|
|
556
573
|
:param pulumi.Input[_builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
|
|
574
|
+
:param pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs'] outlier_configuration: BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
557
575
|
:param pulumi.Input[_builtins.str] policy_id: The ID of the policy where this condition should be used.
|
|
558
576
|
:param pulumi.Input[_builtins.str] runbook_url: Runbook URL to display in notifications.
|
|
559
577
|
:param pulumi.Input[_builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
|
|
@@ -606,6 +624,8 @@ class _NrqlAlertConditionState:
|
|
|
606
624
|
pulumi.set(__self__, "nrql", nrql)
|
|
607
625
|
if open_violation_on_expiration is not None:
|
|
608
626
|
pulumi.set(__self__, "open_violation_on_expiration", open_violation_on_expiration)
|
|
627
|
+
if outlier_configuration is not None:
|
|
628
|
+
pulumi.set(__self__, "outlier_configuration", outlier_configuration)
|
|
609
629
|
if policy_id is not None:
|
|
610
630
|
pulumi.set(__self__, "policy_id", policy_id)
|
|
611
631
|
if runbook_url is not None:
|
|
@@ -863,6 +883,18 @@ class _NrqlAlertConditionState:
|
|
|
863
883
|
def open_violation_on_expiration(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
864
884
|
pulumi.set(self, "open_violation_on_expiration", value)
|
|
865
885
|
|
|
886
|
+
@_builtins.property
|
|
887
|
+
@pulumi.getter(name="outlierConfiguration")
|
|
888
|
+
def outlier_configuration(self) -> Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']]:
|
|
889
|
+
"""
|
|
890
|
+
BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
891
|
+
"""
|
|
892
|
+
return pulumi.get(self, "outlier_configuration")
|
|
893
|
+
|
|
894
|
+
@outlier_configuration.setter
|
|
895
|
+
def outlier_configuration(self, value: Optional[pulumi.Input['NrqlAlertConditionOutlierConfigurationArgs']]):
|
|
896
|
+
pulumi.set(self, "outlier_configuration", value)
|
|
897
|
+
|
|
866
898
|
@_builtins.property
|
|
867
899
|
@pulumi.getter(name="policyId")
|
|
868
900
|
def policy_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -1024,6 +1056,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1024
1056
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1025
1057
|
nrql: Optional[pulumi.Input[Union['NrqlAlertConditionNrqlArgs', 'NrqlAlertConditionNrqlArgsDict']]] = None,
|
|
1026
1058
|
open_violation_on_expiration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1059
|
+
outlier_configuration: Optional[pulumi.Input[Union['NrqlAlertConditionOutlierConfigurationArgs', 'NrqlAlertConditionOutlierConfigurationArgsDict']]] = None,
|
|
1027
1060
|
policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1028
1061
|
runbook_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1029
1062
|
signal_seasonality: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1331,6 +1364,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1331
1364
|
:param pulumi.Input[_builtins.str] name: The title of the condition.
|
|
1332
1365
|
:param pulumi.Input[Union['NrqlAlertConditionNrqlArgs', 'NrqlAlertConditionNrqlArgsDict']] nrql: A NRQL query. See NRQL below for details.
|
|
1333
1366
|
:param pulumi.Input[_builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
|
|
1367
|
+
:param pulumi.Input[Union['NrqlAlertConditionOutlierConfigurationArgs', 'NrqlAlertConditionOutlierConfigurationArgsDict']] outlier_configuration: BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
1334
1368
|
:param pulumi.Input[_builtins.str] policy_id: The ID of the policy where this condition should be used.
|
|
1335
1369
|
:param pulumi.Input[_builtins.str] runbook_url: Runbook URL to display in notifications.
|
|
1336
1370
|
:param pulumi.Input[_builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
|
|
@@ -1659,6 +1693,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1659
1693
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1660
1694
|
nrql: Optional[pulumi.Input[Union['NrqlAlertConditionNrqlArgs', 'NrqlAlertConditionNrqlArgsDict']]] = None,
|
|
1661
1695
|
open_violation_on_expiration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1696
|
+
outlier_configuration: Optional[pulumi.Input[Union['NrqlAlertConditionOutlierConfigurationArgs', 'NrqlAlertConditionOutlierConfigurationArgsDict']]] = None,
|
|
1662
1697
|
policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1663
1698
|
runbook_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1664
1699
|
signal_seasonality: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1699,6 +1734,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1699
1734
|
raise TypeError("Missing required property 'nrql'")
|
|
1700
1735
|
__props__.__dict__["nrql"] = nrql
|
|
1701
1736
|
__props__.__dict__["open_violation_on_expiration"] = open_violation_on_expiration
|
|
1737
|
+
__props__.__dict__["outlier_configuration"] = outlier_configuration
|
|
1702
1738
|
if policy_id is None and not opts.urn:
|
|
1703
1739
|
raise TypeError("Missing required property 'policy_id'")
|
|
1704
1740
|
__props__.__dict__["policy_id"] = policy_id
|
|
@@ -1742,6 +1778,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1742
1778
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1743
1779
|
nrql: Optional[pulumi.Input[Union['NrqlAlertConditionNrqlArgs', 'NrqlAlertConditionNrqlArgsDict']]] = None,
|
|
1744
1780
|
open_violation_on_expiration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1781
|
+
outlier_configuration: Optional[pulumi.Input[Union['NrqlAlertConditionOutlierConfigurationArgs', 'NrqlAlertConditionOutlierConfigurationArgsDict']]] = None,
|
|
1745
1782
|
policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1746
1783
|
runbook_url: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1747
1784
|
signal_seasonality: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1779,6 +1816,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1779
1816
|
:param pulumi.Input[_builtins.str] name: The title of the condition.
|
|
1780
1817
|
:param pulumi.Input[Union['NrqlAlertConditionNrqlArgs', 'NrqlAlertConditionNrqlArgsDict']] nrql: A NRQL query. See NRQL below for details.
|
|
1781
1818
|
:param pulumi.Input[_builtins.bool] open_violation_on_expiration: Whether to create a new incident to capture that the signal expired.
|
|
1819
|
+
:param pulumi.Input[Union['NrqlAlertConditionOutlierConfigurationArgs', 'NrqlAlertConditionOutlierConfigurationArgsDict']] outlier_configuration: BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
1782
1820
|
:param pulumi.Input[_builtins.str] policy_id: The ID of the policy where this condition should be used.
|
|
1783
1821
|
:param pulumi.Input[_builtins.str] runbook_url: Runbook URL to display in notifications.
|
|
1784
1822
|
:param pulumi.Input[_builtins.str] signal_seasonality: Seasonality under which a condition's signal(s) are evaluated. Only available for baseline conditions. Valid values are: `NEW_RELIC_CALCULATION`, `HOURLY`, `DAILY`, `WEEKLY`, or `NONE`. To have New Relic calculate seasonality automatically, set to `NEW_RELIC_CALCULATION`. To turn off seasonality completely, set to `NONE`.
|
|
@@ -1816,6 +1854,7 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1816
1854
|
__props__.__dict__["name"] = name
|
|
1817
1855
|
__props__.__dict__["nrql"] = nrql
|
|
1818
1856
|
__props__.__dict__["open_violation_on_expiration"] = open_violation_on_expiration
|
|
1857
|
+
__props__.__dict__["outlier_configuration"] = outlier_configuration
|
|
1819
1858
|
__props__.__dict__["policy_id"] = policy_id
|
|
1820
1859
|
__props__.__dict__["runbook_url"] = runbook_url
|
|
1821
1860
|
__props__.__dict__["signal_seasonality"] = signal_seasonality
|
|
@@ -1981,6 +2020,14 @@ class NrqlAlertCondition(pulumi.CustomResource):
|
|
|
1981
2020
|
"""
|
|
1982
2021
|
return pulumi.get(self, "open_violation_on_expiration")
|
|
1983
2022
|
|
|
2023
|
+
@_builtins.property
|
|
2024
|
+
@pulumi.getter(name="outlierConfiguration")
|
|
2025
|
+
def outlier_configuration(self) -> pulumi.Output[Optional['outputs.NrqlAlertConditionOutlierConfiguration']]:
|
|
2026
|
+
"""
|
|
2027
|
+
BETA PREVIEW: the `outlier_configuration` field is in limited release and only enabled for preview on a per-account basis. - Defines parameters controlling outlier detection for an `outlier` NRQL condition.
|
|
2028
|
+
"""
|
|
2029
|
+
return pulumi.get(self, "outlier_configuration")
|
|
2030
|
+
|
|
1984
2031
|
@_builtins.property
|
|
1985
2032
|
@pulumi.getter(name="policyId")
|
|
1986
2033
|
def policy_id(self) -> pulumi.Output[_builtins.str]:
|
pulumi_newrelic/outputs.py
CHANGED
|
@@ -36,6 +36,8 @@ __all__ = [
|
|
|
36
36
|
'NrqlAlertConditionCritical',
|
|
37
37
|
'NrqlAlertConditionCriticalPrediction',
|
|
38
38
|
'NrqlAlertConditionNrql',
|
|
39
|
+
'NrqlAlertConditionOutlierConfiguration',
|
|
40
|
+
'NrqlAlertConditionOutlierConfigurationDbscan',
|
|
39
41
|
'NrqlAlertConditionTerm',
|
|
40
42
|
'NrqlAlertConditionTermPrediction',
|
|
41
43
|
'NrqlAlertConditionWarning',
|
|
@@ -1583,6 +1585,84 @@ class NrqlAlertConditionNrql(dict):
|
|
|
1583
1585
|
return pulumi.get(self, "since_value")
|
|
1584
1586
|
|
|
1585
1587
|
|
|
1588
|
+
@pulumi.output_type
|
|
1589
|
+
class NrqlAlertConditionOutlierConfiguration(dict):
|
|
1590
|
+
def __init__(__self__, *,
|
|
1591
|
+
dbscan: 'outputs.NrqlAlertConditionOutlierConfigurationDbscan'):
|
|
1592
|
+
"""
|
|
1593
|
+
:param 'NrqlAlertConditionOutlierConfigurationDbscanArgs' dbscan: BETA PREVIEW: the `dbscan` field is in limited release and only enabled for preview on a per-account basis. - Container for DBSCAN settings used to cluster data points and classify noise as outliers. Requires `epsilon` and `minimum_points`; optional `evaluation_group_facet` partitions data before analysis.
|
|
1594
|
+
"""
|
|
1595
|
+
pulumi.set(__self__, "dbscan", dbscan)
|
|
1596
|
+
|
|
1597
|
+
@_builtins.property
|
|
1598
|
+
@pulumi.getter
|
|
1599
|
+
def dbscan(self) -> 'outputs.NrqlAlertConditionOutlierConfigurationDbscan':
|
|
1600
|
+
"""
|
|
1601
|
+
BETA PREVIEW: the `dbscan` field is in limited release and only enabled for preview on a per-account basis. - Container for DBSCAN settings used to cluster data points and classify noise as outliers. Requires `epsilon` and `minimum_points`; optional `evaluation_group_facet` partitions data before analysis.
|
|
1602
|
+
"""
|
|
1603
|
+
return pulumi.get(self, "dbscan")
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
@pulumi.output_type
|
|
1607
|
+
class NrqlAlertConditionOutlierConfigurationDbscan(dict):
|
|
1608
|
+
@staticmethod
|
|
1609
|
+
def __key_warning(key: str):
|
|
1610
|
+
suggest = None
|
|
1611
|
+
if key == "minimumPoints":
|
|
1612
|
+
suggest = "minimum_points"
|
|
1613
|
+
elif key == "evaluationGroupFacet":
|
|
1614
|
+
suggest = "evaluation_group_facet"
|
|
1615
|
+
|
|
1616
|
+
if suggest:
|
|
1617
|
+
pulumi.log.warn(f"Key '{key}' not found in NrqlAlertConditionOutlierConfigurationDbscan. Access the value via the '{suggest}' property getter instead.")
|
|
1618
|
+
|
|
1619
|
+
def __getitem__(self, key: str) -> Any:
|
|
1620
|
+
NrqlAlertConditionOutlierConfigurationDbscan.__key_warning(key)
|
|
1621
|
+
return super().__getitem__(key)
|
|
1622
|
+
|
|
1623
|
+
def get(self, key: str, default = None) -> Any:
|
|
1624
|
+
NrqlAlertConditionOutlierConfigurationDbscan.__key_warning(key)
|
|
1625
|
+
return super().get(key, default)
|
|
1626
|
+
|
|
1627
|
+
def __init__(__self__, *,
|
|
1628
|
+
epsilon: _builtins.float,
|
|
1629
|
+
minimum_points: _builtins.int,
|
|
1630
|
+
evaluation_group_facet: Optional[_builtins.str] = None):
|
|
1631
|
+
"""
|
|
1632
|
+
:param _builtins.float epsilon: BETA PREVIEW: the `epsilon` field is in limited release and only enabled for preview on a per-account basis. - Radius (distance threshold) for DBSCAN in the units of the query result. Smaller values tighten clusters; larger values broaden them. Must be > 0.
|
|
1633
|
+
:param _builtins.int minimum_points: BETA PREVIEW: the `minimum_points` field is in limited release and only enabled for preview on a per-account basis. - Minimum number of neighboring points needed to form a cluster. Must be >= 1.
|
|
1634
|
+
:param _builtins.str evaluation_group_facet: BETA PREVIEW: the `evaluation_group_facet` field is in limited release and only enabled for preview on a per-account basis. - Optional NRQL facet attribute used to segment data into groups (e.g. `host`, `region`) before running outlier detection. Omit to evaluate all results together.
|
|
1635
|
+
"""
|
|
1636
|
+
pulumi.set(__self__, "epsilon", epsilon)
|
|
1637
|
+
pulumi.set(__self__, "minimum_points", minimum_points)
|
|
1638
|
+
if evaluation_group_facet is not None:
|
|
1639
|
+
pulumi.set(__self__, "evaluation_group_facet", evaluation_group_facet)
|
|
1640
|
+
|
|
1641
|
+
@_builtins.property
|
|
1642
|
+
@pulumi.getter
|
|
1643
|
+
def epsilon(self) -> _builtins.float:
|
|
1644
|
+
"""
|
|
1645
|
+
BETA PREVIEW: the `epsilon` field is in limited release and only enabled for preview on a per-account basis. - Radius (distance threshold) for DBSCAN in the units of the query result. Smaller values tighten clusters; larger values broaden them. Must be > 0.
|
|
1646
|
+
"""
|
|
1647
|
+
return pulumi.get(self, "epsilon")
|
|
1648
|
+
|
|
1649
|
+
@_builtins.property
|
|
1650
|
+
@pulumi.getter(name="minimumPoints")
|
|
1651
|
+
def minimum_points(self) -> _builtins.int:
|
|
1652
|
+
"""
|
|
1653
|
+
BETA PREVIEW: the `minimum_points` field is in limited release and only enabled for preview on a per-account basis. - Minimum number of neighboring points needed to form a cluster. Must be >= 1.
|
|
1654
|
+
"""
|
|
1655
|
+
return pulumi.get(self, "minimum_points")
|
|
1656
|
+
|
|
1657
|
+
@_builtins.property
|
|
1658
|
+
@pulumi.getter(name="evaluationGroupFacet")
|
|
1659
|
+
def evaluation_group_facet(self) -> Optional[_builtins.str]:
|
|
1660
|
+
"""
|
|
1661
|
+
BETA PREVIEW: the `evaluation_group_facet` field is in limited release and only enabled for preview on a per-account basis. - Optional NRQL facet attribute used to segment data into groups (e.g. `host`, `region`) before running outlier detection. Omit to evaluate all results together.
|
|
1662
|
+
"""
|
|
1663
|
+
return pulumi.get(self, "evaluation_group_facet")
|
|
1664
|
+
|
|
1665
|
+
|
|
1586
1666
|
@pulumi.output_type
|
|
1587
1667
|
class NrqlAlertConditionTerm(dict):
|
|
1588
1668
|
@staticmethod
|
{pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ma56W4OeGlJh2pTw9kc6w_x005-3zos6IvfN3fpqB-c,11951
|
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=V0bCFh5unKTpI1W03T72QEQGyL_P66z55teGMuGySeA,882621
|
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
-
pulumi_newrelic/account_management.py,sha256=
|
|
4
|
+
pulumi_newrelic/account_management.py,sha256=Di6v6x09KlXdAsxo6DUO_XnxTjcwRwdQjlg-wCbM1ug,10445
|
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=U0uhbIIZbDYX7KbzScyMFqhkw-LjEjZMlGb42vNLaI8,22467
|
|
6
6
|
pulumi_newrelic/alert_condition.py,sha256=UAab2yQ1jGukHc_KwW-bqybNmfjSgRXw5KHx8A1tpEE,48934
|
|
7
7
|
pulumi_newrelic/alert_muting_rule.py,sha256=PcduG6-843oqqH0KTj7med_U9h-H8bQf8rDXF2Mcxe0,23720
|
|
@@ -12,7 +12,7 @@ pulumi_newrelic/browser_application.py,sha256=X-9hxkceZUKksFgis9Sk0xxiyeU5E80xXL
|
|
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=trKw0gNOAVf7AVp7bHtpJuyVxGJbOFkx9NZz_YF0o1o,21789
|
|
13
13
|
pulumi_newrelic/entity_tags.py,sha256=JPxziyMKb_rxCIz9ds9GSpEH84VgDElW8JsUdvGKKrM,12681
|
|
14
14
|
pulumi_newrelic/events_to_metrics_rule.py,sha256=1c4hMI-wspYsroOmqGkK2uSK-0qReyZDydwy_MSZUNc,17184
|
|
15
|
-
pulumi_newrelic/get_account.py,sha256
|
|
15
|
+
pulumi_newrelic/get_account.py,sha256=Kx--rxQH8Rm0htbFxCxpANV9MsZurOORgDUgy27jv3U,6099
|
|
16
16
|
pulumi_newrelic/get_alert_channel.py,sha256=eFTO-fTpY0DPGlp_n02yZx9WVsZDCK0aQnPi4RzF_dk,7335
|
|
17
17
|
pulumi_newrelic/get_alert_policy.py,sha256=ueQ9WYEhczYQNiJY8X8faglAzjYt-bV0aODSQ094f6c,10716
|
|
18
18
|
pulumi_newrelic/get_application.py,sha256=SO_71J4z99hRXDNzum9TwJZLOqkrN7NaWCIHzh31bVw,6068
|
|
@@ -33,17 +33,17 @@ pulumi_newrelic/log_parsing_rule.py,sha256=LisajAtcaL3tI4IfxDr2m1qV7ILxbmYS4aWZ7
|
|
|
33
33
|
pulumi_newrelic/monitor_downtime.py,sha256=eFrGb_WimQE5et66GvIIG29BS0-zlU7gxGvBY_c6gSc,42266
|
|
34
34
|
pulumi_newrelic/notification_channel.py,sha256=NL-jcRp9Ab7pX-lPMbwM7KiySoFGCJ89VdgGAjTG_68,50839
|
|
35
35
|
pulumi_newrelic/notification_destination.py,sha256=CIgQtK9zP7Bc7BBTAhSYXGnjZyy1EuOQBhmKa4H1iUs,41261
|
|
36
|
-
pulumi_newrelic/nrql_alert_condition.py,sha256=
|
|
36
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=Ue_PYtt-NeJiA6Oo0D1vI6uiyzBy0RDQX-oPLsKTats,131741
|
|
37
37
|
pulumi_newrelic/nrql_drop_rule.py,sha256=R3TmLv9E-e2AgDL6TetErk05yBkaLlc3yZNuEBHqcHg,17621
|
|
38
38
|
pulumi_newrelic/obfuscation_expression.py,sha256=_IemP9OPdRPD2KtWoebyKr3BIyuVp7-YC71-IiBRDcc,13277
|
|
39
39
|
pulumi_newrelic/obfuscation_rule.py,sha256=i-7TgU5nsjsSAM5cLdKPKiReUMGVlkvDyAgCkB62KJg,18991
|
|
40
40
|
pulumi_newrelic/one_dashboard.py,sha256=siAjVf7CK3wJeOuprhFyhiAoO06KHWqkdNf5BX3Vf9A,21836
|
|
41
41
|
pulumi_newrelic/one_dashboard_json.py,sha256=jZ3BH18YiQjUzS0AyJGpFcyj3Ai8ZlKuVrMT-bWV5Dc,13476
|
|
42
42
|
pulumi_newrelic/one_dashboard_raw.py,sha256=V1F113AK_iHqbqwAeeW6Fdt9Wlfgj4EE2GidfowOT00,24738
|
|
43
|
-
pulumi_newrelic/outputs.py,sha256=
|
|
43
|
+
pulumi_newrelic/outputs.py,sha256=mSeBaL9RhykiGcqZkDoGmC8QpFdx_EY7mmPT7G-QB3Y,636266
|
|
44
44
|
pulumi_newrelic/pipeline_cloud_rule.py,sha256=I6874bmRCGe0b_ClHs86qyYkpFML2QvD_iMzJ-NN_ws,13644
|
|
45
45
|
pulumi_newrelic/provider.py,sha256=644yJkWitRT_BZOlW_q-_W0x_bnLAIfOrFx_O1V_CEA,20441
|
|
46
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
|
46
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=NxqJc3w4RUtxLI1MQ1P_wMvR8dk73aCFAvT8cd7QQ5k,85
|
|
47
47
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
pulumi_newrelic/service_level.py,sha256=gxclcbnMv1zxbt3ZSR1QCHSzcKiYXUCJfFjbyn3mKvE,29792
|
|
49
49
|
pulumi_newrelic/user.py,sha256=CTl-KJ2yLDl8dwmRGksYCHCQ2KvUyA8U81WV4cGpaj4,19842
|
|
@@ -86,7 +86,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=RInZWYYxloyzGmgaVTsEO_fGrn
|
|
|
86
86
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=Ijs_jSriw0BFjqEt7sS5jfaiunBhmEB-Li-ED3lYhaM,73319
|
|
87
87
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=f4gs62_FcBaeO6YMZLMKwBuOS73qxpKmudoelXbmtso,16701
|
|
88
88
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=1PtSgEInngOinmSSPaPqIxwJx2iSRoMSa9Fw6zlh-rQ,52671
|
|
89
|
-
pulumi_newrelic-5.
|
|
90
|
-
pulumi_newrelic-5.
|
|
91
|
-
pulumi_newrelic-5.
|
|
92
|
-
pulumi_newrelic-5.
|
|
89
|
+
pulumi_newrelic-5.59.0a1768456783.dist-info/METADATA,sha256=CY8D8O08r_v3ijluhW_2PkQTQg0_jvo0UyRuKo0fq6Y,3966
|
|
90
|
+
pulumi_newrelic-5.59.0a1768456783.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
91
|
+
pulumi_newrelic-5.59.0a1768456783.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
|
92
|
+
pulumi_newrelic-5.59.0a1768456783.dist-info/RECORD,,
|
{pulumi_newrelic-5.58.0a1764915474.dist-info → pulumi_newrelic-5.59.0a1768456783.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|