pulumi-newrelic 5.23.0a1713561620__py3-none-any.whl → 5.23.0a1713984329__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 +183 -270
- pulumi_newrelic/account_management.py +14 -18
- pulumi_newrelic/alert_channel.py +28 -56
- pulumi_newrelic/alert_condition.py +84 -133
- pulumi_newrelic/alert_muting_rule.py +21 -25
- pulumi_newrelic/alert_policy.py +42 -33
- pulumi_newrelic/alert_policy_channel.py +0 -4
- pulumi_newrelic/cloud/_inputs.py +322 -1072
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +0 -4
- pulumi_newrelic/cloud/aws_integrations.py +7 -11
- pulumi_newrelic/cloud/aws_link_account.py +0 -4
- pulumi_newrelic/cloud/azure_integrations.py +0 -4
- pulumi_newrelic/cloud/azure_link_account.py +0 -4
- pulumi_newrelic/cloud/gcp_integrations.py +0 -4
- pulumi_newrelic/cloud/gcp_link_account.py +0 -4
- pulumi_newrelic/cloud/outputs.py +322 -1072
- pulumi_newrelic/data_partition_rule.py +0 -4
- pulumi_newrelic/entity_tags.py +7 -11
- pulumi_newrelic/events_to_metrics_rule.py +0 -4
- pulumi_newrelic/get_account.py +0 -4
- pulumi_newrelic/get_application.py +0 -4
- pulumi_newrelic/get_authentication_domain.py +0 -4
- pulumi_newrelic/get_cloud_account.py +0 -4
- pulumi_newrelic/get_entity.py +0 -16
- pulumi_newrelic/get_group.py +0 -8
- pulumi_newrelic/get_key_transaction.py +0 -4
- pulumi_newrelic/get_notification_destination.py +20 -1
- pulumi_newrelic/get_obfuscation_expression.py +0 -4
- pulumi_newrelic/get_service_level_alert_helper.py +0 -30
- pulumi_newrelic/get_test_grok_pattern.py +0 -4
- pulumi_newrelic/get_user.py +0 -4
- pulumi_newrelic/group.py +0 -12
- pulumi_newrelic/infra_alert_condition.py +126 -113
- pulumi_newrelic/insights/event.py +0 -17
- pulumi_newrelic/log_parsing_rule.py +0 -8
- pulumi_newrelic/monitor_downtime.py +70 -101
- pulumi_newrelic/notification_channel.py +0 -44
- pulumi_newrelic/notification_destination.py +95 -1
- pulumi_newrelic/nrql_alert_condition.py +0 -20
- pulumi_newrelic/nrql_drop_rule.py +28 -32
- pulumi_newrelic/obfuscation_expression.py +0 -4
- pulumi_newrelic/obfuscation_rule.py +0 -4
- pulumi_newrelic/one_dashboard.py +42 -48
- pulumi_newrelic/one_dashboard_raw.py +0 -4
- pulumi_newrelic/outputs.py +180 -270
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +0 -4
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +28 -48
- pulumi_newrelic/service_level.py +0 -91
- pulumi_newrelic/synthetics/alert_condition.py +14 -50
- pulumi_newrelic/synthetics/broken_links_monitor.py +0 -8
- pulumi_newrelic/synthetics/cert_check_monitor.py +0 -8
- pulumi_newrelic/synthetics/get_private_location.py +0 -8
- pulumi_newrelic/synthetics/get_secure_credential.py +0 -12
- pulumi_newrelic/synthetics/monitor.py +0 -16
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +49 -71
- pulumi_newrelic/synthetics/private_location.py +0 -4
- pulumi_newrelic/synthetics/script_monitor.py +4 -20
- pulumi_newrelic/synthetics/secure_credential.py +21 -18
- pulumi_newrelic/synthetics/step_monitor.py +4 -12
- pulumi_newrelic/user.py +0 -4
- pulumi_newrelic/workflow.py +0 -16
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713984329.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1713984329.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0a1713561620.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713984329.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713984329.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -23,8 +23,10 @@ __all__ = [
|
|
23
23
|
'MonitorDowntimeFrequencyDaysOfWeekArgs',
|
24
24
|
'NotificationChannelPropertyArgs',
|
25
25
|
'NotificationDestinationAuthBasicArgs',
|
26
|
+
'NotificationDestinationAuthCustomHeaderArgs',
|
26
27
|
'NotificationDestinationAuthTokenArgs',
|
27
28
|
'NotificationDestinationPropertyArgs',
|
29
|
+
'NotificationDestinationSecureUrlArgs',
|
28
30
|
'NrqlAlertConditionCriticalArgs',
|
29
31
|
'NrqlAlertConditionNrqlArgs',
|
30
32
|
'NrqlAlertConditionTermArgs',
|
@@ -165,6 +167,7 @@ __all__ = [
|
|
165
167
|
'WorkflowIssuesFilterArgs',
|
166
168
|
'WorkflowIssuesFilterPredicateArgs',
|
167
169
|
'GetEntityTagArgs',
|
170
|
+
'GetNotificationDestinationSecureUrlArgs',
|
168
171
|
]
|
169
172
|
|
170
173
|
@pulumi.input_type
|
@@ -193,25 +196,25 @@ class AlertChannelConfigArgs:
|
|
193
196
|
user_id: Optional[pulumi.Input[str]] = None):
|
194
197
|
"""
|
195
198
|
:param pulumi.Input[str] api_key: The API key for integrating with OpsGenie.
|
196
|
-
:param pulumi.Input[str] auth_password: Specifies an authentication password for use with a channel.
|
197
|
-
:param pulumi.Input[str] auth_type: Specifies an authentication method for use with a channel.
|
198
|
-
:param pulumi.Input[str] auth_username: Specifies an authentication username for use with a channel.
|
199
|
+
:param pulumi.Input[str] auth_password: Specifies an authentication password for use with a channel. Supported by the webhook channel type.
|
200
|
+
:param pulumi.Input[str] auth_type: Specifies an authentication method for use with a channel. Supported by the webhook channel type. Only HTTP basic authentication is currently supported via the value BASIC.
|
201
|
+
:param pulumi.Input[str] auth_username: Specifies an authentication username for use with a channel. Supported by the webhook channel type.
|
199
202
|
:param pulumi.Input[str] base_url: The base URL of the webhook destination.
|
200
203
|
:param pulumi.Input[str] channel: The Slack channel to send notifications to.
|
201
204
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] headers: A map of key/value pairs that represents extra HTTP headers to be sent along with the webhook payload.
|
202
|
-
:param pulumi.Input[str] headers_string: Use instead of
|
203
|
-
:param pulumi.Input[str] include_json_attachment:
|
205
|
+
:param pulumi.Input[str] headers_string: Use instead of headers if the desired payload is more complex than a list of key/value pairs (e.g. a set of headers that makes use of nested objects). The value provided should be a valid JSON string with escaped double quotes. Conflicts with headers.
|
206
|
+
:param pulumi.Input[str] include_json_attachment: true or false. Flag for whether or not to attach a JSON document containing information about the associated alert to the email that is sent to recipients.
|
204
207
|
:param pulumi.Input[str] key: The key for integrating with VictorOps.
|
205
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] payload: A map of key/value pairs that represents the webhook payload.
|
206
|
-
:param pulumi.Input[str] payload_string: Use instead of
|
207
|
-
:param pulumi.Input[str] payload_type: Can either be
|
208
|
-
:param pulumi.Input[str] recipients: A set of recipients for targeting notifications.
|
209
|
-
:param pulumi.Input[str] region: The data center region to store your data.
|
208
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] payload: A map of key/value pairs that represents the webhook payload. Must provide payload_type if setting this argument.
|
209
|
+
:param pulumi.Input[str] payload_string: Use instead of payload if the desired payload is more complex than a list of key/value pairs (e.g. a payload that makes use of nested objects). The value provided should be a valid JSON string with escaped double quotes. Conflicts with payload.
|
210
|
+
:param pulumi.Input[str] payload_type: Can either be application/json or application/x-www-form-urlencoded. The payload_type argument is required if payload is set.
|
211
|
+
:param pulumi.Input[str] recipients: A set of recipients for targeting notifications. Multiple values are comma separated.
|
212
|
+
:param pulumi.Input[str] region: The data center region to store your data. Valid values are US and EU. Default is US.
|
210
213
|
:param pulumi.Input[str] route_key: The route key for integrating with VictorOps.
|
211
214
|
:param pulumi.Input[str] service_key: Specifies the service key for integrating with Pagerduty.
|
212
215
|
:param pulumi.Input[str] tags: A set of tags for targeting notifications. Multiple values are comma separated.
|
213
216
|
:param pulumi.Input[str] teams: A set of teams for targeting notifications. Multiple values are comma separated.
|
214
|
-
:param pulumi.Input[str] url:
|
217
|
+
:param pulumi.Input[str] url: Your organization's Slack URL.
|
215
218
|
:param pulumi.Input[str] user_id: The user ID for use with the user channel type.
|
216
219
|
"""
|
217
220
|
if api_key is not None:
|
@@ -273,7 +276,7 @@ class AlertChannelConfigArgs:
|
|
273
276
|
@pulumi.getter(name="authPassword")
|
274
277
|
def auth_password(self) -> Optional[pulumi.Input[str]]:
|
275
278
|
"""
|
276
|
-
Specifies an authentication password for use with a channel.
|
279
|
+
Specifies an authentication password for use with a channel. Supported by the webhook channel type.
|
277
280
|
"""
|
278
281
|
return pulumi.get(self, "auth_password")
|
279
282
|
|
@@ -285,7 +288,7 @@ class AlertChannelConfigArgs:
|
|
285
288
|
@pulumi.getter(name="authType")
|
286
289
|
def auth_type(self) -> Optional[pulumi.Input[str]]:
|
287
290
|
"""
|
288
|
-
Specifies an authentication method for use with a channel.
|
291
|
+
Specifies an authentication method for use with a channel. Supported by the webhook channel type. Only HTTP basic authentication is currently supported via the value BASIC.
|
289
292
|
"""
|
290
293
|
return pulumi.get(self, "auth_type")
|
291
294
|
|
@@ -297,7 +300,7 @@ class AlertChannelConfigArgs:
|
|
297
300
|
@pulumi.getter(name="authUsername")
|
298
301
|
def auth_username(self) -> Optional[pulumi.Input[str]]:
|
299
302
|
"""
|
300
|
-
Specifies an authentication username for use with a channel.
|
303
|
+
Specifies an authentication username for use with a channel. Supported by the webhook channel type.
|
301
304
|
"""
|
302
305
|
return pulumi.get(self, "auth_username")
|
303
306
|
|
@@ -345,7 +348,7 @@ class AlertChannelConfigArgs:
|
|
345
348
|
@pulumi.getter(name="headersString")
|
346
349
|
def headers_string(self) -> Optional[pulumi.Input[str]]:
|
347
350
|
"""
|
348
|
-
Use instead of
|
351
|
+
Use instead of headers if the desired payload is more complex than a list of key/value pairs (e.g. a set of headers that makes use of nested objects). The value provided should be a valid JSON string with escaped double quotes. Conflicts with headers.
|
349
352
|
"""
|
350
353
|
return pulumi.get(self, "headers_string")
|
351
354
|
|
@@ -357,7 +360,7 @@ class AlertChannelConfigArgs:
|
|
357
360
|
@pulumi.getter(name="includeJsonAttachment")
|
358
361
|
def include_json_attachment(self) -> Optional[pulumi.Input[str]]:
|
359
362
|
"""
|
360
|
-
|
363
|
+
true or false. Flag for whether or not to attach a JSON document containing information about the associated alert to the email that is sent to recipients.
|
361
364
|
"""
|
362
365
|
return pulumi.get(self, "include_json_attachment")
|
363
366
|
|
@@ -381,7 +384,7 @@ class AlertChannelConfigArgs:
|
|
381
384
|
@pulumi.getter
|
382
385
|
def payload(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
383
386
|
"""
|
384
|
-
A map of key/value pairs that represents the webhook payload.
|
387
|
+
A map of key/value pairs that represents the webhook payload. Must provide payload_type if setting this argument.
|
385
388
|
"""
|
386
389
|
return pulumi.get(self, "payload")
|
387
390
|
|
@@ -393,7 +396,7 @@ class AlertChannelConfigArgs:
|
|
393
396
|
@pulumi.getter(name="payloadString")
|
394
397
|
def payload_string(self) -> Optional[pulumi.Input[str]]:
|
395
398
|
"""
|
396
|
-
Use instead of
|
399
|
+
Use instead of payload if the desired payload is more complex than a list of key/value pairs (e.g. a payload that makes use of nested objects). The value provided should be a valid JSON string with escaped double quotes. Conflicts with payload.
|
397
400
|
"""
|
398
401
|
return pulumi.get(self, "payload_string")
|
399
402
|
|
@@ -405,7 +408,7 @@ class AlertChannelConfigArgs:
|
|
405
408
|
@pulumi.getter(name="payloadType")
|
406
409
|
def payload_type(self) -> Optional[pulumi.Input[str]]:
|
407
410
|
"""
|
408
|
-
Can either be
|
411
|
+
Can either be application/json or application/x-www-form-urlencoded. The payload_type argument is required if payload is set.
|
409
412
|
"""
|
410
413
|
return pulumi.get(self, "payload_type")
|
411
414
|
|
@@ -417,7 +420,7 @@ class AlertChannelConfigArgs:
|
|
417
420
|
@pulumi.getter
|
418
421
|
def recipients(self) -> Optional[pulumi.Input[str]]:
|
419
422
|
"""
|
420
|
-
A set of recipients for targeting notifications.
|
423
|
+
A set of recipients for targeting notifications. Multiple values are comma separated.
|
421
424
|
"""
|
422
425
|
return pulumi.get(self, "recipients")
|
423
426
|
|
@@ -429,7 +432,7 @@ class AlertChannelConfigArgs:
|
|
429
432
|
@pulumi.getter
|
430
433
|
def region(self) -> Optional[pulumi.Input[str]]:
|
431
434
|
"""
|
432
|
-
The data center region to store your data.
|
435
|
+
The data center region to store your data. Valid values are US and EU. Default is US.
|
433
436
|
"""
|
434
437
|
return pulumi.get(self, "region")
|
435
438
|
|
@@ -489,7 +492,7 @@ class AlertChannelConfigArgs:
|
|
489
492
|
@pulumi.getter
|
490
493
|
def url(self) -> Optional[pulumi.Input[str]]:
|
491
494
|
"""
|
492
|
-
|
495
|
+
Your organization's Slack URL.
|
493
496
|
"""
|
494
497
|
return pulumi.get(self, "url")
|
495
498
|
|
@@ -600,8 +603,8 @@ class AlertMutingRuleConditionArgs:
|
|
600
603
|
conditions: pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]],
|
601
604
|
operator: pulumi.Input[str]):
|
602
605
|
"""
|
603
|
-
:param pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]] conditions: The individual MutingRuleConditions within the group.
|
604
|
-
:param pulumi.Input[str] operator: The operator used to combine all the MutingRuleConditions within the group.
|
606
|
+
:param pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]] conditions: The individual MutingRuleConditions within the group.
|
607
|
+
:param pulumi.Input[str] operator: The operator used to combine all the MutingRuleConditions within the group.
|
605
608
|
"""
|
606
609
|
pulumi.set(__self__, "conditions", conditions)
|
607
610
|
pulumi.set(__self__, "operator", operator)
|
@@ -610,7 +613,7 @@ class AlertMutingRuleConditionArgs:
|
|
610
613
|
@pulumi.getter
|
611
614
|
def conditions(self) -> pulumi.Input[Sequence[pulumi.Input['AlertMutingRuleConditionConditionArgs']]]:
|
612
615
|
"""
|
613
|
-
The individual MutingRuleConditions within the group.
|
616
|
+
The individual MutingRuleConditions within the group.
|
614
617
|
"""
|
615
618
|
return pulumi.get(self, "conditions")
|
616
619
|
|
@@ -622,7 +625,7 @@ class AlertMutingRuleConditionArgs:
|
|
622
625
|
@pulumi.getter
|
623
626
|
def operator(self) -> pulumi.Input[str]:
|
624
627
|
"""
|
625
|
-
The operator used to combine all the MutingRuleConditions within the group.
|
628
|
+
The operator used to combine all the MutingRuleConditions within the group.
|
626
629
|
"""
|
627
630
|
return pulumi.get(self, "operator")
|
628
631
|
|
@@ -638,8 +641,8 @@ class AlertMutingRuleConditionConditionArgs:
|
|
638
641
|
operator: pulumi.Input[str],
|
639
642
|
values: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
640
643
|
"""
|
641
|
-
:param pulumi.Input[str] attribute: The attribute on an incident.
|
642
|
-
:param pulumi.Input[str] operator: The operator used to
|
644
|
+
:param pulumi.Input[str] attribute: The attribute on an incident.
|
645
|
+
:param pulumi.Input[str] operator: The operator used to compare the attribute's value with the supplied value(s).
|
643
646
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] values: The value(s) to compare against the attribute's value.
|
644
647
|
"""
|
645
648
|
pulumi.set(__self__, "attribute", attribute)
|
@@ -650,7 +653,7 @@ class AlertMutingRuleConditionConditionArgs:
|
|
650
653
|
@pulumi.getter
|
651
654
|
def attribute(self) -> pulumi.Input[str]:
|
652
655
|
"""
|
653
|
-
The attribute on an incident.
|
656
|
+
The attribute on an incident.
|
654
657
|
"""
|
655
658
|
return pulumi.get(self, "attribute")
|
656
659
|
|
@@ -662,7 +665,7 @@ class AlertMutingRuleConditionConditionArgs:
|
|
662
665
|
@pulumi.getter
|
663
666
|
def operator(self) -> pulumi.Input[str]:
|
664
667
|
"""
|
665
|
-
The operator used to
|
668
|
+
The operator used to compare the attribute's value with the supplied value(s).
|
666
669
|
"""
|
667
670
|
return pulumi.get(self, "operator")
|
668
671
|
|
@@ -924,10 +927,8 @@ class MonitorDowntimeEndRepeatArgs:
|
|
924
927
|
on_date: Optional[pulumi.Input[str]] = None,
|
925
928
|
on_repeat: Optional[pulumi.Input[int]] = None):
|
926
929
|
"""
|
927
|
-
:param pulumi.Input[str] on_date:
|
928
|
-
:param pulumi.Input[int] on_repeat:
|
929
|
-
|
930
|
-
> **NOTE:** `end_repeat` **can only be used with the modes** `DAILY`, `MONTHLY` and `WEEKLY` and **is an optional argument** when monitor downtimes of these modes are created. Additionally, **either** `on_date` or `on_repeat` **are required to be specified with** `end_repeat`, but not both, as `on_date` and `on_repeat` are mutually exclusive.
|
930
|
+
:param pulumi.Input[str] on_date: A date, on which the Monitor Downtime's repeat cycle is expected to end.
|
931
|
+
:param pulumi.Input[int] on_repeat: Number of repetitions after which the Monitor Downtime's repeat cycle is expected to end.
|
931
932
|
"""
|
932
933
|
if on_date is not None:
|
933
934
|
pulumi.set(__self__, "on_date", on_date)
|
@@ -938,7 +939,7 @@ class MonitorDowntimeEndRepeatArgs:
|
|
938
939
|
@pulumi.getter(name="onDate")
|
939
940
|
def on_date(self) -> Optional[pulumi.Input[str]]:
|
940
941
|
"""
|
941
|
-
|
942
|
+
A date, on which the Monitor Downtime's repeat cycle is expected to end.
|
942
943
|
"""
|
943
944
|
return pulumi.get(self, "on_date")
|
944
945
|
|
@@ -950,9 +951,7 @@ class MonitorDowntimeEndRepeatArgs:
|
|
950
951
|
@pulumi.getter(name="onRepeat")
|
951
952
|
def on_repeat(self) -> Optional[pulumi.Input[int]]:
|
952
953
|
"""
|
953
|
-
|
954
|
-
|
955
|
-
> **NOTE:** `end_repeat` **can only be used with the modes** `DAILY`, `MONTHLY` and `WEEKLY` and **is an optional argument** when monitor downtimes of these modes are created. Additionally, **either** `on_date` or `on_repeat` **are required to be specified with** `end_repeat`, but not both, as `on_date` and `on_repeat` are mutually exclusive.
|
954
|
+
Number of repetitions after which the Monitor Downtime's repeat cycle is expected to end.
|
956
955
|
"""
|
957
956
|
return pulumi.get(self, "on_repeat")
|
958
957
|
|
@@ -967,8 +966,8 @@ class MonitorDowntimeFrequencyArgs:
|
|
967
966
|
days_of_months: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
968
967
|
days_of_week: Optional[pulumi.Input['MonitorDowntimeFrequencyDaysOfWeekArgs']] = None):
|
969
968
|
"""
|
970
|
-
:param pulumi.Input[Sequence[pulumi.Input[int]]] days_of_months: A list of
|
971
|
-
:param pulumi.Input['MonitorDowntimeFrequencyDaysOfWeekArgs'] days_of_week:
|
969
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] days_of_months: A numerical list of days of a month on which the Monitor Downtime is scheduled to run.
|
970
|
+
:param pulumi.Input['MonitorDowntimeFrequencyDaysOfWeekArgs'] days_of_week: A list of days of the week on which the Monitor Downtime is scheduled to run.
|
972
971
|
"""
|
973
972
|
if days_of_months is not None:
|
974
973
|
pulumi.set(__self__, "days_of_months", days_of_months)
|
@@ -979,7 +978,7 @@ class MonitorDowntimeFrequencyArgs:
|
|
979
978
|
@pulumi.getter(name="daysOfMonths")
|
980
979
|
def days_of_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
981
980
|
"""
|
982
|
-
A list of
|
981
|
+
A numerical list of days of a month on which the Monitor Downtime is scheduled to run.
|
983
982
|
"""
|
984
983
|
return pulumi.get(self, "days_of_months")
|
985
984
|
|
@@ -991,7 +990,7 @@ class MonitorDowntimeFrequencyArgs:
|
|
991
990
|
@pulumi.getter(name="daysOfWeek")
|
992
991
|
def days_of_week(self) -> Optional[pulumi.Input['MonitorDowntimeFrequencyDaysOfWeekArgs']]:
|
993
992
|
"""
|
994
|
-
|
993
|
+
A list of days of the week on which the Monitor Downtime is scheduled to run.
|
995
994
|
"""
|
996
995
|
return pulumi.get(self, "days_of_week")
|
997
996
|
|
@@ -1006,10 +1005,8 @@ class MonitorDowntimeFrequencyDaysOfWeekArgs:
|
|
1006
1005
|
ordinal_day_of_month: pulumi.Input[str],
|
1007
1006
|
week_day: pulumi.Input[str]):
|
1008
1007
|
"""
|
1009
|
-
:param pulumi.Input[str] ordinal_day_of_month:
|
1010
|
-
|
1011
|
-
> **NOTE:** `frequency` **can only be used with the mode** `MONTHLY`, and **is a required argument** with monthly monitor downtimes (if the `mode` is `MONTHLY`). Additionally, **either** `days_of_month` or `days_of_week` **are required to be specified with** `frequency`, but not both, as `days_of_month` and `days_of_week` are mutually exclusive. If `days_of_week` is specified, values of **both** of its nested arguments, `week_day` and `ordinal_day_of_month` **would need to be specified** too.
|
1012
|
-
:param pulumi.Input[str] week_day: A day of the week (one of `"SUNDAY"`, `"MONDAY"`, `"TUESDAY"`, `"WEDNESDAY"`, `"THURSDAY"`, `"FRIDAY"` or `"SATURDAY"`).
|
1008
|
+
:param pulumi.Input[str] ordinal_day_of_month: An occurrence of the day selected within the month.
|
1009
|
+
:param pulumi.Input[str] week_day: The day of the week on which the Monitor Downtime would run.
|
1013
1010
|
"""
|
1014
1011
|
pulumi.set(__self__, "ordinal_day_of_month", ordinal_day_of_month)
|
1015
1012
|
pulumi.set(__self__, "week_day", week_day)
|
@@ -1018,9 +1015,7 @@ class MonitorDowntimeFrequencyDaysOfWeekArgs:
|
|
1018
1015
|
@pulumi.getter(name="ordinalDayOfMonth")
|
1019
1016
|
def ordinal_day_of_month(self) -> pulumi.Input[str]:
|
1020
1017
|
"""
|
1021
|
-
|
1022
|
-
|
1023
|
-
> **NOTE:** `frequency` **can only be used with the mode** `MONTHLY`, and **is a required argument** with monthly monitor downtimes (if the `mode` is `MONTHLY`). Additionally, **either** `days_of_month` or `days_of_week` **are required to be specified with** `frequency`, but not both, as `days_of_month` and `days_of_week` are mutually exclusive. If `days_of_week` is specified, values of **both** of its nested arguments, `week_day` and `ordinal_day_of_month` **would need to be specified** too.
|
1018
|
+
An occurrence of the day selected within the month.
|
1024
1019
|
"""
|
1025
1020
|
return pulumi.get(self, "ordinal_day_of_month")
|
1026
1021
|
|
@@ -1032,7 +1027,7 @@ class MonitorDowntimeFrequencyDaysOfWeekArgs:
|
|
1032
1027
|
@pulumi.getter(name="weekDay")
|
1033
1028
|
def week_day(self) -> pulumi.Input[str]:
|
1034
1029
|
"""
|
1035
|
-
|
1030
|
+
The day of the week on which the Monitor Downtime would run.
|
1036
1031
|
"""
|
1037
1032
|
return pulumi.get(self, "week_day")
|
1038
1033
|
|
@@ -1049,12 +1044,10 @@ class NotificationChannelPropertyArgs:
|
|
1049
1044
|
display_value: Optional[pulumi.Input[str]] = None,
|
1050
1045
|
label: Optional[pulumi.Input[str]] = None):
|
1051
1046
|
"""
|
1052
|
-
:param pulumi.Input[str] key:
|
1053
|
-
:param pulumi.Input[str] value:
|
1054
|
-
:param pulumi.Input[str] display_value:
|
1055
|
-
|
1056
|
-
Each notification channel type supports a specific set of arguments for the `property` block:
|
1057
|
-
:param pulumi.Input[str] label: The notification property label.
|
1047
|
+
:param pulumi.Input[str] key: Notification property key.
|
1048
|
+
:param pulumi.Input[str] value: Notification property value.
|
1049
|
+
:param pulumi.Input[str] display_value: Notification property display key.
|
1050
|
+
:param pulumi.Input[str] label: Notification property label.
|
1058
1051
|
"""
|
1059
1052
|
pulumi.set(__self__, "key", key)
|
1060
1053
|
pulumi.set(__self__, "value", value)
|
@@ -1067,7 +1060,7 @@ class NotificationChannelPropertyArgs:
|
|
1067
1060
|
@pulumi.getter
|
1068
1061
|
def key(self) -> pulumi.Input[str]:
|
1069
1062
|
"""
|
1070
|
-
|
1063
|
+
Notification property key.
|
1071
1064
|
"""
|
1072
1065
|
return pulumi.get(self, "key")
|
1073
1066
|
|
@@ -1079,7 +1072,7 @@ class NotificationChannelPropertyArgs:
|
|
1079
1072
|
@pulumi.getter
|
1080
1073
|
def value(self) -> pulumi.Input[str]:
|
1081
1074
|
"""
|
1082
|
-
|
1075
|
+
Notification property value.
|
1083
1076
|
"""
|
1084
1077
|
return pulumi.get(self, "value")
|
1085
1078
|
|
@@ -1091,9 +1084,7 @@ class NotificationChannelPropertyArgs:
|
|
1091
1084
|
@pulumi.getter(name="displayValue")
|
1092
1085
|
def display_value(self) -> Optional[pulumi.Input[str]]:
|
1093
1086
|
"""
|
1094
|
-
|
1095
|
-
|
1096
|
-
Each notification channel type supports a specific set of arguments for the `property` block:
|
1087
|
+
Notification property display key.
|
1097
1088
|
"""
|
1098
1089
|
return pulumi.get(self, "display_value")
|
1099
1090
|
|
@@ -1105,7 +1096,7 @@ class NotificationChannelPropertyArgs:
|
|
1105
1096
|
@pulumi.getter
|
1106
1097
|
def label(self) -> Optional[pulumi.Input[str]]:
|
1107
1098
|
"""
|
1108
|
-
|
1099
|
+
Notification property label.
|
1109
1100
|
"""
|
1110
1101
|
return pulumi.get(self, "label")
|
1111
1102
|
|
@@ -1119,19 +1110,12 @@ class NotificationDestinationAuthBasicArgs:
|
|
1119
1110
|
def __init__(__self__, *,
|
1120
1111
|
password: pulumi.Input[str],
|
1121
1112
|
user: pulumi.Input[str]):
|
1122
|
-
"""
|
1123
|
-
:param pulumi.Input[str] password: Specifies an authentication password for use with a destination.
|
1124
|
-
:param pulumi.Input[str] user: The username of the basic auth.
|
1125
|
-
"""
|
1126
1113
|
pulumi.set(__self__, "password", password)
|
1127
1114
|
pulumi.set(__self__, "user", user)
|
1128
1115
|
|
1129
1116
|
@property
|
1130
1117
|
@pulumi.getter
|
1131
1118
|
def password(self) -> pulumi.Input[str]:
|
1132
|
-
"""
|
1133
|
-
Specifies an authentication password for use with a destination.
|
1134
|
-
"""
|
1135
1119
|
return pulumi.get(self, "password")
|
1136
1120
|
|
1137
1121
|
@password.setter
|
@@ -1141,9 +1125,6 @@ class NotificationDestinationAuthBasicArgs:
|
|
1141
1125
|
@property
|
1142
1126
|
@pulumi.getter
|
1143
1127
|
def user(self) -> pulumi.Input[str]:
|
1144
|
-
"""
|
1145
|
-
The username of the basic auth.
|
1146
|
-
"""
|
1147
1128
|
return pulumi.get(self, "user")
|
1148
1129
|
|
1149
1130
|
@user.setter
|
@@ -1151,14 +1132,38 @@ class NotificationDestinationAuthBasicArgs:
|
|
1151
1132
|
pulumi.set(self, "user", value)
|
1152
1133
|
|
1153
1134
|
|
1135
|
+
@pulumi.input_type
|
1136
|
+
class NotificationDestinationAuthCustomHeaderArgs:
|
1137
|
+
def __init__(__self__, *,
|
1138
|
+
key: pulumi.Input[str],
|
1139
|
+
value: pulumi.Input[str]):
|
1140
|
+
pulumi.set(__self__, "key", key)
|
1141
|
+
pulumi.set(__self__, "value", value)
|
1142
|
+
|
1143
|
+
@property
|
1144
|
+
@pulumi.getter
|
1145
|
+
def key(self) -> pulumi.Input[str]:
|
1146
|
+
return pulumi.get(self, "key")
|
1147
|
+
|
1148
|
+
@key.setter
|
1149
|
+
def key(self, value: pulumi.Input[str]):
|
1150
|
+
pulumi.set(self, "key", value)
|
1151
|
+
|
1152
|
+
@property
|
1153
|
+
@pulumi.getter
|
1154
|
+
def value(self) -> pulumi.Input[str]:
|
1155
|
+
return pulumi.get(self, "value")
|
1156
|
+
|
1157
|
+
@value.setter
|
1158
|
+
def value(self, value: pulumi.Input[str]):
|
1159
|
+
pulumi.set(self, "value", value)
|
1160
|
+
|
1161
|
+
|
1154
1162
|
@pulumi.input_type
|
1155
1163
|
class NotificationDestinationAuthTokenArgs:
|
1156
1164
|
def __init__(__self__, *,
|
1157
1165
|
token: pulumi.Input[str],
|
1158
1166
|
prefix: Optional[pulumi.Input[str]] = None):
|
1159
|
-
"""
|
1160
|
-
:param pulumi.Input[str] prefix: The prefix of the token auth.
|
1161
|
-
"""
|
1162
1167
|
pulumi.set(__self__, "token", token)
|
1163
1168
|
if prefix is not None:
|
1164
1169
|
pulumi.set(__self__, "prefix", prefix)
|
@@ -1175,9 +1180,6 @@ class NotificationDestinationAuthTokenArgs:
|
|
1175
1180
|
@property
|
1176
1181
|
@pulumi.getter
|
1177
1182
|
def prefix(self) -> Optional[pulumi.Input[str]]:
|
1178
|
-
"""
|
1179
|
-
The prefix of the token auth.
|
1180
|
-
"""
|
1181
1183
|
return pulumi.get(self, "prefix")
|
1182
1184
|
|
1183
1185
|
@prefix.setter
|
@@ -1193,12 +1195,10 @@ class NotificationDestinationPropertyArgs:
|
|
1193
1195
|
display_value: Optional[pulumi.Input[str]] = None,
|
1194
1196
|
label: Optional[pulumi.Input[str]] = None):
|
1195
1197
|
"""
|
1196
|
-
:param pulumi.Input[str] key:
|
1197
|
-
:param pulumi.Input[str] value:
|
1198
|
-
:param pulumi.Input[str] display_value:
|
1199
|
-
|
1200
|
-
Each notification destination type supports a specific set of arguments for the `property` block. See Additional Examples below for details:
|
1201
|
-
:param pulumi.Input[str] label: The notification property label.
|
1198
|
+
:param pulumi.Input[str] key: Notification property key.
|
1199
|
+
:param pulumi.Input[str] value: Notification property value.
|
1200
|
+
:param pulumi.Input[str] display_value: Notification property display key.
|
1201
|
+
:param pulumi.Input[str] label: Notification property label.
|
1202
1202
|
"""
|
1203
1203
|
pulumi.set(__self__, "key", key)
|
1204
1204
|
pulumi.set(__self__, "value", value)
|
@@ -1211,7 +1211,7 @@ class NotificationDestinationPropertyArgs:
|
|
1211
1211
|
@pulumi.getter
|
1212
1212
|
def key(self) -> pulumi.Input[str]:
|
1213
1213
|
"""
|
1214
|
-
|
1214
|
+
Notification property key.
|
1215
1215
|
"""
|
1216
1216
|
return pulumi.get(self, "key")
|
1217
1217
|
|
@@ -1223,7 +1223,7 @@ class NotificationDestinationPropertyArgs:
|
|
1223
1223
|
@pulumi.getter
|
1224
1224
|
def value(self) -> pulumi.Input[str]:
|
1225
1225
|
"""
|
1226
|
-
|
1226
|
+
Notification property value.
|
1227
1227
|
"""
|
1228
1228
|
return pulumi.get(self, "value")
|
1229
1229
|
|
@@ -1235,9 +1235,7 @@ class NotificationDestinationPropertyArgs:
|
|
1235
1235
|
@pulumi.getter(name="displayValue")
|
1236
1236
|
def display_value(self) -> Optional[pulumi.Input[str]]:
|
1237
1237
|
"""
|
1238
|
-
|
1239
|
-
|
1240
|
-
Each notification destination type supports a specific set of arguments for the `property` block. See Additional Examples below for details:
|
1238
|
+
Notification property display key.
|
1241
1239
|
"""
|
1242
1240
|
return pulumi.get(self, "display_value")
|
1243
1241
|
|
@@ -1249,7 +1247,7 @@ class NotificationDestinationPropertyArgs:
|
|
1249
1247
|
@pulumi.getter
|
1250
1248
|
def label(self) -> Optional[pulumi.Input[str]]:
|
1251
1249
|
"""
|
1252
|
-
|
1250
|
+
Notification property label.
|
1253
1251
|
"""
|
1254
1252
|
return pulumi.get(self, "label")
|
1255
1253
|
|
@@ -1258,6 +1256,33 @@ class NotificationDestinationPropertyArgs:
|
|
1258
1256
|
pulumi.set(self, "label", value)
|
1259
1257
|
|
1260
1258
|
|
1259
|
+
@pulumi.input_type
|
1260
|
+
class NotificationDestinationSecureUrlArgs:
|
1261
|
+
def __init__(__self__, *,
|
1262
|
+
prefix: pulumi.Input[str],
|
1263
|
+
secure_suffix: pulumi.Input[str]):
|
1264
|
+
pulumi.set(__self__, "prefix", prefix)
|
1265
|
+
pulumi.set(__self__, "secure_suffix", secure_suffix)
|
1266
|
+
|
1267
|
+
@property
|
1268
|
+
@pulumi.getter
|
1269
|
+
def prefix(self) -> pulumi.Input[str]:
|
1270
|
+
return pulumi.get(self, "prefix")
|
1271
|
+
|
1272
|
+
@prefix.setter
|
1273
|
+
def prefix(self, value: pulumi.Input[str]):
|
1274
|
+
pulumi.set(self, "prefix", value)
|
1275
|
+
|
1276
|
+
@property
|
1277
|
+
@pulumi.getter(name="secureSuffix")
|
1278
|
+
def secure_suffix(self) -> pulumi.Input[str]:
|
1279
|
+
return pulumi.get(self, "secure_suffix")
|
1280
|
+
|
1281
|
+
@secure_suffix.setter
|
1282
|
+
def secure_suffix(self, value: pulumi.Input[str]):
|
1283
|
+
pulumi.set(self, "secure_suffix", value)
|
1284
|
+
|
1285
|
+
|
1261
1286
|
@pulumi.input_type
|
1262
1287
|
class NrqlAlertConditionCriticalArgs:
|
1263
1288
|
def __init__(__self__, *,
|
@@ -1751,8 +1776,8 @@ class OneDashboardPageArgs:
|
|
1751
1776
|
widget_stacked_bars: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetStackedBarArgs']]]] = None,
|
1752
1777
|
widget_tables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetTableArgs']]]] = None):
|
1753
1778
|
"""
|
1754
|
-
:param pulumi.Input[str] name: The
|
1755
|
-
:param pulumi.Input[str] description: Brief text describing the
|
1779
|
+
:param pulumi.Input[str] name: (Required) The variable identifier.
|
1780
|
+
:param pulumi.Input[str] description: (Optional) Brief text describing the page.
|
1756
1781
|
:param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
|
1757
1782
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetAreaArgs']]] widget_areas: An area widget.
|
1758
1783
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBarArgs']]] widget_bars: A bar widget.
|
@@ -1807,7 +1832,7 @@ class OneDashboardPageArgs:
|
|
1807
1832
|
@pulumi.getter
|
1808
1833
|
def name(self) -> pulumi.Input[str]:
|
1809
1834
|
"""
|
1810
|
-
The
|
1835
|
+
(Required) The variable identifier.
|
1811
1836
|
"""
|
1812
1837
|
return pulumi.get(self, "name")
|
1813
1838
|
|
@@ -1819,7 +1844,7 @@ class OneDashboardPageArgs:
|
|
1819
1844
|
@pulumi.getter
|
1820
1845
|
def description(self) -> Optional[pulumi.Input[str]]:
|
1821
1846
|
"""
|
1822
|
-
Brief text describing the
|
1847
|
+
(Optional) Brief text describing the page.
|
1823
1848
|
"""
|
1824
1849
|
return pulumi.get(self, "description")
|
1825
1850
|
|
@@ -2332,7 +2357,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
|
|
2332
2357
|
account_id: Optional[pulumi.Input[int]] = None):
|
2333
2358
|
"""
|
2334
2359
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
2335
|
-
:param pulumi.Input[int] account_id:
|
2360
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
2336
2361
|
"""
|
2337
2362
|
pulumi.set(__self__, "query", query)
|
2338
2363
|
if account_id is not None:
|
@@ -2354,7 +2379,7 @@ class OneDashboardPageWidgetAreaNrqlQueryArgs:
|
|
2354
2379
|
@pulumi.getter(name="accountId")
|
2355
2380
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
2356
2381
|
"""
|
2357
|
-
|
2382
|
+
The account id used for the NRQL query.
|
2358
2383
|
"""
|
2359
2384
|
return pulumi.get(self, "account_id")
|
2360
2385
|
|
@@ -2875,7 +2900,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
|
|
2875
2900
|
account_id: Optional[pulumi.Input[int]] = None):
|
2876
2901
|
"""
|
2877
2902
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
2878
|
-
:param pulumi.Input[int] account_id:
|
2903
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
2879
2904
|
"""
|
2880
2905
|
pulumi.set(__self__, "query", query)
|
2881
2906
|
if account_id is not None:
|
@@ -2897,7 +2922,7 @@ class OneDashboardPageWidgetBarNrqlQueryArgs:
|
|
2897
2922
|
@pulumi.getter(name="accountId")
|
2898
2923
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
2899
2924
|
"""
|
2900
|
-
|
2925
|
+
The account id used for the NRQL query.
|
2901
2926
|
"""
|
2902
2927
|
return pulumi.get(self, "account_id")
|
2903
2928
|
|
@@ -3418,7 +3443,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
|
|
3418
3443
|
account_id: Optional[pulumi.Input[int]] = None):
|
3419
3444
|
"""
|
3420
3445
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
3421
|
-
:param pulumi.Input[int] account_id:
|
3446
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
3422
3447
|
"""
|
3423
3448
|
pulumi.set(__self__, "query", query)
|
3424
3449
|
if account_id is not None:
|
@@ -3440,7 +3465,7 @@ class OneDashboardPageWidgetBillboardNrqlQueryArgs:
|
|
3440
3465
|
@pulumi.getter(name="accountId")
|
3441
3466
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
3442
3467
|
"""
|
3443
|
-
|
3468
|
+
The account id used for the NRQL query.
|
3444
3469
|
"""
|
3445
3470
|
return pulumi.get(self, "account_id")
|
3446
3471
|
|
@@ -3944,7 +3969,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
|
|
3944
3969
|
account_id: Optional[pulumi.Input[int]] = None):
|
3945
3970
|
"""
|
3946
3971
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
3947
|
-
:param pulumi.Input[int] account_id:
|
3972
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
3948
3973
|
"""
|
3949
3974
|
pulumi.set(__self__, "query", query)
|
3950
3975
|
if account_id is not None:
|
@@ -3966,7 +3991,7 @@ class OneDashboardPageWidgetBulletNrqlQueryArgs:
|
|
3966
3991
|
@pulumi.getter(name="accountId")
|
3967
3992
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
3968
3993
|
"""
|
3969
|
-
|
3994
|
+
The account id used for the NRQL query.
|
3970
3995
|
"""
|
3971
3996
|
return pulumi.get(self, "account_id")
|
3972
3997
|
|
@@ -4455,7 +4480,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
|
|
4455
4480
|
account_id: Optional[pulumi.Input[int]] = None):
|
4456
4481
|
"""
|
4457
4482
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
4458
|
-
:param pulumi.Input[int] account_id:
|
4483
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
4459
4484
|
"""
|
4460
4485
|
pulumi.set(__self__, "query", query)
|
4461
4486
|
if account_id is not None:
|
@@ -4477,7 +4502,7 @@ class OneDashboardPageWidgetFunnelNrqlQueryArgs:
|
|
4477
4502
|
@pulumi.getter(name="accountId")
|
4478
4503
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
4479
4504
|
"""
|
4480
|
-
|
4505
|
+
The account id used for the NRQL query.
|
4481
4506
|
"""
|
4482
4507
|
return pulumi.get(self, "account_id")
|
4483
4508
|
|
@@ -4998,7 +5023,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
|
|
4998
5023
|
account_id: Optional[pulumi.Input[int]] = None):
|
4999
5024
|
"""
|
5000
5025
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
5001
|
-
:param pulumi.Input[int] account_id:
|
5026
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
5002
5027
|
"""
|
5003
5028
|
pulumi.set(__self__, "query", query)
|
5004
5029
|
if account_id is not None:
|
@@ -5020,7 +5045,7 @@ class OneDashboardPageWidgetHeatmapNrqlQueryArgs:
|
|
5020
5045
|
@pulumi.getter(name="accountId")
|
5021
5046
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
5022
5047
|
"""
|
5023
|
-
|
5048
|
+
The account id used for the NRQL query.
|
5024
5049
|
"""
|
5025
5050
|
return pulumi.get(self, "account_id")
|
5026
5051
|
|
@@ -5509,7 +5534,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
|
|
5509
5534
|
account_id: Optional[pulumi.Input[int]] = None):
|
5510
5535
|
"""
|
5511
5536
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
5512
|
-
:param pulumi.Input[int] account_id:
|
5537
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
5513
5538
|
"""
|
5514
5539
|
pulumi.set(__self__, "query", query)
|
5515
5540
|
if account_id is not None:
|
@@ -5531,7 +5556,7 @@ class OneDashboardPageWidgetHistogramNrqlQueryArgs:
|
|
5531
5556
|
@pulumi.getter(name="accountId")
|
5532
5557
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
5533
5558
|
"""
|
5534
|
-
|
5559
|
+
The account id used for the NRQL query.
|
5535
5560
|
"""
|
5536
5561
|
return pulumi.get(self, "account_id")
|
5537
5562
|
|
@@ -6020,7 +6045,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
|
|
6020
6045
|
account_id: Optional[pulumi.Input[int]] = None):
|
6021
6046
|
"""
|
6022
6047
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
6023
|
-
:param pulumi.Input[int] account_id:
|
6048
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
6024
6049
|
"""
|
6025
6050
|
pulumi.set(__self__, "query", query)
|
6026
6051
|
if account_id is not None:
|
@@ -6042,7 +6067,7 @@ class OneDashboardPageWidgetJsonNrqlQueryArgs:
|
|
6042
6067
|
@pulumi.getter(name="accountId")
|
6043
6068
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
6044
6069
|
"""
|
6045
|
-
|
6070
|
+
The account id used for the NRQL query.
|
6046
6071
|
"""
|
6047
6072
|
return pulumi.get(self, "account_id")
|
6048
6073
|
|
@@ -6547,7 +6572,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
|
|
6547
6572
|
account_id: Optional[pulumi.Input[int]] = None):
|
6548
6573
|
"""
|
6549
6574
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
6550
|
-
:param pulumi.Input[int] account_id:
|
6575
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
6551
6576
|
"""
|
6552
6577
|
pulumi.set(__self__, "query", query)
|
6553
6578
|
if account_id is not None:
|
@@ -6569,7 +6594,7 @@ class OneDashboardPageWidgetLineNrqlQueryArgs:
|
|
6569
6594
|
@pulumi.getter(name="accountId")
|
6570
6595
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
6571
6596
|
"""
|
6572
|
-
|
6597
|
+
The account id used for the NRQL query.
|
6573
6598
|
"""
|
6574
6599
|
return pulumi.get(self, "account_id")
|
6575
6600
|
|
@@ -7058,7 +7083,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
|
|
7058
7083
|
account_id: Optional[pulumi.Input[int]] = None):
|
7059
7084
|
"""
|
7060
7085
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
7061
|
-
:param pulumi.Input[int] account_id:
|
7086
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
7062
7087
|
"""
|
7063
7088
|
pulumi.set(__self__, "query", query)
|
7064
7089
|
if account_id is not None:
|
@@ -7080,7 +7105,7 @@ class OneDashboardPageWidgetLogTableNrqlQueryArgs:
|
|
7080
7105
|
@pulumi.getter(name="accountId")
|
7081
7106
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
7082
7107
|
"""
|
7083
|
-
|
7108
|
+
The account id used for the NRQL query.
|
7084
7109
|
"""
|
7085
7110
|
return pulumi.get(self, "account_id")
|
7086
7111
|
|
@@ -8074,7 +8099,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
|
|
8074
8099
|
account_id: Optional[pulumi.Input[int]] = None):
|
8075
8100
|
"""
|
8076
8101
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
8077
|
-
:param pulumi.Input[int] account_id:
|
8102
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
8078
8103
|
"""
|
8079
8104
|
pulumi.set(__self__, "query", query)
|
8080
8105
|
if account_id is not None:
|
@@ -8096,7 +8121,7 @@ class OneDashboardPageWidgetPyNrqlQueryArgs:
|
|
8096
8121
|
@pulumi.getter(name="accountId")
|
8097
8122
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
8098
8123
|
"""
|
8099
|
-
|
8124
|
+
The account id used for the NRQL query.
|
8100
8125
|
"""
|
8101
8126
|
return pulumi.get(self, "account_id")
|
8102
8127
|
|
@@ -8585,7 +8610,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
|
|
8585
8610
|
account_id: Optional[pulumi.Input[int]] = None):
|
8586
8611
|
"""
|
8587
8612
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
8588
|
-
:param pulumi.Input[int] account_id:
|
8613
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
8589
8614
|
"""
|
8590
8615
|
pulumi.set(__self__, "query", query)
|
8591
8616
|
if account_id is not None:
|
@@ -8607,7 +8632,7 @@ class OneDashboardPageWidgetStackedBarNrqlQueryArgs:
|
|
8607
8632
|
@pulumi.getter(name="accountId")
|
8608
8633
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
8609
8634
|
"""
|
8610
|
-
|
8635
|
+
The account id used for the NRQL query.
|
8611
8636
|
"""
|
8612
8637
|
return pulumi.get(self, "account_id")
|
8613
8638
|
|
@@ -9128,7 +9153,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
|
|
9128
9153
|
account_id: Optional[pulumi.Input[int]] = None):
|
9129
9154
|
"""
|
9130
9155
|
:param pulumi.Input[str] query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
9131
|
-
:param pulumi.Input[int] account_id:
|
9156
|
+
:param pulumi.Input[int] account_id: The account id used for the NRQL query.
|
9132
9157
|
"""
|
9133
9158
|
pulumi.set(__self__, "query", query)
|
9134
9159
|
if account_id is not None:
|
@@ -9150,7 +9175,7 @@ class OneDashboardPageWidgetTableNrqlQueryArgs:
|
|
9150
9175
|
@pulumi.getter(name="accountId")
|
9151
9176
|
def account_id(self) -> Optional[pulumi.Input[int]]:
|
9152
9177
|
"""
|
9153
|
-
|
9178
|
+
The account id used for the NRQL query.
|
9154
9179
|
"""
|
9155
9180
|
return pulumi.get(self, "account_id")
|
9156
9181
|
|
@@ -9544,7 +9569,7 @@ class OneDashboardVariableArgs:
|
|
9544
9569
|
nrql_query: Optional[pulumi.Input['OneDashboardVariableNrqlQueryArgs']] = None,
|
9545
9570
|
options: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableOptionArgs']]]] = None):
|
9546
9571
|
"""
|
9547
|
-
:param pulumi.Input[str] name: The
|
9572
|
+
:param pulumi.Input[str] name: (Required) The variable identifier.
|
9548
9573
|
:param pulumi.Input[str] replacement_strategy: (Optional) Indicates the strategy to apply when replacing a variable in a NRQL query. One of `default`, `identifier`, `number` or `string`.
|
9549
9574
|
:param pulumi.Input[str] title: (Optional) A human-friendly display string for this value.
|
9550
9575
|
:param pulumi.Input[str] type: (Required) Specifies the data type of the variable and where its possible values may come from. One of `enum`, `nrql` or `string`
|
@@ -9573,7 +9598,7 @@ class OneDashboardVariableArgs:
|
|
9573
9598
|
@pulumi.getter
|
9574
9599
|
def name(self) -> pulumi.Input[str]:
|
9575
9600
|
"""
|
9576
|
-
The
|
9601
|
+
(Required) The variable identifier.
|
9577
9602
|
"""
|
9578
9603
|
return pulumi.get(self, "name")
|
9579
9604
|
|
@@ -9784,13 +9809,6 @@ class ServiceLevelEventsArgs:
|
|
9784
9809
|
valid_events: pulumi.Input['ServiceLevelEventsValidEventsArgs'],
|
9785
9810
|
bad_events: Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']] = None,
|
9786
9811
|
good_events: Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']] = None):
|
9787
|
-
"""
|
9788
|
-
:param pulumi.Input[int] account_id: The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
|
9789
|
-
and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
|
9790
|
-
:param pulumi.Input['ServiceLevelEventsValidEventsArgs'] valid_events: The definition of valid requests.
|
9791
|
-
:param pulumi.Input['ServiceLevelEventsBadEventsArgs'] bad_events: The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
|
9792
|
-
:param pulumi.Input['ServiceLevelEventsGoodEventsArgs'] good_events: The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
|
9793
|
-
"""
|
9794
9812
|
pulumi.set(__self__, "account_id", account_id)
|
9795
9813
|
pulumi.set(__self__, "valid_events", valid_events)
|
9796
9814
|
if bad_events is not None:
|
@@ -9801,10 +9819,6 @@ class ServiceLevelEventsArgs:
|
|
9801
9819
|
@property
|
9802
9820
|
@pulumi.getter(name="accountId")
|
9803
9821
|
def account_id(self) -> pulumi.Input[int]:
|
9804
|
-
"""
|
9805
|
-
The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
|
9806
|
-
and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
|
9807
|
-
"""
|
9808
9822
|
return pulumi.get(self, "account_id")
|
9809
9823
|
|
9810
9824
|
@account_id.setter
|
@@ -9814,9 +9828,6 @@ class ServiceLevelEventsArgs:
|
|
9814
9828
|
@property
|
9815
9829
|
@pulumi.getter(name="validEvents")
|
9816
9830
|
def valid_events(self) -> pulumi.Input['ServiceLevelEventsValidEventsArgs']:
|
9817
|
-
"""
|
9818
|
-
The definition of valid requests.
|
9819
|
-
"""
|
9820
9831
|
return pulumi.get(self, "valid_events")
|
9821
9832
|
|
9822
9833
|
@valid_events.setter
|
@@ -9826,9 +9837,6 @@ class ServiceLevelEventsArgs:
|
|
9826
9837
|
@property
|
9827
9838
|
@pulumi.getter(name="badEvents")
|
9828
9839
|
def bad_events(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsArgs']]:
|
9829
|
-
"""
|
9830
|
-
The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
|
9831
|
-
"""
|
9832
9840
|
return pulumi.get(self, "bad_events")
|
9833
9841
|
|
9834
9842
|
@bad_events.setter
|
@@ -9838,9 +9846,6 @@ class ServiceLevelEventsArgs:
|
|
9838
9846
|
@property
|
9839
9847
|
@pulumi.getter(name="goodEvents")
|
9840
9848
|
def good_events(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsArgs']]:
|
9841
|
-
"""
|
9842
|
-
The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
|
9843
|
-
"""
|
9844
9849
|
return pulumi.get(self, "good_events")
|
9845
9850
|
|
9846
9851
|
@good_events.setter
|
@@ -9854,12 +9859,6 @@ class ServiceLevelEventsBadEventsArgs:
|
|
9854
9859
|
from_: pulumi.Input[str],
|
9855
9860
|
select: Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']] = None,
|
9856
9861
|
where: Optional[pulumi.Input[str]] = None):
|
9857
|
-
"""
|
9858
|
-
:param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
|
9859
|
-
:param pulumi.Input['ServiceLevelEventsBadEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
|
9860
|
-
:param pulumi.Input[str] where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
9861
|
-
a particular entity and returned an error).
|
9862
|
-
"""
|
9863
9862
|
pulumi.set(__self__, "from_", from_)
|
9864
9863
|
if select is not None:
|
9865
9864
|
pulumi.set(__self__, "select", select)
|
@@ -9869,9 +9868,6 @@ class ServiceLevelEventsBadEventsArgs:
|
|
9869
9868
|
@property
|
9870
9869
|
@pulumi.getter(name="from")
|
9871
9870
|
def from_(self) -> pulumi.Input[str]:
|
9872
|
-
"""
|
9873
|
-
The event type where NRDB data will be fetched from.
|
9874
|
-
"""
|
9875
9871
|
return pulumi.get(self, "from_")
|
9876
9872
|
|
9877
9873
|
@from_.setter
|
@@ -9881,9 +9877,6 @@ class ServiceLevelEventsBadEventsArgs:
|
|
9881
9877
|
@property
|
9882
9878
|
@pulumi.getter
|
9883
9879
|
def select(self) -> Optional[pulumi.Input['ServiceLevelEventsBadEventsSelectArgs']]:
|
9884
|
-
"""
|
9885
|
-
The NRQL SELECT clause to aggregate events.
|
9886
|
-
"""
|
9887
9880
|
return pulumi.get(self, "select")
|
9888
9881
|
|
9889
9882
|
@select.setter
|
@@ -9893,10 +9886,6 @@ class ServiceLevelEventsBadEventsArgs:
|
|
9893
9886
|
@property
|
9894
9887
|
@pulumi.getter
|
9895
9888
|
def where(self) -> Optional[pulumi.Input[str]]:
|
9896
|
-
"""
|
9897
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
9898
|
-
a particular entity and returned an error).
|
9899
|
-
"""
|
9900
9889
|
return pulumi.get(self, "where")
|
9901
9890
|
|
9902
9891
|
@where.setter
|
@@ -9911,9 +9900,7 @@ class ServiceLevelEventsBadEventsSelectArgs:
|
|
9911
9900
|
attribute: Optional[pulumi.Input[str]] = None,
|
9912
9901
|
threshold: Optional[pulumi.Input[float]] = None):
|
9913
9902
|
"""
|
9914
|
-
:param pulumi.Input[
|
9915
|
-
:param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
|
9916
|
-
:param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
9903
|
+
:param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
|
9917
9904
|
"""
|
9918
9905
|
pulumi.set(__self__, "function", function)
|
9919
9906
|
if attribute is not None:
|
@@ -9924,9 +9911,6 @@ class ServiceLevelEventsBadEventsSelectArgs:
|
|
9924
9911
|
@property
|
9925
9912
|
@pulumi.getter
|
9926
9913
|
def function(self) -> pulumi.Input[str]:
|
9927
|
-
"""
|
9928
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
9929
|
-
"""
|
9930
9914
|
return pulumi.get(self, "function")
|
9931
9915
|
|
9932
9916
|
@function.setter
|
@@ -9936,9 +9920,6 @@ class ServiceLevelEventsBadEventsSelectArgs:
|
|
9936
9920
|
@property
|
9937
9921
|
@pulumi.getter
|
9938
9922
|
def attribute(self) -> Optional[pulumi.Input[str]]:
|
9939
|
-
"""
|
9940
|
-
The event attribute to use in the SELECT clause.
|
9941
|
-
"""
|
9942
9923
|
return pulumi.get(self, "attribute")
|
9943
9924
|
|
9944
9925
|
@attribute.setter
|
@@ -9949,7 +9930,7 @@ class ServiceLevelEventsBadEventsSelectArgs:
|
|
9949
9930
|
@pulumi.getter
|
9950
9931
|
def threshold(self) -> Optional[pulumi.Input[float]]:
|
9951
9932
|
"""
|
9952
|
-
|
9933
|
+
The event threshold to use in the SELECT clause
|
9953
9934
|
"""
|
9954
9935
|
return pulumi.get(self, "threshold")
|
9955
9936
|
|
@@ -9964,12 +9945,6 @@ class ServiceLevelEventsGoodEventsArgs:
|
|
9964
9945
|
from_: pulumi.Input[str],
|
9965
9946
|
select: Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']] = None,
|
9966
9947
|
where: Optional[pulumi.Input[str]] = None):
|
9967
|
-
"""
|
9968
|
-
:param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
|
9969
|
-
:param pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
|
9970
|
-
:param pulumi.Input[str] where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
9971
|
-
a particular entity and returned an error).
|
9972
|
-
"""
|
9973
9948
|
pulumi.set(__self__, "from_", from_)
|
9974
9949
|
if select is not None:
|
9975
9950
|
pulumi.set(__self__, "select", select)
|
@@ -9979,9 +9954,6 @@ class ServiceLevelEventsGoodEventsArgs:
|
|
9979
9954
|
@property
|
9980
9955
|
@pulumi.getter(name="from")
|
9981
9956
|
def from_(self) -> pulumi.Input[str]:
|
9982
|
-
"""
|
9983
|
-
The event type where NRDB data will be fetched from.
|
9984
|
-
"""
|
9985
9957
|
return pulumi.get(self, "from_")
|
9986
9958
|
|
9987
9959
|
@from_.setter
|
@@ -9991,9 +9963,6 @@ class ServiceLevelEventsGoodEventsArgs:
|
|
9991
9963
|
@property
|
9992
9964
|
@pulumi.getter
|
9993
9965
|
def select(self) -> Optional[pulumi.Input['ServiceLevelEventsGoodEventsSelectArgs']]:
|
9994
|
-
"""
|
9995
|
-
The NRQL SELECT clause to aggregate events.
|
9996
|
-
"""
|
9997
9966
|
return pulumi.get(self, "select")
|
9998
9967
|
|
9999
9968
|
@select.setter
|
@@ -10003,10 +9972,6 @@ class ServiceLevelEventsGoodEventsArgs:
|
|
10003
9972
|
@property
|
10004
9973
|
@pulumi.getter
|
10005
9974
|
def where(self) -> Optional[pulumi.Input[str]]:
|
10006
|
-
"""
|
10007
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10008
|
-
a particular entity and returned an error).
|
10009
|
-
"""
|
10010
9975
|
return pulumi.get(self, "where")
|
10011
9976
|
|
10012
9977
|
@where.setter
|
@@ -10021,9 +9986,7 @@ class ServiceLevelEventsGoodEventsSelectArgs:
|
|
10021
9986
|
attribute: Optional[pulumi.Input[str]] = None,
|
10022
9987
|
threshold: Optional[pulumi.Input[float]] = None):
|
10023
9988
|
"""
|
10024
|
-
:param pulumi.Input[
|
10025
|
-
:param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
|
10026
|
-
:param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
9989
|
+
:param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
|
10027
9990
|
"""
|
10028
9991
|
pulumi.set(__self__, "function", function)
|
10029
9992
|
if attribute is not None:
|
@@ -10034,9 +9997,6 @@ class ServiceLevelEventsGoodEventsSelectArgs:
|
|
10034
9997
|
@property
|
10035
9998
|
@pulumi.getter
|
10036
9999
|
def function(self) -> pulumi.Input[str]:
|
10037
|
-
"""
|
10038
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
10039
|
-
"""
|
10040
10000
|
return pulumi.get(self, "function")
|
10041
10001
|
|
10042
10002
|
@function.setter
|
@@ -10046,9 +10006,6 @@ class ServiceLevelEventsGoodEventsSelectArgs:
|
|
10046
10006
|
@property
|
10047
10007
|
@pulumi.getter
|
10048
10008
|
def attribute(self) -> Optional[pulumi.Input[str]]:
|
10049
|
-
"""
|
10050
|
-
The event attribute to use in the SELECT clause.
|
10051
|
-
"""
|
10052
10009
|
return pulumi.get(self, "attribute")
|
10053
10010
|
|
10054
10011
|
@attribute.setter
|
@@ -10059,7 +10016,7 @@ class ServiceLevelEventsGoodEventsSelectArgs:
|
|
10059
10016
|
@pulumi.getter
|
10060
10017
|
def threshold(self) -> Optional[pulumi.Input[float]]:
|
10061
10018
|
"""
|
10062
|
-
|
10019
|
+
The event threshold to use in the SELECT clause
|
10063
10020
|
"""
|
10064
10021
|
return pulumi.get(self, "threshold")
|
10065
10022
|
|
@@ -10074,12 +10031,6 @@ class ServiceLevelEventsValidEventsArgs:
|
|
10074
10031
|
from_: pulumi.Input[str],
|
10075
10032
|
select: Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']] = None,
|
10076
10033
|
where: Optional[pulumi.Input[str]] = None):
|
10077
|
-
"""
|
10078
|
-
:param pulumi.Input[str] from_: The event type where NRDB data will be fetched from.
|
10079
|
-
:param pulumi.Input['ServiceLevelEventsValidEventsSelectArgs'] select: The NRQL SELECT clause to aggregate events.
|
10080
|
-
:param pulumi.Input[str] where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10081
|
-
a particular entity and returned an error).
|
10082
|
-
"""
|
10083
10034
|
pulumi.set(__self__, "from_", from_)
|
10084
10035
|
if select is not None:
|
10085
10036
|
pulumi.set(__self__, "select", select)
|
@@ -10089,9 +10040,6 @@ class ServiceLevelEventsValidEventsArgs:
|
|
10089
10040
|
@property
|
10090
10041
|
@pulumi.getter(name="from")
|
10091
10042
|
def from_(self) -> pulumi.Input[str]:
|
10092
|
-
"""
|
10093
|
-
The event type where NRDB data will be fetched from.
|
10094
|
-
"""
|
10095
10043
|
return pulumi.get(self, "from_")
|
10096
10044
|
|
10097
10045
|
@from_.setter
|
@@ -10101,9 +10049,6 @@ class ServiceLevelEventsValidEventsArgs:
|
|
10101
10049
|
@property
|
10102
10050
|
@pulumi.getter
|
10103
10051
|
def select(self) -> Optional[pulumi.Input['ServiceLevelEventsValidEventsSelectArgs']]:
|
10104
|
-
"""
|
10105
|
-
The NRQL SELECT clause to aggregate events.
|
10106
|
-
"""
|
10107
10052
|
return pulumi.get(self, "select")
|
10108
10053
|
|
10109
10054
|
@select.setter
|
@@ -10113,10 +10058,6 @@ class ServiceLevelEventsValidEventsArgs:
|
|
10113
10058
|
@property
|
10114
10059
|
@pulumi.getter
|
10115
10060
|
def where(self) -> Optional[pulumi.Input[str]]:
|
10116
|
-
"""
|
10117
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10118
|
-
a particular entity and returned an error).
|
10119
|
-
"""
|
10120
10061
|
return pulumi.get(self, "where")
|
10121
10062
|
|
10122
10063
|
@where.setter
|
@@ -10131,9 +10072,7 @@ class ServiceLevelEventsValidEventsSelectArgs:
|
|
10131
10072
|
attribute: Optional[pulumi.Input[str]] = None,
|
10132
10073
|
threshold: Optional[pulumi.Input[float]] = None):
|
10133
10074
|
"""
|
10134
|
-
:param pulumi.Input[
|
10135
|
-
:param pulumi.Input[str] attribute: The event attribute to use in the SELECT clause.
|
10136
|
-
:param pulumi.Input[float] threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
10075
|
+
:param pulumi.Input[float] threshold: The event threshold to use in the SELECT clause
|
10137
10076
|
"""
|
10138
10077
|
pulumi.set(__self__, "function", function)
|
10139
10078
|
if attribute is not None:
|
@@ -10144,9 +10083,6 @@ class ServiceLevelEventsValidEventsSelectArgs:
|
|
10144
10083
|
@property
|
10145
10084
|
@pulumi.getter
|
10146
10085
|
def function(self) -> pulumi.Input[str]:
|
10147
|
-
"""
|
10148
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
10149
|
-
"""
|
10150
10086
|
return pulumi.get(self, "function")
|
10151
10087
|
|
10152
10088
|
@function.setter
|
@@ -10156,9 +10092,6 @@ class ServiceLevelEventsValidEventsSelectArgs:
|
|
10156
10092
|
@property
|
10157
10093
|
@pulumi.getter
|
10158
10094
|
def attribute(self) -> Optional[pulumi.Input[str]]:
|
10159
|
-
"""
|
10160
|
-
The event attribute to use in the SELECT clause.
|
10161
|
-
"""
|
10162
10095
|
return pulumi.get(self, "attribute")
|
10163
10096
|
|
10164
10097
|
@attribute.setter
|
@@ -10169,7 +10102,7 @@ class ServiceLevelEventsValidEventsSelectArgs:
|
|
10169
10102
|
@pulumi.getter
|
10170
10103
|
def threshold(self) -> Optional[pulumi.Input[float]]:
|
10171
10104
|
"""
|
10172
|
-
|
10105
|
+
The event threshold to use in the SELECT clause
|
10173
10106
|
"""
|
10174
10107
|
return pulumi.get(self, "threshold")
|
10175
10108
|
|
@@ -10185,12 +10118,6 @@ class ServiceLevelObjectiveArgs:
|
|
10185
10118
|
time_window: pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'],
|
10186
10119
|
description: Optional[pulumi.Input[str]] = None,
|
10187
10120
|
name: Optional[pulumi.Input[str]] = None):
|
10188
|
-
"""
|
10189
|
-
:param pulumi.Input[float] target: The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
|
10190
|
-
:param pulumi.Input['ServiceLevelObjectiveTimeWindowArgs'] time_window: Time window is the period of the objective.
|
10191
|
-
:param pulumi.Input[str] description: The description of the SLI.
|
10192
|
-
:param pulumi.Input[str] name: A short name for the SLI that will help anyone understand what it is about.
|
10193
|
-
"""
|
10194
10121
|
pulumi.set(__self__, "target", target)
|
10195
10122
|
pulumi.set(__self__, "time_window", time_window)
|
10196
10123
|
if description is not None:
|
@@ -10201,9 +10128,6 @@ class ServiceLevelObjectiveArgs:
|
|
10201
10128
|
@property
|
10202
10129
|
@pulumi.getter
|
10203
10130
|
def target(self) -> pulumi.Input[float]:
|
10204
|
-
"""
|
10205
|
-
The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
|
10206
|
-
"""
|
10207
10131
|
return pulumi.get(self, "target")
|
10208
10132
|
|
10209
10133
|
@target.setter
|
@@ -10213,9 +10137,6 @@ class ServiceLevelObjectiveArgs:
|
|
10213
10137
|
@property
|
10214
10138
|
@pulumi.getter(name="timeWindow")
|
10215
10139
|
def time_window(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowArgs']:
|
10216
|
-
"""
|
10217
|
-
Time window is the period of the objective.
|
10218
|
-
"""
|
10219
10140
|
return pulumi.get(self, "time_window")
|
10220
10141
|
|
10221
10142
|
@time_window.setter
|
@@ -10225,9 +10146,6 @@ class ServiceLevelObjectiveArgs:
|
|
10225
10146
|
@property
|
10226
10147
|
@pulumi.getter
|
10227
10148
|
def description(self) -> Optional[pulumi.Input[str]]:
|
10228
|
-
"""
|
10229
|
-
The description of the SLI.
|
10230
|
-
"""
|
10231
10149
|
return pulumi.get(self, "description")
|
10232
10150
|
|
10233
10151
|
@description.setter
|
@@ -10237,9 +10155,6 @@ class ServiceLevelObjectiveArgs:
|
|
10237
10155
|
@property
|
10238
10156
|
@pulumi.getter
|
10239
10157
|
def name(self) -> Optional[pulumi.Input[str]]:
|
10240
|
-
"""
|
10241
|
-
A short name for the SLI that will help anyone understand what it is about.
|
10242
|
-
"""
|
10243
10158
|
return pulumi.get(self, "name")
|
10244
10159
|
|
10245
10160
|
@name.setter
|
@@ -10251,17 +10166,11 @@ class ServiceLevelObjectiveArgs:
|
|
10251
10166
|
class ServiceLevelObjectiveTimeWindowArgs:
|
10252
10167
|
def __init__(__self__, *,
|
10253
10168
|
rolling: pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']):
|
10254
|
-
"""
|
10255
|
-
:param pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs'] rolling: Rolling window.
|
10256
|
-
"""
|
10257
10169
|
pulumi.set(__self__, "rolling", rolling)
|
10258
10170
|
|
10259
10171
|
@property
|
10260
10172
|
@pulumi.getter
|
10261
10173
|
def rolling(self) -> pulumi.Input['ServiceLevelObjectiveTimeWindowRollingArgs']:
|
10262
|
-
"""
|
10263
|
-
Rolling window.
|
10264
|
-
"""
|
10265
10174
|
return pulumi.get(self, "rolling")
|
10266
10175
|
|
10267
10176
|
@rolling.setter
|
@@ -10274,19 +10183,12 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
|
|
10274
10183
|
def __init__(__self__, *,
|
10275
10184
|
count: pulumi.Input[int],
|
10276
10185
|
unit: pulumi.Input[str]):
|
10277
|
-
"""
|
10278
|
-
:param pulumi.Input[int] count: Valid values are `1`, `7` and `28`.
|
10279
|
-
:param pulumi.Input[str] unit: The only supported value is `DAY`.
|
10280
|
-
"""
|
10281
10186
|
pulumi.set(__self__, "count", count)
|
10282
10187
|
pulumi.set(__self__, "unit", unit)
|
10283
10188
|
|
10284
10189
|
@property
|
10285
10190
|
@pulumi.getter
|
10286
10191
|
def count(self) -> pulumi.Input[int]:
|
10287
|
-
"""
|
10288
|
-
Valid values are `1`, `7` and `28`.
|
10289
|
-
"""
|
10290
10192
|
return pulumi.get(self, "count")
|
10291
10193
|
|
10292
10194
|
@count.setter
|
@@ -10296,9 +10198,6 @@ class ServiceLevelObjectiveTimeWindowRollingArgs:
|
|
10296
10198
|
@property
|
10297
10199
|
@pulumi.getter
|
10298
10200
|
def unit(self) -> pulumi.Input[str]:
|
10299
|
-
"""
|
10300
|
-
The only supported value is `DAY`.
|
10301
|
-
"""
|
10302
10201
|
return pulumi.get(self, "unit")
|
10303
10202
|
|
10304
10203
|
@unit.setter
|
@@ -10314,11 +10213,10 @@ class WorkflowDestinationArgs:
|
|
10314
10213
|
notification_triggers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
10315
10214
|
type: Optional[pulumi.Input[str]] = None):
|
10316
10215
|
"""
|
10317
|
-
:param pulumi.Input[str] channel_id:
|
10318
|
-
**notification** channel, not an `alert_channel`.
|
10216
|
+
:param pulumi.Input[str] channel_id: (Required) Destination's channel id.
|
10319
10217
|
:param pulumi.Input[str] name: The name of the workflow.
|
10320
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notification_triggers:
|
10321
|
-
:param pulumi.Input[str] type:
|
10218
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notification_triggers: List of triggers to notify about in this destination configuration.
|
10219
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10322
10220
|
"""
|
10323
10221
|
pulumi.set(__self__, "channel_id", channel_id)
|
10324
10222
|
if name is not None:
|
@@ -10332,8 +10230,7 @@ class WorkflowDestinationArgs:
|
|
10332
10230
|
@pulumi.getter(name="channelId")
|
10333
10231
|
def channel_id(self) -> pulumi.Input[str]:
|
10334
10232
|
"""
|
10335
|
-
|
10336
|
-
**notification** channel, not an `alert_channel`.
|
10233
|
+
(Required) Destination's channel id.
|
10337
10234
|
"""
|
10338
10235
|
return pulumi.get(self, "channel_id")
|
10339
10236
|
|
@@ -10357,7 +10254,7 @@ class WorkflowDestinationArgs:
|
|
10357
10254
|
@pulumi.getter(name="notificationTriggers")
|
10358
10255
|
def notification_triggers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
10359
10256
|
"""
|
10360
|
-
|
10257
|
+
List of triggers to notify about in this destination configuration.
|
10361
10258
|
"""
|
10362
10259
|
return pulumi.get(self, "notification_triggers")
|
10363
10260
|
|
@@ -10369,7 +10266,7 @@ class WorkflowDestinationArgs:
|
|
10369
10266
|
@pulumi.getter
|
10370
10267
|
def type(self) -> Optional[pulumi.Input[str]]:
|
10371
10268
|
"""
|
10372
|
-
|
10269
|
+
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10373
10270
|
"""
|
10374
10271
|
return pulumi.get(self, "type")
|
10375
10272
|
|
@@ -10383,7 +10280,7 @@ class WorkflowEnrichmentsArgs:
|
|
10383
10280
|
def __init__(__self__, *,
|
10384
10281
|
nrqls: pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlArgs']]]):
|
10385
10282
|
"""
|
10386
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlArgs']]] nrqls:
|
10283
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlArgs']]] nrqls: (Required) Nrql type Enrichments.
|
10387
10284
|
"""
|
10388
10285
|
pulumi.set(__self__, "nrqls", nrqls)
|
10389
10286
|
|
@@ -10391,7 +10288,7 @@ class WorkflowEnrichmentsArgs:
|
|
10391
10288
|
@pulumi.getter
|
10392
10289
|
def nrqls(self) -> pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlArgs']]]:
|
10393
10290
|
"""
|
10394
|
-
|
10291
|
+
(Required) Nrql type Enrichments.
|
10395
10292
|
"""
|
10396
10293
|
return pulumi.get(self, "nrqls")
|
10397
10294
|
|
@@ -10409,11 +10306,11 @@ class WorkflowEnrichmentsNrqlArgs:
|
|
10409
10306
|
enrichment_id: Optional[pulumi.Input[str]] = None,
|
10410
10307
|
type: Optional[pulumi.Input[str]] = None):
|
10411
10308
|
"""
|
10412
|
-
:param pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlConfigurationArgs']]] configurations:
|
10309
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlConfigurationArgs']]] configurations: A set of key-value pairs to represent a enrichment configuration.
|
10413
10310
|
:param pulumi.Input[str] name: The name of the workflow.
|
10414
10311
|
:param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
|
10415
10312
|
:param pulumi.Input[str] enrichment_id: Enrichment's id.
|
10416
|
-
:param pulumi.Input[str] type:
|
10313
|
+
:param pulumi.Input[str] type: The type of the enrichment. One of: (NRQL).
|
10417
10314
|
"""
|
10418
10315
|
pulumi.set(__self__, "configurations", configurations)
|
10419
10316
|
pulumi.set(__self__, "name", name)
|
@@ -10428,7 +10325,7 @@ class WorkflowEnrichmentsNrqlArgs:
|
|
10428
10325
|
@pulumi.getter
|
10429
10326
|
def configurations(self) -> pulumi.Input[Sequence[pulumi.Input['WorkflowEnrichmentsNrqlConfigurationArgs']]]:
|
10430
10327
|
"""
|
10431
|
-
|
10328
|
+
A set of key-value pairs to represent a enrichment configuration.
|
10432
10329
|
"""
|
10433
10330
|
return pulumi.get(self, "configurations")
|
10434
10331
|
|
@@ -10476,7 +10373,7 @@ class WorkflowEnrichmentsNrqlArgs:
|
|
10476
10373
|
@pulumi.getter
|
10477
10374
|
def type(self) -> Optional[pulumi.Input[str]]:
|
10478
10375
|
"""
|
10479
|
-
|
10376
|
+
The type of the enrichment. One of: (NRQL).
|
10480
10377
|
"""
|
10481
10378
|
return pulumi.get(self, "type")
|
10482
10379
|
|
@@ -10490,7 +10387,7 @@ class WorkflowEnrichmentsNrqlConfigurationArgs:
|
|
10490
10387
|
def __init__(__self__, *,
|
10491
10388
|
query: pulumi.Input[str]):
|
10492
10389
|
"""
|
10493
|
-
:param pulumi.Input[str] query:
|
10390
|
+
:param pulumi.Input[str] query: enrichment's NRQL query
|
10494
10391
|
"""
|
10495
10392
|
pulumi.set(__self__, "query", query)
|
10496
10393
|
|
@@ -10498,7 +10395,7 @@ class WorkflowEnrichmentsNrqlConfigurationArgs:
|
|
10498
10395
|
@pulumi.getter
|
10499
10396
|
def query(self) -> pulumi.Input[str]:
|
10500
10397
|
"""
|
10501
|
-
|
10398
|
+
enrichment's NRQL query
|
10502
10399
|
"""
|
10503
10400
|
return pulumi.get(self, "query")
|
10504
10401
|
|
@@ -10665,3 +10562,19 @@ class GetEntityTagArgs:
|
|
10665
10562
|
pulumi.set(self, "value", value)
|
10666
10563
|
|
10667
10564
|
|
10565
|
+
@pulumi.input_type
|
10566
|
+
class GetNotificationDestinationSecureUrlArgs:
|
10567
|
+
def __init__(__self__, *,
|
10568
|
+
prefix: str):
|
10569
|
+
pulumi.set(__self__, "prefix", prefix)
|
10570
|
+
|
10571
|
+
@property
|
10572
|
+
@pulumi.getter
|
10573
|
+
def prefix(self) -> str:
|
10574
|
+
return pulumi.get(self, "prefix")
|
10575
|
+
|
10576
|
+
@prefix.setter
|
10577
|
+
def prefix(self, value: str):
|
10578
|
+
pulumi.set(self, "prefix", value)
|
10579
|
+
|
10580
|
+
|