pulumi-newrelic 5.34.0a1728366646__py3-none-any.whl → 5.34.0a1728941524__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.
- pulumi_newrelic/_inputs.py +4147 -78
- pulumi_newrelic/_utilities.py +1 -1
- pulumi_newrelic/account_management.py +5 -0
- pulumi_newrelic/alert_channel.py +5 -0
- pulumi_newrelic/alert_condition.py +5 -0
- pulumi_newrelic/alert_muting_rule.py +5 -0
- pulumi_newrelic/alert_policy.py +5 -0
- pulumi_newrelic/alert_policy_channel.py +5 -0
- pulumi_newrelic/api_access_key.py +5 -0
- pulumi_newrelic/browser_application.py +5 -0
- pulumi_newrelic/cloud/_inputs.py +2206 -11
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +5 -0
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +5 -0
- pulumi_newrelic/cloud/aws_integrations.py +5 -0
- pulumi_newrelic/cloud/aws_link_account.py +5 -0
- pulumi_newrelic/cloud/azure_integrations.py +5 -0
- pulumi_newrelic/cloud/azure_link_account.py +5 -0
- pulumi_newrelic/cloud/gcp_integrations.py +5 -0
- pulumi_newrelic/cloud/gcp_link_account.py +5 -0
- pulumi_newrelic/cloud/outputs.py +5 -0
- pulumi_newrelic/config/__init__.pyi +5 -0
- pulumi_newrelic/config/vars.py +5 -0
- pulumi_newrelic/data_partition_rule.py +5 -0
- pulumi_newrelic/entity_tags.py +5 -0
- pulumi_newrelic/events_to_metrics_rule.py +5 -0
- pulumi_newrelic/get_account.py +16 -4
- pulumi_newrelic/get_alert_channel.py +17 -4
- pulumi_newrelic/get_alert_policy.py +18 -4
- pulumi_newrelic/get_application.py +14 -4
- pulumi_newrelic/get_authentication_domain.py +12 -4
- pulumi_newrelic/get_cloud_account.py +16 -4
- pulumi_newrelic/get_entity.py +29 -4
- pulumi_newrelic/get_group.py +15 -4
- pulumi_newrelic/get_key_transaction.py +72 -9
- pulumi_newrelic/get_notification_destination.py +22 -4
- pulumi_newrelic/get_obfuscation_expression.py +14 -4
- pulumi_newrelic/get_service_level_alert_helper.py +28 -4
- pulumi_newrelic/get_test_grok_pattern.py +17 -4
- pulumi_newrelic/get_user.py +16 -4
- pulumi_newrelic/group.py +5 -0
- pulumi_newrelic/infra_alert_condition.py +5 -0
- pulumi_newrelic/insights/_inputs.py +43 -0
- pulumi_newrelic/insights/event.py +5 -0
- pulumi_newrelic/insights/outputs.py +5 -0
- pulumi_newrelic/key_transaction.py +5 -0
- pulumi_newrelic/log_parsing_rule.py +5 -0
- pulumi_newrelic/monitor_downtime.py +5 -0
- pulumi_newrelic/notification_channel.py +5 -0
- pulumi_newrelic/notification_destination.py +5 -0
- pulumi_newrelic/nrql_alert_condition.py +5 -0
- pulumi_newrelic/nrql_drop_rule.py +5 -0
- pulumi_newrelic/obfuscation_expression.py +5 -0
- pulumi_newrelic/obfuscation_rule.py +5 -0
- pulumi_newrelic/one_dashboard.py +5 -0
- pulumi_newrelic/one_dashboard_json.py +5 -0
- pulumi_newrelic/one_dashboard_raw.py +5 -0
- pulumi_newrelic/outputs.py +5 -0
- pulumi_newrelic/plugins/_inputs.py +135 -0
- pulumi_newrelic/plugins/application_settings.py +5 -0
- pulumi_newrelic/plugins/outputs.py +5 -0
- pulumi_newrelic/plugins/workload.py +5 -0
- pulumi_newrelic/provider.py +5 -0
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/service_level.py +5 -0
- pulumi_newrelic/synthetics/_inputs.py +157 -0
- pulumi_newrelic/synthetics/alert_condition.py +5 -0
- pulumi_newrelic/synthetics/broken_links_monitor.py +5 -0
- pulumi_newrelic/synthetics/cert_check_monitor.py +5 -0
- pulumi_newrelic/synthetics/get_private_location.py +16 -4
- pulumi_newrelic/synthetics/get_secure_credential.py +16 -4
- pulumi_newrelic/synthetics/monitor.py +5 -0
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +5 -0
- pulumi_newrelic/synthetics/outputs.py +5 -0
- pulumi_newrelic/synthetics/private_location.py +5 -0
- pulumi_newrelic/synthetics/script_monitor.py +5 -0
- pulumi_newrelic/synthetics/secure_credential.py +5 -0
- pulumi_newrelic/synthetics/step_monitor.py +5 -0
- pulumi_newrelic/user.py +5 -0
- pulumi_newrelic/workflow.py +5 -0
- {pulumi_newrelic-5.34.0a1728366646.dist-info → pulumi_newrelic-5.34.0a1728941524.dist-info}/METADATA +3 -2
- pulumi_newrelic-5.34.0a1728941524.dist-info/RECORD +90 -0
- pulumi_newrelic-5.34.0a1728366646.dist-info/RECORD +0 -90
- {pulumi_newrelic-5.34.0a1728366646.dist-info → pulumi_newrelic-5.34.0a1728941524.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.34.0a1728366646.dist-info → pulumi_newrelic-5.34.0a1728941524.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
pulumi_newrelic/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -4,22 +4,46 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'WorkloadEntitySearchQueryArgs',
|
19
|
+
'WorkloadEntitySearchQueryArgsDict',
|
14
20
|
'WorkloadStatusConfigAutomaticArgs',
|
21
|
+
'WorkloadStatusConfigAutomaticArgsDict',
|
15
22
|
'WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs',
|
23
|
+
'WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgsDict',
|
16
24
|
'WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs',
|
25
|
+
'WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgsDict',
|
17
26
|
'WorkloadStatusConfigAutomaticRuleArgs',
|
27
|
+
'WorkloadStatusConfigAutomaticRuleArgsDict',
|
18
28
|
'WorkloadStatusConfigAutomaticRuleNrqlQueryArgs',
|
29
|
+
'WorkloadStatusConfigAutomaticRuleNrqlQueryArgsDict',
|
19
30
|
'WorkloadStatusConfigAutomaticRuleRollupArgs',
|
31
|
+
'WorkloadStatusConfigAutomaticRuleRollupArgsDict',
|
20
32
|
'WorkloadStatusConfigStaticArgs',
|
33
|
+
'WorkloadStatusConfigStaticArgsDict',
|
21
34
|
]
|
22
35
|
|
36
|
+
MYPY = False
|
37
|
+
|
38
|
+
if not MYPY:
|
39
|
+
class WorkloadEntitySearchQueryArgsDict(TypedDict):
|
40
|
+
query: pulumi.Input[str]
|
41
|
+
"""
|
42
|
+
A valid entity search query; empty, and null values are considered invalid.
|
43
|
+
"""
|
44
|
+
elif False:
|
45
|
+
WorkloadEntitySearchQueryArgsDict: TypeAlias = Mapping[str, Any]
|
46
|
+
|
23
47
|
@pulumi.input_type
|
24
48
|
class WorkloadEntitySearchQueryArgs:
|
25
49
|
def __init__(__self__, *,
|
@@ -42,6 +66,23 @@ class WorkloadEntitySearchQueryArgs:
|
|
42
66
|
pulumi.set(self, "query", value)
|
43
67
|
|
44
68
|
|
69
|
+
if not MYPY:
|
70
|
+
class WorkloadStatusConfigAutomaticArgsDict(TypedDict):
|
71
|
+
enabled: pulumi.Input[bool]
|
72
|
+
"""
|
73
|
+
Whether the automatic status configuration is enabled or not.
|
74
|
+
"""
|
75
|
+
remaining_entities_rule: NotRequired[pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgsDict']]
|
76
|
+
"""
|
77
|
+
An additional meta-rule that can consider all entities that haven't been evaluated by any other rule.
|
78
|
+
"""
|
79
|
+
rules: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleArgsDict']]]]
|
80
|
+
"""
|
81
|
+
A list of rules.
|
82
|
+
"""
|
83
|
+
elif False:
|
84
|
+
WorkloadStatusConfigAutomaticArgsDict: TypeAlias = Mapping[str, Any]
|
85
|
+
|
45
86
|
@pulumi.input_type
|
46
87
|
class WorkloadStatusConfigAutomaticArgs:
|
47
88
|
def __init__(__self__, *,
|
@@ -96,6 +137,15 @@ class WorkloadStatusConfigAutomaticArgs:
|
|
96
137
|
pulumi.set(self, "rules", value)
|
97
138
|
|
98
139
|
|
140
|
+
if not MYPY:
|
141
|
+
class WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgsDict(TypedDict):
|
142
|
+
remaining_entities_rule_rollup: pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgsDict']
|
143
|
+
"""
|
144
|
+
The input object used to represent a rollup strategy.
|
145
|
+
"""
|
146
|
+
elif False:
|
147
|
+
WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgsDict: TypeAlias = Mapping[str, Any]
|
148
|
+
|
99
149
|
@pulumi.input_type
|
100
150
|
class WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs:
|
101
151
|
def __init__(__self__, *,
|
@@ -118,6 +168,27 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs:
|
|
118
168
|
pulumi.set(self, "remaining_entities_rule_rollup", value)
|
119
169
|
|
120
170
|
|
171
|
+
if not MYPY:
|
172
|
+
class WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgsDict(TypedDict):
|
173
|
+
group_by: pulumi.Input[str]
|
174
|
+
"""
|
175
|
+
The grouping to be applied to the remaining entities.
|
176
|
+
"""
|
177
|
+
strategy: pulumi.Input[str]
|
178
|
+
"""
|
179
|
+
The rollup strategy that is applied to a group of entities.
|
180
|
+
"""
|
181
|
+
threshold_type: NotRequired[pulumi.Input[str]]
|
182
|
+
"""
|
183
|
+
Type of threshold defined for the rule. This is an optional field that only applies when strategy is WORST_STATUS_WINS. Use a threshold to roll up the worst status only after a certain amount of entities are not operational.
|
184
|
+
"""
|
185
|
+
threshold_value: NotRequired[pulumi.Input[int]]
|
186
|
+
"""
|
187
|
+
Threshold value defined for the rule. This optional field is used in combination with thresholdType. If the threshold type is null, the threshold value will be ignored.
|
188
|
+
"""
|
189
|
+
elif False:
|
190
|
+
WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgsDict: TypeAlias = Mapping[str, Any]
|
191
|
+
|
121
192
|
@pulumi.input_type
|
122
193
|
class WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs:
|
123
194
|
def __init__(__self__, *,
|
@@ -187,6 +258,23 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRol
|
|
187
258
|
pulumi.set(self, "threshold_value", value)
|
188
259
|
|
189
260
|
|
261
|
+
if not MYPY:
|
262
|
+
class WorkloadStatusConfigAutomaticRuleArgsDict(TypedDict):
|
263
|
+
rollup: pulumi.Input['WorkloadStatusConfigAutomaticRuleRollupArgsDict']
|
264
|
+
"""
|
265
|
+
The input object used to represent a rollup strategy. See Nested rollup blocks below for details.
|
266
|
+
"""
|
267
|
+
entity_guids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
268
|
+
"""
|
269
|
+
A list of entity GUIDs composing the rule. At least one of `entity_guids` or `nrql_query` must be defined.
|
270
|
+
"""
|
271
|
+
nrql_queries: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleNrqlQueryArgsDict']]]]
|
272
|
+
"""
|
273
|
+
A list of entity search queries used to retrieve the entities that compose the rule. See Nested nrql_query blocks below for details. At least one of `entity_guids` or `nrql_query` must be defined.
|
274
|
+
"""
|
275
|
+
elif False:
|
276
|
+
WorkloadStatusConfigAutomaticRuleArgsDict: TypeAlias = Mapping[str, Any]
|
277
|
+
|
190
278
|
@pulumi.input_type
|
191
279
|
class WorkloadStatusConfigAutomaticRuleArgs:
|
192
280
|
def __init__(__self__, *,
|
@@ -241,6 +329,15 @@ class WorkloadStatusConfigAutomaticRuleArgs:
|
|
241
329
|
pulumi.set(self, "nrql_queries", value)
|
242
330
|
|
243
331
|
|
332
|
+
if not MYPY:
|
333
|
+
class WorkloadStatusConfigAutomaticRuleNrqlQueryArgsDict(TypedDict):
|
334
|
+
query: pulumi.Input[str]
|
335
|
+
"""
|
336
|
+
The entity search query that is used to perform the search of a group of entities.
|
337
|
+
"""
|
338
|
+
elif False:
|
339
|
+
WorkloadStatusConfigAutomaticRuleNrqlQueryArgsDict: TypeAlias = Mapping[str, Any]
|
340
|
+
|
244
341
|
@pulumi.input_type
|
245
342
|
class WorkloadStatusConfigAutomaticRuleNrqlQueryArgs:
|
246
343
|
def __init__(__self__, *,
|
@@ -263,6 +360,23 @@ class WorkloadStatusConfigAutomaticRuleNrqlQueryArgs:
|
|
263
360
|
pulumi.set(self, "query", value)
|
264
361
|
|
265
362
|
|
363
|
+
if not MYPY:
|
364
|
+
class WorkloadStatusConfigAutomaticRuleRollupArgsDict(TypedDict):
|
365
|
+
strategy: pulumi.Input[str]
|
366
|
+
"""
|
367
|
+
The rollup strategy that is applied to a group of entities.
|
368
|
+
"""
|
369
|
+
threshold_type: NotRequired[pulumi.Input[str]]
|
370
|
+
"""
|
371
|
+
Type of threshold defined for the rule. This is an optional field that only applies when strategy is WORST_STATUS_WINS. Use a threshold to roll up the worst status only after a certain amount of entities are not operational.
|
372
|
+
"""
|
373
|
+
threshold_value: NotRequired[pulumi.Input[int]]
|
374
|
+
"""
|
375
|
+
Threshold value defined for the rule. This optional field is used in combination with thresholdType. If the threshold type is null, the threshold value will be ignored.
|
376
|
+
"""
|
377
|
+
elif False:
|
378
|
+
WorkloadStatusConfigAutomaticRuleRollupArgsDict: TypeAlias = Mapping[str, Any]
|
379
|
+
|
266
380
|
@pulumi.input_type
|
267
381
|
class WorkloadStatusConfigAutomaticRuleRollupArgs:
|
268
382
|
def __init__(__self__, *,
|
@@ -317,6 +431,27 @@ class WorkloadStatusConfigAutomaticRuleRollupArgs:
|
|
317
431
|
pulumi.set(self, "threshold_value", value)
|
318
432
|
|
319
433
|
|
434
|
+
if not MYPY:
|
435
|
+
class WorkloadStatusConfigStaticArgsDict(TypedDict):
|
436
|
+
enabled: pulumi.Input[bool]
|
437
|
+
"""
|
438
|
+
Whether the static status configuration is enabled or not.
|
439
|
+
"""
|
440
|
+
status: pulumi.Input[str]
|
441
|
+
"""
|
442
|
+
The status of the workload.
|
443
|
+
"""
|
444
|
+
description: NotRequired[pulumi.Input[str]]
|
445
|
+
"""
|
446
|
+
Relevant information about the workload.
|
447
|
+
"""
|
448
|
+
summary: NotRequired[pulumi.Input[str]]
|
449
|
+
"""
|
450
|
+
A short description of the status of the workload.
|
451
|
+
"""
|
452
|
+
elif False:
|
453
|
+
WorkloadStatusConfigStaticArgsDict: TypeAlias = Mapping[str, Any]
|
454
|
+
|
320
455
|
@pulumi.input_type
|
321
456
|
class WorkloadStatusConfigStaticArgs:
|
322
457
|
def __init__(__self__, *,
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = ['ApplicationSettingsArgs', 'ApplicationSettings']
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
pulumi_newrelic/provider.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['ProviderArgs', 'Provider']
|
pulumi_newrelic/service_level.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -4,25 +4,56 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'BrokenLinksMonitorTagArgs',
|
19
|
+
'BrokenLinksMonitorTagArgsDict',
|
14
20
|
'CertCheckMonitorTagArgs',
|
21
|
+
'CertCheckMonitorTagArgsDict',
|
15
22
|
'MonitorCustomHeaderArgs',
|
23
|
+
'MonitorCustomHeaderArgsDict',
|
16
24
|
'MonitorTagArgs',
|
25
|
+
'MonitorTagArgsDict',
|
17
26
|
'MultiLocationAlertConditionCriticalArgs',
|
27
|
+
'MultiLocationAlertConditionCriticalArgsDict',
|
18
28
|
'MultiLocationAlertConditionWarningArgs',
|
29
|
+
'MultiLocationAlertConditionWarningArgsDict',
|
19
30
|
'ScriptMonitorLocationPrivateArgs',
|
31
|
+
'ScriptMonitorLocationPrivateArgsDict',
|
20
32
|
'ScriptMonitorTagArgs',
|
33
|
+
'ScriptMonitorTagArgsDict',
|
21
34
|
'StepMonitorLocationPrivateArgs',
|
35
|
+
'StepMonitorLocationPrivateArgsDict',
|
22
36
|
'StepMonitorStepArgs',
|
37
|
+
'StepMonitorStepArgsDict',
|
23
38
|
'StepMonitorTagArgs',
|
39
|
+
'StepMonitorTagArgsDict',
|
24
40
|
]
|
25
41
|
|
42
|
+
MYPY = False
|
43
|
+
|
44
|
+
if not MYPY:
|
45
|
+
class BrokenLinksMonitorTagArgsDict(TypedDict):
|
46
|
+
key: pulumi.Input[str]
|
47
|
+
"""
|
48
|
+
Name of the tag key.
|
49
|
+
"""
|
50
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
51
|
+
"""
|
52
|
+
Values associated with the tag key.
|
53
|
+
"""
|
54
|
+
elif False:
|
55
|
+
BrokenLinksMonitorTagArgsDict: TypeAlias = Mapping[str, Any]
|
56
|
+
|
26
57
|
@pulumi.input_type
|
27
58
|
class BrokenLinksMonitorTagArgs:
|
28
59
|
def __init__(__self__, *,
|
@@ -60,6 +91,19 @@ class BrokenLinksMonitorTagArgs:
|
|
60
91
|
pulumi.set(self, "values", value)
|
61
92
|
|
62
93
|
|
94
|
+
if not MYPY:
|
95
|
+
class CertCheckMonitorTagArgsDict(TypedDict):
|
96
|
+
key: pulumi.Input[str]
|
97
|
+
"""
|
98
|
+
Name of the tag key.
|
99
|
+
"""
|
100
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
101
|
+
"""
|
102
|
+
Values associated with the tag key.
|
103
|
+
"""
|
104
|
+
elif False:
|
105
|
+
CertCheckMonitorTagArgsDict: TypeAlias = Mapping[str, Any]
|
106
|
+
|
63
107
|
@pulumi.input_type
|
64
108
|
class CertCheckMonitorTagArgs:
|
65
109
|
def __init__(__self__, *,
|
@@ -97,6 +141,19 @@ class CertCheckMonitorTagArgs:
|
|
97
141
|
pulumi.set(self, "values", value)
|
98
142
|
|
99
143
|
|
144
|
+
if not MYPY:
|
145
|
+
class MonitorCustomHeaderArgsDict(TypedDict):
|
146
|
+
name: NotRequired[pulumi.Input[str]]
|
147
|
+
"""
|
148
|
+
Header name.
|
149
|
+
"""
|
150
|
+
value: NotRequired[pulumi.Input[str]]
|
151
|
+
"""
|
152
|
+
Header Value.
|
153
|
+
"""
|
154
|
+
elif False:
|
155
|
+
MonitorCustomHeaderArgsDict: TypeAlias = Mapping[str, Any]
|
156
|
+
|
100
157
|
@pulumi.input_type
|
101
158
|
class MonitorCustomHeaderArgs:
|
102
159
|
def __init__(__self__, *,
|
@@ -136,6 +193,19 @@ class MonitorCustomHeaderArgs:
|
|
136
193
|
pulumi.set(self, "value", value)
|
137
194
|
|
138
195
|
|
196
|
+
if not MYPY:
|
197
|
+
class MonitorTagArgsDict(TypedDict):
|
198
|
+
key: pulumi.Input[str]
|
199
|
+
"""
|
200
|
+
Name of the tag key.
|
201
|
+
"""
|
202
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
203
|
+
"""
|
204
|
+
Values associated with the tag key.
|
205
|
+
"""
|
206
|
+
elif False:
|
207
|
+
MonitorTagArgsDict: TypeAlias = Mapping[str, Any]
|
208
|
+
|
139
209
|
@pulumi.input_type
|
140
210
|
class MonitorTagArgs:
|
141
211
|
def __init__(__self__, *,
|
@@ -173,6 +243,15 @@ class MonitorTagArgs:
|
|
173
243
|
pulumi.set(self, "values", value)
|
174
244
|
|
175
245
|
|
246
|
+
if not MYPY:
|
247
|
+
class MultiLocationAlertConditionCriticalArgsDict(TypedDict):
|
248
|
+
threshold: pulumi.Input[int]
|
249
|
+
"""
|
250
|
+
The minimum number of monitor locations that must be concurrently failing before an incident is opened.
|
251
|
+
"""
|
252
|
+
elif False:
|
253
|
+
MultiLocationAlertConditionCriticalArgsDict: TypeAlias = Mapping[str, Any]
|
254
|
+
|
176
255
|
@pulumi.input_type
|
177
256
|
class MultiLocationAlertConditionCriticalArgs:
|
178
257
|
def __init__(__self__, *,
|
@@ -195,6 +274,15 @@ class MultiLocationAlertConditionCriticalArgs:
|
|
195
274
|
pulumi.set(self, "threshold", value)
|
196
275
|
|
197
276
|
|
277
|
+
if not MYPY:
|
278
|
+
class MultiLocationAlertConditionWarningArgsDict(TypedDict):
|
279
|
+
threshold: pulumi.Input[int]
|
280
|
+
"""
|
281
|
+
The minimum number of monitor locations that must be concurrently failing before an incident is opened.
|
282
|
+
"""
|
283
|
+
elif False:
|
284
|
+
MultiLocationAlertConditionWarningArgsDict: TypeAlias = Mapping[str, Any]
|
285
|
+
|
198
286
|
@pulumi.input_type
|
199
287
|
class MultiLocationAlertConditionWarningArgs:
|
200
288
|
def __init__(__self__, *,
|
@@ -217,6 +305,19 @@ class MultiLocationAlertConditionWarningArgs:
|
|
217
305
|
pulumi.set(self, "threshold", value)
|
218
306
|
|
219
307
|
|
308
|
+
if not MYPY:
|
309
|
+
class ScriptMonitorLocationPrivateArgsDict(TypedDict):
|
310
|
+
guid: pulumi.Input[str]
|
311
|
+
"""
|
312
|
+
The unique identifier for the Synthetics private location in New Relic.
|
313
|
+
"""
|
314
|
+
vse_password: NotRequired[pulumi.Input[str]]
|
315
|
+
"""
|
316
|
+
The location's Verified Script Execution password, Only necessary if Verified Script Execution is enabled for the location.
|
317
|
+
"""
|
318
|
+
elif False:
|
319
|
+
ScriptMonitorLocationPrivateArgsDict: TypeAlias = Mapping[str, Any]
|
320
|
+
|
220
321
|
@pulumi.input_type
|
221
322
|
class ScriptMonitorLocationPrivateArgs:
|
222
323
|
def __init__(__self__, *,
|
@@ -255,6 +356,19 @@ class ScriptMonitorLocationPrivateArgs:
|
|
255
356
|
pulumi.set(self, "vse_password", value)
|
256
357
|
|
257
358
|
|
359
|
+
if not MYPY:
|
360
|
+
class ScriptMonitorTagArgsDict(TypedDict):
|
361
|
+
key: pulumi.Input[str]
|
362
|
+
"""
|
363
|
+
Name of the tag key.
|
364
|
+
"""
|
365
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
366
|
+
"""
|
367
|
+
Values associated with the tag key.
|
368
|
+
"""
|
369
|
+
elif False:
|
370
|
+
ScriptMonitorTagArgsDict: TypeAlias = Mapping[str, Any]
|
371
|
+
|
258
372
|
@pulumi.input_type
|
259
373
|
class ScriptMonitorTagArgs:
|
260
374
|
def __init__(__self__, *,
|
@@ -292,6 +406,19 @@ class ScriptMonitorTagArgs:
|
|
292
406
|
pulumi.set(self, "values", value)
|
293
407
|
|
294
408
|
|
409
|
+
if not MYPY:
|
410
|
+
class StepMonitorLocationPrivateArgsDict(TypedDict):
|
411
|
+
guid: pulumi.Input[str]
|
412
|
+
"""
|
413
|
+
The unique identifier for the Synthetics private location in New Relic.
|
414
|
+
"""
|
415
|
+
vse_password: NotRequired[pulumi.Input[str]]
|
416
|
+
"""
|
417
|
+
The location's Verified Script Execution password, only necessary if Verified Script Execution is enabled for the location.
|
418
|
+
"""
|
419
|
+
elif False:
|
420
|
+
StepMonitorLocationPrivateArgsDict: TypeAlias = Mapping[str, Any]
|
421
|
+
|
295
422
|
@pulumi.input_type
|
296
423
|
class StepMonitorLocationPrivateArgs:
|
297
424
|
def __init__(__self__, *,
|
@@ -330,6 +457,23 @@ class StepMonitorLocationPrivateArgs:
|
|
330
457
|
pulumi.set(self, "vse_password", value)
|
331
458
|
|
332
459
|
|
460
|
+
if not MYPY:
|
461
|
+
class StepMonitorStepArgsDict(TypedDict):
|
462
|
+
ordinal: pulumi.Input[int]
|
463
|
+
"""
|
464
|
+
The position of the step within the script ranging from 0-100.
|
465
|
+
"""
|
466
|
+
type: pulumi.Input[str]
|
467
|
+
"""
|
468
|
+
Name of the tag key. Valid values are `ASSERT_ELEMENT`, `ASSERT_MODAL`, `ASSERT_TEXT`, `ASSERT_TITLE`, `CLICK_ELEMENT`, `DISMISS_MODAL`, `DOUBLE_CLICK_ELEMENT`, `HOVER_ELEMENT`, `NAVIGATE`, `SECURE_TEXT_ENTRY`, `SELECT_ELEMENT`, `TEXT_ENTRY`.
|
469
|
+
"""
|
470
|
+
values: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
471
|
+
"""
|
472
|
+
The metadata values related to the step.
|
473
|
+
"""
|
474
|
+
elif False:
|
475
|
+
StepMonitorStepArgsDict: TypeAlias = Mapping[str, Any]
|
476
|
+
|
333
477
|
@pulumi.input_type
|
334
478
|
class StepMonitorStepArgs:
|
335
479
|
def __init__(__self__, *,
|
@@ -383,6 +527,19 @@ class StepMonitorStepArgs:
|
|
383
527
|
pulumi.set(self, "values", value)
|
384
528
|
|
385
529
|
|
530
|
+
if not MYPY:
|
531
|
+
class StepMonitorTagArgsDict(TypedDict):
|
532
|
+
key: pulumi.Input[str]
|
533
|
+
"""
|
534
|
+
Name of the tag key.
|
535
|
+
"""
|
536
|
+
values: pulumi.Input[Sequence[pulumi.Input[str]]]
|
537
|
+
"""
|
538
|
+
Values associated with the tag key.
|
539
|
+
"""
|
540
|
+
elif False:
|
541
|
+
StepMonitorTagArgsDict: TypeAlias = Mapping[str, Any]
|
542
|
+
|
386
543
|
@pulumi.input_type
|
387
544
|
class StepMonitorTagArgs:
|
388
545
|
def __init__(__self__, *,
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = ['AlertConditionArgs', 'AlertCondition']
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -120,9 +125,6 @@ def get_private_location(account_id: Optional[str] = None,
|
|
120
125
|
id=pulumi.get(__ret__, 'id'),
|
121
126
|
keys=pulumi.get(__ret__, 'keys'),
|
122
127
|
name=pulumi.get(__ret__, 'name'))
|
123
|
-
|
124
|
-
|
125
|
-
@_utilities.lift_output_func(get_private_location)
|
126
128
|
def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
127
129
|
keys: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
128
130
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -157,4 +159,14 @@ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]
|
|
157
159
|
:param Sequence[str] keys: The key of the private location.
|
158
160
|
:param str name: The name of the Synthetics monitor private location.
|
159
161
|
"""
|
160
|
-
|
162
|
+
__args__ = dict()
|
163
|
+
__args__['accountId'] = account_id
|
164
|
+
__args__['keys'] = keys
|
165
|
+
__args__['name'] = name
|
166
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
167
|
+
__ret__ = pulumi.runtime.invoke_output('newrelic:synthetics/getPrivateLocation:getPrivateLocation', __args__, opts=opts, typ=GetPrivateLocationResult)
|
168
|
+
return __ret__.apply(lambda __response__: GetPrivateLocationResult(
|
169
|
+
account_id=pulumi.get(__response__, 'account_id'),
|
170
|
+
id=pulumi.get(__response__, 'id'),
|
171
|
+
keys=pulumi.get(__response__, 'keys'),
|
172
|
+
name=pulumi.get(__response__, 'name')))
|