pulumi-newrelic 5.23.0__py3-none-any.whl → 5.23.0a1711707796__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 +270 -183
- pulumi_newrelic/account_management.py +20 -20
- pulumi_newrelic/alert_channel.py +92 -76
- pulumi_newrelic/alert_condition.py +163 -104
- pulumi_newrelic/alert_muting_rule.py +35 -33
- pulumi_newrelic/alert_policy.py +43 -68
- pulumi_newrelic/alert_policy_channel.py +8 -12
- pulumi_newrelic/cloud/_inputs.py +1072 -322
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +6 -4
- pulumi_newrelic/cloud/aws_integrations.py +15 -13
- pulumi_newrelic/cloud/aws_link_account.py +6 -4
- pulumi_newrelic/cloud/azure_integrations.py +12 -10
- pulumi_newrelic/cloud/azure_link_account.py +6 -4
- pulumi_newrelic/cloud/gcp_integrations.py +6 -6
- pulumi_newrelic/cloud/gcp_link_account.py +6 -4
- pulumi_newrelic/cloud/outputs.py +1072 -322
- pulumi_newrelic/data_partition_rule.py +4 -0
- pulumi_newrelic/entity_tags.py +17 -13
- pulumi_newrelic/events_to_metrics_rule.py +4 -2
- pulumi_newrelic/get_account.py +4 -0
- pulumi_newrelic/get_application.py +10 -8
- pulumi_newrelic/get_authentication_domain.py +8 -4
- pulumi_newrelic/get_cloud_account.py +4 -0
- pulumi_newrelic/get_entity.py +32 -28
- pulumi_newrelic/get_group.py +8 -42
- pulumi_newrelic/get_key_transaction.py +10 -8
- pulumi_newrelic/get_notification_destination.py +1 -20
- pulumi_newrelic/get_obfuscation_expression.py +4 -2
- pulumi_newrelic/get_service_level_alert_helper.py +46 -22
- pulumi_newrelic/get_test_grok_pattern.py +6 -4
- pulumi_newrelic/get_user.py +4 -0
- pulumi_newrelic/group.py +42 -40
- pulumi_newrelic/infra_alert_condition.py +145 -154
- pulumi_newrelic/insights/event.py +25 -8
- pulumi_newrelic/log_parsing_rule.py +10 -6
- pulumi_newrelic/monitor_downtime.py +193 -174
- pulumi_newrelic/notification_channel.py +150 -124
- pulumi_newrelic/notification_destination.py +1 -95
- pulumi_newrelic/nrql_alert_condition.py +48 -38
- pulumi_newrelic/nrql_drop_rule.py +38 -34
- pulumi_newrelic/obfuscation_expression.py +4 -2
- pulumi_newrelic/obfuscation_rule.py +4 -4
- pulumi_newrelic/one_dashboard.py +48 -42
- pulumi_newrelic/one_dashboard_raw.py +86 -86
- pulumi_newrelic/outputs.py +270 -180
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +36 -20
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +40 -158
- pulumi_newrelic/service_level.py +123 -38
- pulumi_newrelic/synthetics/alert_condition.py +78 -34
- pulumi_newrelic/synthetics/broken_links_monitor.py +20 -18
- pulumi_newrelic/synthetics/cert_check_monitor.py +18 -16
- pulumi_newrelic/synthetics/get_private_location.py +8 -0
- pulumi_newrelic/synthetics/get_secure_credential.py +12 -0
- pulumi_newrelic/synthetics/monitor.py +52 -48
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +83 -69
- pulumi_newrelic/synthetics/private_location.py +6 -6
- pulumi_newrelic/synthetics/script_monitor.py +42 -38
- pulumi_newrelic/synthetics/secure_credential.py +22 -25
- pulumi_newrelic/synthetics/step_monitor.py +20 -18
- pulumi_newrelic/user.py +10 -8
- pulumi_newrelic/workflow.py +24 -20
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711707796.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1711707796.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711707796.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711707796.dist-info}/top_level.txt +0 -0
@@ -49,9 +49,9 @@ class WorkloadStatusConfigAutomaticArgs:
|
|
49
49
|
remaining_entities_rule: Optional[pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs']] = None,
|
50
50
|
rules: Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleArgs']]]] = None):
|
51
51
|
"""
|
52
|
-
:param pulumi.Input[bool] enabled: Whether the
|
53
|
-
:param pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs'] remaining_entities_rule: An additional meta-rule that can consider all entities that haven't been evaluated by any other rule.
|
54
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleArgs']]] rules:
|
52
|
+
:param pulumi.Input[bool] enabled: Whether the static status configuration is enabled or not.
|
53
|
+
:param pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs'] remaining_entities_rule: An additional meta-rule that can consider all entities that haven't been evaluated by any other rule. See Nested remaining_entities_rule blocks below for details.
|
54
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleArgs']]] rules: The input object used to represent a rollup strategy. See Nested rule blocks below for details.
|
55
55
|
"""
|
56
56
|
pulumi.set(__self__, "enabled", enabled)
|
57
57
|
if remaining_entities_rule is not None:
|
@@ -63,7 +63,7 @@ class WorkloadStatusConfigAutomaticArgs:
|
|
63
63
|
@pulumi.getter
|
64
64
|
def enabled(self) -> pulumi.Input[bool]:
|
65
65
|
"""
|
66
|
-
Whether the
|
66
|
+
Whether the static status configuration is enabled or not.
|
67
67
|
"""
|
68
68
|
return pulumi.get(self, "enabled")
|
69
69
|
|
@@ -75,7 +75,7 @@ class WorkloadStatusConfigAutomaticArgs:
|
|
75
75
|
@pulumi.getter(name="remainingEntitiesRule")
|
76
76
|
def remaining_entities_rule(self) -> Optional[pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs']]:
|
77
77
|
"""
|
78
|
-
An additional meta-rule that can consider all entities that haven't been evaluated by any other rule.
|
78
|
+
An additional meta-rule that can consider all entities that haven't been evaluated by any other rule. See Nested remaining_entities_rule blocks below for details.
|
79
79
|
"""
|
80
80
|
return pulumi.get(self, "remaining_entities_rule")
|
81
81
|
|
@@ -87,7 +87,7 @@ class WorkloadStatusConfigAutomaticArgs:
|
|
87
87
|
@pulumi.getter
|
88
88
|
def rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleArgs']]]]:
|
89
89
|
"""
|
90
|
-
|
90
|
+
The input object used to represent a rollup strategy. See Nested rule blocks below for details.
|
91
91
|
"""
|
92
92
|
return pulumi.get(self, "rules")
|
93
93
|
|
@@ -101,7 +101,7 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs:
|
|
101
101
|
def __init__(__self__, *,
|
102
102
|
remaining_entities_rule_rollup: pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs']):
|
103
103
|
"""
|
104
|
-
:param pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs'] remaining_entities_rule_rollup: The input object used to represent a rollup strategy.
|
104
|
+
:param pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs'] remaining_entities_rule_rollup: The input object used to represent a rollup strategy. See Nested remaining_entities_rule_rollup blocks below for details.
|
105
105
|
"""
|
106
106
|
pulumi.set(__self__, "remaining_entities_rule_rollup", remaining_entities_rule_rollup)
|
107
107
|
|
@@ -109,7 +109,7 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs:
|
|
109
109
|
@pulumi.getter(name="remainingEntitiesRuleRollup")
|
110
110
|
def remaining_entities_rule_rollup(self) -> pulumi.Input['WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs']:
|
111
111
|
"""
|
112
|
-
The input object used to represent a rollup strategy.
|
112
|
+
The input object used to represent a rollup strategy. See Nested remaining_entities_rule_rollup blocks below for details.
|
113
113
|
"""
|
114
114
|
return pulumi.get(self, "remaining_entities_rule_rollup")
|
115
115
|
|
@@ -194,9 +194,9 @@ class WorkloadStatusConfigAutomaticRuleArgs:
|
|
194
194
|
entity_guids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
195
195
|
nrql_queries: Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs']]]] = None):
|
196
196
|
"""
|
197
|
-
:param pulumi.Input['WorkloadStatusConfigAutomaticRuleRollupArgs'] rollup: The input object used to represent a rollup strategy.
|
198
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entity_guids: A list of entity GUIDs composing the rule.
|
199
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs']]] nrql_queries: A list of entity search queries used to retrieve the entities that compose the rule.
|
197
|
+
:param pulumi.Input['WorkloadStatusConfigAutomaticRuleRollupArgs'] rollup: The input object used to represent a rollup strategy. See Nested rollup blocks below for details.
|
198
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entity_guids: A list of entity GUIDs composing the rule. At least one of `entity_guids` or `nrql_query` must be defined.
|
199
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs']]] nrql_queries: 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.
|
200
200
|
"""
|
201
201
|
pulumi.set(__self__, "rollup", rollup)
|
202
202
|
if entity_guids is not None:
|
@@ -208,7 +208,7 @@ class WorkloadStatusConfigAutomaticRuleArgs:
|
|
208
208
|
@pulumi.getter
|
209
209
|
def rollup(self) -> pulumi.Input['WorkloadStatusConfigAutomaticRuleRollupArgs']:
|
210
210
|
"""
|
211
|
-
The input object used to represent a rollup strategy.
|
211
|
+
The input object used to represent a rollup strategy. See Nested rollup blocks below for details.
|
212
212
|
"""
|
213
213
|
return pulumi.get(self, "rollup")
|
214
214
|
|
@@ -220,7 +220,7 @@ class WorkloadStatusConfigAutomaticRuleArgs:
|
|
220
220
|
@pulumi.getter(name="entityGuids")
|
221
221
|
def entity_guids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
222
222
|
"""
|
223
|
-
A list of entity GUIDs composing the rule.
|
223
|
+
A list of entity GUIDs composing the rule. At least one of `entity_guids` or `nrql_query` must be defined.
|
224
224
|
"""
|
225
225
|
return pulumi.get(self, "entity_guids")
|
226
226
|
|
@@ -232,7 +232,7 @@ class WorkloadStatusConfigAutomaticRuleArgs:
|
|
232
232
|
@pulumi.getter(name="nrqlQueries")
|
233
233
|
def nrql_queries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs']]]]:
|
234
234
|
"""
|
235
|
-
A list of entity search queries used to retrieve the entities that compose the rule.
|
235
|
+
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.
|
236
236
|
"""
|
237
237
|
return pulumi.get(self, "nrql_queries")
|
238
238
|
|
@@ -327,7 +327,7 @@ class WorkloadStatusConfigStaticArgs:
|
|
327
327
|
"""
|
328
328
|
:param pulumi.Input[bool] enabled: Whether the static status configuration is enabled or not.
|
329
329
|
:param pulumi.Input[str] status: The status of the workload.
|
330
|
-
:param pulumi.Input[str] description:
|
330
|
+
:param pulumi.Input[str] description: Relevant information about the workload.
|
331
331
|
:param pulumi.Input[str] summary: A short description of the status of the workload.
|
332
332
|
"""
|
333
333
|
pulumi.set(__self__, "enabled", enabled)
|
@@ -365,7 +365,7 @@ class WorkloadStatusConfigStaticArgs:
|
|
365
365
|
@pulumi.getter
|
366
366
|
def description(self) -> Optional[pulumi.Input[str]]:
|
367
367
|
"""
|
368
|
-
|
368
|
+
Relevant information about the workload.
|
369
369
|
"""
|
370
370
|
return pulumi.get(self, "description")
|
371
371
|
|
@@ -23,9 +23,11 @@ class ApplicationSettingsArgs:
|
|
23
23
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
24
24
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
25
25
|
|
26
|
+
<!--Start PulumiCodeChooser -->
|
27
|
+
```python
|
28
|
+
import pulumi
|
26
29
|
```
|
27
|
-
|
28
|
-
```
|
30
|
+
<!--End PulumiCodeChooser -->
|
29
31
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
30
32
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
31
33
|
"""
|
@@ -53,9 +55,11 @@ class ApplicationSettingsArgs:
|
|
53
55
|
"""
|
54
56
|
Enable or disable real user monitoring for the New Relic application.
|
55
57
|
|
58
|
+
<!--Start PulumiCodeChooser -->
|
59
|
+
```python
|
60
|
+
import pulumi
|
56
61
|
```
|
57
|
-
|
58
|
-
```
|
62
|
+
<!--End PulumiCodeChooser -->
|
59
63
|
"""
|
60
64
|
return pulumi.get(self, "enable_real_user_monitoring")
|
61
65
|
|
@@ -100,9 +104,11 @@ class _ApplicationSettingsState:
|
|
100
104
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
101
105
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
102
106
|
|
107
|
+
<!--Start PulumiCodeChooser -->
|
108
|
+
```python
|
109
|
+
import pulumi
|
103
110
|
```
|
104
|
-
|
105
|
-
```
|
111
|
+
<!--End PulumiCodeChooser -->
|
106
112
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
107
113
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
108
114
|
"""
|
@@ -133,9 +139,11 @@ class _ApplicationSettingsState:
|
|
133
139
|
"""
|
134
140
|
Enable or disable real user monitoring for the New Relic application.
|
135
141
|
|
142
|
+
<!--Start PulumiCodeChooser -->
|
143
|
+
```python
|
144
|
+
import pulumi
|
136
145
|
```
|
137
|
-
|
138
|
-
```
|
146
|
+
<!--End PulumiCodeChooser -->
|
139
147
|
"""
|
140
148
|
return pulumi.get(self, "enable_real_user_monitoring")
|
141
149
|
|
@@ -187,16 +195,17 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
187
195
|
|
188
196
|
## Example Usage
|
189
197
|
|
198
|
+
<!--Start PulumiCodeChooser -->
|
190
199
|
```python
|
191
200
|
import pulumi
|
192
201
|
import pulumi_newrelic as newrelic
|
193
202
|
|
194
203
|
app = newrelic.plugins.ApplicationSettings("app",
|
195
|
-
name="my-app",
|
196
204
|
app_apdex_threshold=0.7,
|
197
|
-
|
198
|
-
|
205
|
+
enable_real_user_monitoring=False,
|
206
|
+
end_user_apdex_threshold=0.8)
|
199
207
|
```
|
208
|
+
<!--End PulumiCodeChooser -->
|
200
209
|
|
201
210
|
## Notes
|
202
211
|
|
@@ -216,9 +225,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
216
225
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
217
226
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
218
227
|
|
228
|
+
<!--Start PulumiCodeChooser -->
|
229
|
+
```python
|
230
|
+
import pulumi
|
219
231
|
```
|
220
|
-
|
221
|
-
```
|
232
|
+
<!--End PulumiCodeChooser -->
|
222
233
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
223
234
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
224
235
|
"""
|
@@ -237,16 +248,17 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
237
248
|
|
238
249
|
## Example Usage
|
239
250
|
|
251
|
+
<!--Start PulumiCodeChooser -->
|
240
252
|
```python
|
241
253
|
import pulumi
|
242
254
|
import pulumi_newrelic as newrelic
|
243
255
|
|
244
256
|
app = newrelic.plugins.ApplicationSettings("app",
|
245
|
-
name="my-app",
|
246
257
|
app_apdex_threshold=0.7,
|
247
|
-
|
248
|
-
|
258
|
+
enable_real_user_monitoring=False,
|
259
|
+
end_user_apdex_threshold=0.8)
|
249
260
|
```
|
261
|
+
<!--End PulumiCodeChooser -->
|
250
262
|
|
251
263
|
## Notes
|
252
264
|
|
@@ -323,9 +335,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
323
335
|
:param pulumi.Input[float] app_apdex_threshold: The apdex threshold for the New Relic application.
|
324
336
|
:param pulumi.Input[bool] enable_real_user_monitoring: Enable or disable real user monitoring for the New Relic application.
|
325
337
|
|
338
|
+
<!--Start PulumiCodeChooser -->
|
339
|
+
```python
|
340
|
+
import pulumi
|
326
341
|
```
|
327
|
-
|
328
|
-
```
|
342
|
+
<!--End PulumiCodeChooser -->
|
329
343
|
:param pulumi.Input[float] end_user_apdex_threshold: The user's apdex threshold for the New Relic application.
|
330
344
|
:param pulumi.Input[str] name: The name of the application in New Relic APM.
|
331
345
|
"""
|
@@ -353,9 +367,11 @@ class ApplicationSettings(pulumi.CustomResource):
|
|
353
367
|
"""
|
354
368
|
Enable or disable real user monitoring for the New Relic application.
|
355
369
|
|
370
|
+
<!--Start PulumiCodeChooser -->
|
371
|
+
```python
|
372
|
+
import pulumi
|
356
373
|
```
|
357
|
-
|
358
|
-
```
|
374
|
+
<!--End PulumiCodeChooser -->
|
359
375
|
"""
|
360
376
|
return pulumi.get(self, "enable_real_user_monitoring")
|
361
377
|
|
@@ -63,9 +63,9 @@ class WorkloadStatusConfigAutomatic(dict):
|
|
63
63
|
remaining_entities_rule: Optional['outputs.WorkloadStatusConfigAutomaticRemainingEntitiesRule'] = None,
|
64
64
|
rules: Optional[Sequence['outputs.WorkloadStatusConfigAutomaticRule']] = None):
|
65
65
|
"""
|
66
|
-
:param bool enabled: Whether the
|
67
|
-
:param 'WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs' remaining_entities_rule: An additional meta-rule that can consider all entities that haven't been evaluated by any other rule.
|
68
|
-
:param Sequence['WorkloadStatusConfigAutomaticRuleArgs'] rules:
|
66
|
+
:param bool enabled: Whether the static status configuration is enabled or not.
|
67
|
+
:param 'WorkloadStatusConfigAutomaticRemainingEntitiesRuleArgs' remaining_entities_rule: An additional meta-rule that can consider all entities that haven't been evaluated by any other rule. See Nested remaining_entities_rule blocks below for details.
|
68
|
+
:param Sequence['WorkloadStatusConfigAutomaticRuleArgs'] rules: The input object used to represent a rollup strategy. See Nested rule blocks below for details.
|
69
69
|
"""
|
70
70
|
pulumi.set(__self__, "enabled", enabled)
|
71
71
|
if remaining_entities_rule is not None:
|
@@ -77,7 +77,7 @@ class WorkloadStatusConfigAutomatic(dict):
|
|
77
77
|
@pulumi.getter
|
78
78
|
def enabled(self) -> bool:
|
79
79
|
"""
|
80
|
-
Whether the
|
80
|
+
Whether the static status configuration is enabled or not.
|
81
81
|
"""
|
82
82
|
return pulumi.get(self, "enabled")
|
83
83
|
|
@@ -85,7 +85,7 @@ class WorkloadStatusConfigAutomatic(dict):
|
|
85
85
|
@pulumi.getter(name="remainingEntitiesRule")
|
86
86
|
def remaining_entities_rule(self) -> Optional['outputs.WorkloadStatusConfigAutomaticRemainingEntitiesRule']:
|
87
87
|
"""
|
88
|
-
An additional meta-rule that can consider all entities that haven't been evaluated by any other rule.
|
88
|
+
An additional meta-rule that can consider all entities that haven't been evaluated by any other rule. See Nested remaining_entities_rule blocks below for details.
|
89
89
|
"""
|
90
90
|
return pulumi.get(self, "remaining_entities_rule")
|
91
91
|
|
@@ -93,7 +93,7 @@ class WorkloadStatusConfigAutomatic(dict):
|
|
93
93
|
@pulumi.getter
|
94
94
|
def rules(self) -> Optional[Sequence['outputs.WorkloadStatusConfigAutomaticRule']]:
|
95
95
|
"""
|
96
|
-
|
96
|
+
The input object used to represent a rollup strategy. See Nested rule blocks below for details.
|
97
97
|
"""
|
98
98
|
return pulumi.get(self, "rules")
|
99
99
|
|
@@ -120,7 +120,7 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRule(dict):
|
|
120
120
|
def __init__(__self__, *,
|
121
121
|
remaining_entities_rule_rollup: 'outputs.WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollup'):
|
122
122
|
"""
|
123
|
-
:param 'WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs' remaining_entities_rule_rollup: The input object used to represent a rollup strategy.
|
123
|
+
:param 'WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollupArgs' remaining_entities_rule_rollup: The input object used to represent a rollup strategy. See Nested remaining_entities_rule_rollup blocks below for details.
|
124
124
|
"""
|
125
125
|
pulumi.set(__self__, "remaining_entities_rule_rollup", remaining_entities_rule_rollup)
|
126
126
|
|
@@ -128,7 +128,7 @@ class WorkloadStatusConfigAutomaticRemainingEntitiesRule(dict):
|
|
128
128
|
@pulumi.getter(name="remainingEntitiesRuleRollup")
|
129
129
|
def remaining_entities_rule_rollup(self) -> 'outputs.WorkloadStatusConfigAutomaticRemainingEntitiesRuleRemainingEntitiesRuleRollup':
|
130
130
|
"""
|
131
|
-
The input object used to represent a rollup strategy.
|
131
|
+
The input object used to represent a rollup strategy. See Nested remaining_entities_rule_rollup blocks below for details.
|
132
132
|
"""
|
133
133
|
return pulumi.get(self, "remaining_entities_rule_rollup")
|
134
134
|
|
@@ -233,9 +233,9 @@ class WorkloadStatusConfigAutomaticRule(dict):
|
|
233
233
|
entity_guids: Optional[Sequence[str]] = None,
|
234
234
|
nrql_queries: Optional[Sequence['outputs.WorkloadStatusConfigAutomaticRuleNrqlQuery']] = None):
|
235
235
|
"""
|
236
|
-
:param 'WorkloadStatusConfigAutomaticRuleRollupArgs' rollup: The input object used to represent a rollup strategy.
|
237
|
-
:param Sequence[str] entity_guids: A list of entity GUIDs composing the rule.
|
238
|
-
:param Sequence['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs'] nrql_queries: A list of entity search queries used to retrieve the entities that compose the rule.
|
236
|
+
:param 'WorkloadStatusConfigAutomaticRuleRollupArgs' rollup: The input object used to represent a rollup strategy. See Nested rollup blocks below for details.
|
237
|
+
:param Sequence[str] entity_guids: A list of entity GUIDs composing the rule. At least one of `entity_guids` or `nrql_query` must be defined.
|
238
|
+
:param Sequence['WorkloadStatusConfigAutomaticRuleNrqlQueryArgs'] nrql_queries: 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.
|
239
239
|
"""
|
240
240
|
pulumi.set(__self__, "rollup", rollup)
|
241
241
|
if entity_guids is not None:
|
@@ -247,7 +247,7 @@ class WorkloadStatusConfigAutomaticRule(dict):
|
|
247
247
|
@pulumi.getter
|
248
248
|
def rollup(self) -> 'outputs.WorkloadStatusConfigAutomaticRuleRollup':
|
249
249
|
"""
|
250
|
-
The input object used to represent a rollup strategy.
|
250
|
+
The input object used to represent a rollup strategy. See Nested rollup blocks below for details.
|
251
251
|
"""
|
252
252
|
return pulumi.get(self, "rollup")
|
253
253
|
|
@@ -255,7 +255,7 @@ class WorkloadStatusConfigAutomaticRule(dict):
|
|
255
255
|
@pulumi.getter(name="entityGuids")
|
256
256
|
def entity_guids(self) -> Optional[Sequence[str]]:
|
257
257
|
"""
|
258
|
-
A list of entity GUIDs composing the rule.
|
258
|
+
A list of entity GUIDs composing the rule. At least one of `entity_guids` or `nrql_query` must be defined.
|
259
259
|
"""
|
260
260
|
return pulumi.get(self, "entity_guids")
|
261
261
|
|
@@ -263,7 +263,7 @@ class WorkloadStatusConfigAutomaticRule(dict):
|
|
263
263
|
@pulumi.getter(name="nrqlQueries")
|
264
264
|
def nrql_queries(self) -> Optional[Sequence['outputs.WorkloadStatusConfigAutomaticRuleNrqlQuery']]:
|
265
265
|
"""
|
266
|
-
A list of entity search queries used to retrieve the entities that compose the rule.
|
266
|
+
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.
|
267
267
|
"""
|
268
268
|
return pulumi.get(self, "nrql_queries")
|
269
269
|
|
@@ -357,7 +357,7 @@ class WorkloadStatusConfigStatic(dict):
|
|
357
357
|
"""
|
358
358
|
:param bool enabled: Whether the static status configuration is enabled or not.
|
359
359
|
:param str status: The status of the workload.
|
360
|
-
:param str description:
|
360
|
+
:param str description: Relevant information about the workload.
|
361
361
|
:param str summary: A short description of the status of the workload.
|
362
362
|
"""
|
363
363
|
pulumi.set(__self__, "enabled", enabled)
|
@@ -387,7 +387,7 @@ class WorkloadStatusConfigStatic(dict):
|
|
387
387
|
@pulumi.getter
|
388
388
|
def description(self) -> Optional[str]:
|
389
389
|
"""
|
390
|
-
|
390
|
+
Relevant information about the workload.
|
391
391
|
"""
|
392
392
|
return pulumi.get(self, "description")
|
393
393
|
|