pulumi-newrelic 5.23.0a1713561620__py3-none-any.whl → 5.23.0a1713975814__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 +110 -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_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/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 +110 -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.0a1713975814.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1713975814.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.0a1713975814.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0a1713561620.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/top_level.txt +0 -0
pulumi_newrelic/outputs.py
CHANGED
@@ -237,25 +237,25 @@ class AlertChannelConfig(dict):
|
|
237
237
|
user_id: Optional[str] = None):
|
238
238
|
"""
|
239
239
|
:param str api_key: The API key for integrating with OpsGenie.
|
240
|
-
:param str auth_password: Specifies an authentication password for use with a channel.
|
241
|
-
:param str auth_type: Specifies an authentication method for use with a channel.
|
242
|
-
:param str auth_username: Specifies an authentication username for use with a channel.
|
240
|
+
:param str auth_password: Specifies an authentication password for use with a channel. Supported by the webhook channel type.
|
241
|
+
:param 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.
|
242
|
+
:param str auth_username: Specifies an authentication username for use with a channel. Supported by the webhook channel type.
|
243
243
|
:param str base_url: The base URL of the webhook destination.
|
244
244
|
:param str channel: The Slack channel to send notifications to.
|
245
245
|
:param Mapping[str, str] headers: A map of key/value pairs that represents extra HTTP headers to be sent along with the webhook payload.
|
246
|
-
:param str headers_string: Use instead of
|
247
|
-
:param str include_json_attachment:
|
246
|
+
:param 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.
|
247
|
+
:param 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.
|
248
248
|
:param str key: The key for integrating with VictorOps.
|
249
|
-
:param Mapping[str, str] payload: A map of key/value pairs that represents the webhook payload.
|
250
|
-
:param str payload_string: Use instead of
|
251
|
-
:param str payload_type: Can either be
|
252
|
-
:param str recipients: A set of recipients for targeting notifications.
|
253
|
-
:param str region: The data center region to store your data.
|
249
|
+
:param Mapping[str, str] payload: A map of key/value pairs that represents the webhook payload. Must provide payload_type if setting this argument.
|
250
|
+
:param 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.
|
251
|
+
:param str payload_type: Can either be application/json or application/x-www-form-urlencoded. The payload_type argument is required if payload is set.
|
252
|
+
:param str recipients: A set of recipients for targeting notifications. Multiple values are comma separated.
|
253
|
+
:param str region: The data center region to store your data. Valid values are US and EU. Default is US.
|
254
254
|
:param str route_key: The route key for integrating with VictorOps.
|
255
255
|
:param str service_key: Specifies the service key for integrating with Pagerduty.
|
256
256
|
:param str tags: A set of tags for targeting notifications. Multiple values are comma separated.
|
257
257
|
:param str teams: A set of teams for targeting notifications. Multiple values are comma separated.
|
258
|
-
:param str url:
|
258
|
+
:param str url: Your organization's Slack URL.
|
259
259
|
:param str user_id: The user ID for use with the user channel type.
|
260
260
|
"""
|
261
261
|
if api_key is not None:
|
@@ -313,7 +313,7 @@ class AlertChannelConfig(dict):
|
|
313
313
|
@pulumi.getter(name="authPassword")
|
314
314
|
def auth_password(self) -> Optional[str]:
|
315
315
|
"""
|
316
|
-
Specifies an authentication password for use with a channel.
|
316
|
+
Specifies an authentication password for use with a channel. Supported by the webhook channel type.
|
317
317
|
"""
|
318
318
|
return pulumi.get(self, "auth_password")
|
319
319
|
|
@@ -321,7 +321,7 @@ class AlertChannelConfig(dict):
|
|
321
321
|
@pulumi.getter(name="authType")
|
322
322
|
def auth_type(self) -> Optional[str]:
|
323
323
|
"""
|
324
|
-
Specifies an authentication method for use with a channel.
|
324
|
+
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.
|
325
325
|
"""
|
326
326
|
return pulumi.get(self, "auth_type")
|
327
327
|
|
@@ -329,7 +329,7 @@ class AlertChannelConfig(dict):
|
|
329
329
|
@pulumi.getter(name="authUsername")
|
330
330
|
def auth_username(self) -> Optional[str]:
|
331
331
|
"""
|
332
|
-
Specifies an authentication username for use with a channel.
|
332
|
+
Specifies an authentication username for use with a channel. Supported by the webhook channel type.
|
333
333
|
"""
|
334
334
|
return pulumi.get(self, "auth_username")
|
335
335
|
|
@@ -361,7 +361,7 @@ class AlertChannelConfig(dict):
|
|
361
361
|
@pulumi.getter(name="headersString")
|
362
362
|
def headers_string(self) -> Optional[str]:
|
363
363
|
"""
|
364
|
-
Use instead of
|
364
|
+
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.
|
365
365
|
"""
|
366
366
|
return pulumi.get(self, "headers_string")
|
367
367
|
|
@@ -369,7 +369,7 @@ class AlertChannelConfig(dict):
|
|
369
369
|
@pulumi.getter(name="includeJsonAttachment")
|
370
370
|
def include_json_attachment(self) -> Optional[str]:
|
371
371
|
"""
|
372
|
-
|
372
|
+
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.
|
373
373
|
"""
|
374
374
|
return pulumi.get(self, "include_json_attachment")
|
375
375
|
|
@@ -385,7 +385,7 @@ class AlertChannelConfig(dict):
|
|
385
385
|
@pulumi.getter
|
386
386
|
def payload(self) -> Optional[Mapping[str, str]]:
|
387
387
|
"""
|
388
|
-
A map of key/value pairs that represents the webhook payload.
|
388
|
+
A map of key/value pairs that represents the webhook payload. Must provide payload_type if setting this argument.
|
389
389
|
"""
|
390
390
|
return pulumi.get(self, "payload")
|
391
391
|
|
@@ -393,7 +393,7 @@ class AlertChannelConfig(dict):
|
|
393
393
|
@pulumi.getter(name="payloadString")
|
394
394
|
def payload_string(self) -> Optional[str]:
|
395
395
|
"""
|
396
|
-
Use instead of
|
396
|
+
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
397
|
"""
|
398
398
|
return pulumi.get(self, "payload_string")
|
399
399
|
|
@@ -401,7 +401,7 @@ class AlertChannelConfig(dict):
|
|
401
401
|
@pulumi.getter(name="payloadType")
|
402
402
|
def payload_type(self) -> Optional[str]:
|
403
403
|
"""
|
404
|
-
Can either be
|
404
|
+
Can either be application/json or application/x-www-form-urlencoded. The payload_type argument is required if payload is set.
|
405
405
|
"""
|
406
406
|
return pulumi.get(self, "payload_type")
|
407
407
|
|
@@ -409,7 +409,7 @@ class AlertChannelConfig(dict):
|
|
409
409
|
@pulumi.getter
|
410
410
|
def recipients(self) -> Optional[str]:
|
411
411
|
"""
|
412
|
-
A set of recipients for targeting notifications.
|
412
|
+
A set of recipients for targeting notifications. Multiple values are comma separated.
|
413
413
|
"""
|
414
414
|
return pulumi.get(self, "recipients")
|
415
415
|
|
@@ -417,7 +417,7 @@ class AlertChannelConfig(dict):
|
|
417
417
|
@pulumi.getter
|
418
418
|
def region(self) -> Optional[str]:
|
419
419
|
"""
|
420
|
-
The data center region to store your data.
|
420
|
+
The data center region to store your data. Valid values are US and EU. Default is US.
|
421
421
|
"""
|
422
422
|
return pulumi.get(self, "region")
|
423
423
|
|
@@ -457,7 +457,7 @@ class AlertChannelConfig(dict):
|
|
457
457
|
@pulumi.getter
|
458
458
|
def url(self) -> Optional[str]:
|
459
459
|
"""
|
460
|
-
|
460
|
+
Your organization's Slack URL.
|
461
461
|
"""
|
462
462
|
return pulumi.get(self, "url")
|
463
463
|
|
@@ -557,8 +557,8 @@ class AlertMutingRuleCondition(dict):
|
|
557
557
|
conditions: Sequence['outputs.AlertMutingRuleConditionCondition'],
|
558
558
|
operator: str):
|
559
559
|
"""
|
560
|
-
:param Sequence['AlertMutingRuleConditionConditionArgs'] conditions: The individual MutingRuleConditions within the group.
|
561
|
-
:param str operator: The operator used to combine all the MutingRuleConditions within the group.
|
560
|
+
:param Sequence['AlertMutingRuleConditionConditionArgs'] conditions: The individual MutingRuleConditions within the group.
|
561
|
+
:param str operator: The operator used to combine all the MutingRuleConditions within the group.
|
562
562
|
"""
|
563
563
|
pulumi.set(__self__, "conditions", conditions)
|
564
564
|
pulumi.set(__self__, "operator", operator)
|
@@ -567,7 +567,7 @@ class AlertMutingRuleCondition(dict):
|
|
567
567
|
@pulumi.getter
|
568
568
|
def conditions(self) -> Sequence['outputs.AlertMutingRuleConditionCondition']:
|
569
569
|
"""
|
570
|
-
The individual MutingRuleConditions within the group.
|
570
|
+
The individual MutingRuleConditions within the group.
|
571
571
|
"""
|
572
572
|
return pulumi.get(self, "conditions")
|
573
573
|
|
@@ -575,7 +575,7 @@ class AlertMutingRuleCondition(dict):
|
|
575
575
|
@pulumi.getter
|
576
576
|
def operator(self) -> str:
|
577
577
|
"""
|
578
|
-
The operator used to combine all the MutingRuleConditions within the group.
|
578
|
+
The operator used to combine all the MutingRuleConditions within the group.
|
579
579
|
"""
|
580
580
|
return pulumi.get(self, "operator")
|
581
581
|
|
@@ -587,8 +587,8 @@ class AlertMutingRuleConditionCondition(dict):
|
|
587
587
|
operator: str,
|
588
588
|
values: Sequence[str]):
|
589
589
|
"""
|
590
|
-
:param str attribute: The attribute on an incident.
|
591
|
-
:param str operator: The operator used to
|
590
|
+
:param str attribute: The attribute on an incident.
|
591
|
+
:param str operator: The operator used to compare the attribute's value with the supplied value(s).
|
592
592
|
:param Sequence[str] values: The value(s) to compare against the attribute's value.
|
593
593
|
"""
|
594
594
|
pulumi.set(__self__, "attribute", attribute)
|
@@ -599,7 +599,7 @@ class AlertMutingRuleConditionCondition(dict):
|
|
599
599
|
@pulumi.getter
|
600
600
|
def attribute(self) -> str:
|
601
601
|
"""
|
602
|
-
The attribute on an incident.
|
602
|
+
The attribute on an incident.
|
603
603
|
"""
|
604
604
|
return pulumi.get(self, "attribute")
|
605
605
|
|
@@ -607,7 +607,7 @@ class AlertMutingRuleConditionCondition(dict):
|
|
607
607
|
@pulumi.getter
|
608
608
|
def operator(self) -> str:
|
609
609
|
"""
|
610
|
-
The operator used to
|
610
|
+
The operator used to compare the attribute's value with the supplied value(s).
|
611
611
|
"""
|
612
612
|
return pulumi.get(self, "operator")
|
613
613
|
|
@@ -881,10 +881,8 @@ class MonitorDowntimeEndRepeat(dict):
|
|
881
881
|
on_date: Optional[str] = None,
|
882
882
|
on_repeat: Optional[int] = None):
|
883
883
|
"""
|
884
|
-
:param str on_date:
|
885
|
-
:param int on_repeat:
|
886
|
-
|
887
|
-
> **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.
|
884
|
+
:param str on_date: A date, on which the Monitor Downtime's repeat cycle is expected to end.
|
885
|
+
:param int on_repeat: Number of repetitions after which the Monitor Downtime's repeat cycle is expected to end.
|
888
886
|
"""
|
889
887
|
if on_date is not None:
|
890
888
|
pulumi.set(__self__, "on_date", on_date)
|
@@ -895,7 +893,7 @@ class MonitorDowntimeEndRepeat(dict):
|
|
895
893
|
@pulumi.getter(name="onDate")
|
896
894
|
def on_date(self) -> Optional[str]:
|
897
895
|
"""
|
898
|
-
|
896
|
+
A date, on which the Monitor Downtime's repeat cycle is expected to end.
|
899
897
|
"""
|
900
898
|
return pulumi.get(self, "on_date")
|
901
899
|
|
@@ -903,9 +901,7 @@ class MonitorDowntimeEndRepeat(dict):
|
|
903
901
|
@pulumi.getter(name="onRepeat")
|
904
902
|
def on_repeat(self) -> Optional[int]:
|
905
903
|
"""
|
906
|
-
|
907
|
-
|
908
|
-
> **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.
|
904
|
+
Number of repetitions after which the Monitor Downtime's repeat cycle is expected to end.
|
909
905
|
"""
|
910
906
|
return pulumi.get(self, "on_repeat")
|
911
907
|
|
@@ -935,8 +931,8 @@ class MonitorDowntimeFrequency(dict):
|
|
935
931
|
days_of_months: Optional[Sequence[int]] = None,
|
936
932
|
days_of_week: Optional['outputs.MonitorDowntimeFrequencyDaysOfWeek'] = None):
|
937
933
|
"""
|
938
|
-
:param Sequence[int] days_of_months: A list of
|
939
|
-
:param 'MonitorDowntimeFrequencyDaysOfWeekArgs' days_of_week:
|
934
|
+
:param Sequence[int] days_of_months: A numerical list of days of a month on which the Monitor Downtime is scheduled to run.
|
935
|
+
:param 'MonitorDowntimeFrequencyDaysOfWeekArgs' days_of_week: A list of days of the week on which the Monitor Downtime is scheduled to run.
|
940
936
|
"""
|
941
937
|
if days_of_months is not None:
|
942
938
|
pulumi.set(__self__, "days_of_months", days_of_months)
|
@@ -947,7 +943,7 @@ class MonitorDowntimeFrequency(dict):
|
|
947
943
|
@pulumi.getter(name="daysOfMonths")
|
948
944
|
def days_of_months(self) -> Optional[Sequence[int]]:
|
949
945
|
"""
|
950
|
-
A list of
|
946
|
+
A numerical list of days of a month on which the Monitor Downtime is scheduled to run.
|
951
947
|
"""
|
952
948
|
return pulumi.get(self, "days_of_months")
|
953
949
|
|
@@ -955,7 +951,7 @@ class MonitorDowntimeFrequency(dict):
|
|
955
951
|
@pulumi.getter(name="daysOfWeek")
|
956
952
|
def days_of_week(self) -> Optional['outputs.MonitorDowntimeFrequencyDaysOfWeek']:
|
957
953
|
"""
|
958
|
-
|
954
|
+
A list of days of the week on which the Monitor Downtime is scheduled to run.
|
959
955
|
"""
|
960
956
|
return pulumi.get(self, "days_of_week")
|
961
957
|
|
@@ -985,10 +981,8 @@ class MonitorDowntimeFrequencyDaysOfWeek(dict):
|
|
985
981
|
ordinal_day_of_month: str,
|
986
982
|
week_day: str):
|
987
983
|
"""
|
988
|
-
:param str ordinal_day_of_month:
|
989
|
-
|
990
|
-
> **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.
|
991
|
-
:param str week_day: A day of the week (one of `"SUNDAY"`, `"MONDAY"`, `"TUESDAY"`, `"WEDNESDAY"`, `"THURSDAY"`, `"FRIDAY"` or `"SATURDAY"`).
|
984
|
+
:param str ordinal_day_of_month: An occurrence of the day selected within the month.
|
985
|
+
:param str week_day: The day of the week on which the Monitor Downtime would run.
|
992
986
|
"""
|
993
987
|
pulumi.set(__self__, "ordinal_day_of_month", ordinal_day_of_month)
|
994
988
|
pulumi.set(__self__, "week_day", week_day)
|
@@ -997,9 +991,7 @@ class MonitorDowntimeFrequencyDaysOfWeek(dict):
|
|
997
991
|
@pulumi.getter(name="ordinalDayOfMonth")
|
998
992
|
def ordinal_day_of_month(self) -> str:
|
999
993
|
"""
|
1000
|
-
|
1001
|
-
|
1002
|
-
> **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.
|
994
|
+
An occurrence of the day selected within the month.
|
1003
995
|
"""
|
1004
996
|
return pulumi.get(self, "ordinal_day_of_month")
|
1005
997
|
|
@@ -1007,7 +999,7 @@ class MonitorDowntimeFrequencyDaysOfWeek(dict):
|
|
1007
999
|
@pulumi.getter(name="weekDay")
|
1008
1000
|
def week_day(self) -> str:
|
1009
1001
|
"""
|
1010
|
-
|
1002
|
+
The day of the week on which the Monitor Downtime would run.
|
1011
1003
|
"""
|
1012
1004
|
return pulumi.get(self, "week_day")
|
1013
1005
|
|
@@ -1037,12 +1029,10 @@ class NotificationChannelProperty(dict):
|
|
1037
1029
|
display_value: Optional[str] = None,
|
1038
1030
|
label: Optional[str] = None):
|
1039
1031
|
"""
|
1040
|
-
:param str key:
|
1041
|
-
:param str value:
|
1042
|
-
:param str display_value:
|
1043
|
-
|
1044
|
-
Each notification channel type supports a specific set of arguments for the `property` block:
|
1045
|
-
:param str label: The notification property label.
|
1032
|
+
:param str key: Notification property key.
|
1033
|
+
:param str value: Notification property value.
|
1034
|
+
:param str display_value: Notification property display key.
|
1035
|
+
:param str label: Notification property label.
|
1046
1036
|
"""
|
1047
1037
|
pulumi.set(__self__, "key", key)
|
1048
1038
|
pulumi.set(__self__, "value", value)
|
@@ -1055,7 +1045,7 @@ class NotificationChannelProperty(dict):
|
|
1055
1045
|
@pulumi.getter
|
1056
1046
|
def key(self) -> str:
|
1057
1047
|
"""
|
1058
|
-
|
1048
|
+
Notification property key.
|
1059
1049
|
"""
|
1060
1050
|
return pulumi.get(self, "key")
|
1061
1051
|
|
@@ -1063,7 +1053,7 @@ class NotificationChannelProperty(dict):
|
|
1063
1053
|
@pulumi.getter
|
1064
1054
|
def value(self) -> str:
|
1065
1055
|
"""
|
1066
|
-
|
1056
|
+
Notification property value.
|
1067
1057
|
"""
|
1068
1058
|
return pulumi.get(self, "value")
|
1069
1059
|
|
@@ -1071,9 +1061,7 @@ class NotificationChannelProperty(dict):
|
|
1071
1061
|
@pulumi.getter(name="displayValue")
|
1072
1062
|
def display_value(self) -> Optional[str]:
|
1073
1063
|
"""
|
1074
|
-
|
1075
|
-
|
1076
|
-
Each notification channel type supports a specific set of arguments for the `property` block:
|
1064
|
+
Notification property display key.
|
1077
1065
|
"""
|
1078
1066
|
return pulumi.get(self, "display_value")
|
1079
1067
|
|
@@ -1081,7 +1069,7 @@ class NotificationChannelProperty(dict):
|
|
1081
1069
|
@pulumi.getter
|
1082
1070
|
def label(self) -> Optional[str]:
|
1083
1071
|
"""
|
1084
|
-
|
1072
|
+
Notification property label.
|
1085
1073
|
"""
|
1086
1074
|
return pulumi.get(self, "label")
|
1087
1075
|
|
@@ -1091,27 +1079,17 @@ class NotificationDestinationAuthBasic(dict):
|
|
1091
1079
|
def __init__(__self__, *,
|
1092
1080
|
password: str,
|
1093
1081
|
user: str):
|
1094
|
-
"""
|
1095
|
-
:param str password: Specifies an authentication password for use with a destination.
|
1096
|
-
:param str user: The username of the basic auth.
|
1097
|
-
"""
|
1098
1082
|
pulumi.set(__self__, "password", password)
|
1099
1083
|
pulumi.set(__self__, "user", user)
|
1100
1084
|
|
1101
1085
|
@property
|
1102
1086
|
@pulumi.getter
|
1103
1087
|
def password(self) -> str:
|
1104
|
-
"""
|
1105
|
-
Specifies an authentication password for use with a destination.
|
1106
|
-
"""
|
1107
1088
|
return pulumi.get(self, "password")
|
1108
1089
|
|
1109
1090
|
@property
|
1110
1091
|
@pulumi.getter
|
1111
1092
|
def user(self) -> str:
|
1112
|
-
"""
|
1113
|
-
The username of the basic auth.
|
1114
|
-
"""
|
1115
1093
|
return pulumi.get(self, "user")
|
1116
1094
|
|
1117
1095
|
|
@@ -1120,9 +1098,6 @@ class NotificationDestinationAuthToken(dict):
|
|
1120
1098
|
def __init__(__self__, *,
|
1121
1099
|
token: str,
|
1122
1100
|
prefix: Optional[str] = None):
|
1123
|
-
"""
|
1124
|
-
:param str prefix: The prefix of the token auth.
|
1125
|
-
"""
|
1126
1101
|
pulumi.set(__self__, "token", token)
|
1127
1102
|
if prefix is not None:
|
1128
1103
|
pulumi.set(__self__, "prefix", prefix)
|
@@ -1135,9 +1110,6 @@ class NotificationDestinationAuthToken(dict):
|
|
1135
1110
|
@property
|
1136
1111
|
@pulumi.getter
|
1137
1112
|
def prefix(self) -> Optional[str]:
|
1138
|
-
"""
|
1139
|
-
The prefix of the token auth.
|
1140
|
-
"""
|
1141
1113
|
return pulumi.get(self, "prefix")
|
1142
1114
|
|
1143
1115
|
|
@@ -1166,12 +1138,10 @@ class NotificationDestinationProperty(dict):
|
|
1166
1138
|
display_value: Optional[str] = None,
|
1167
1139
|
label: Optional[str] = None):
|
1168
1140
|
"""
|
1169
|
-
:param str key:
|
1170
|
-
:param str value:
|
1171
|
-
:param str display_value:
|
1172
|
-
|
1173
|
-
Each notification destination type supports a specific set of arguments for the `property` block. See Additional Examples below for details:
|
1174
|
-
:param str label: The notification property label.
|
1141
|
+
:param str key: Notification property key.
|
1142
|
+
:param str value: Notification property value.
|
1143
|
+
:param str display_value: Notification property display key.
|
1144
|
+
:param str label: Notification property label.
|
1175
1145
|
"""
|
1176
1146
|
pulumi.set(__self__, "key", key)
|
1177
1147
|
pulumi.set(__self__, "value", value)
|
@@ -1184,7 +1154,7 @@ class NotificationDestinationProperty(dict):
|
|
1184
1154
|
@pulumi.getter
|
1185
1155
|
def key(self) -> str:
|
1186
1156
|
"""
|
1187
|
-
|
1157
|
+
Notification property key.
|
1188
1158
|
"""
|
1189
1159
|
return pulumi.get(self, "key")
|
1190
1160
|
|
@@ -1192,7 +1162,7 @@ class NotificationDestinationProperty(dict):
|
|
1192
1162
|
@pulumi.getter
|
1193
1163
|
def value(self) -> str:
|
1194
1164
|
"""
|
1195
|
-
|
1165
|
+
Notification property value.
|
1196
1166
|
"""
|
1197
1167
|
return pulumi.get(self, "value")
|
1198
1168
|
|
@@ -1200,9 +1170,7 @@ class NotificationDestinationProperty(dict):
|
|
1200
1170
|
@pulumi.getter(name="displayValue")
|
1201
1171
|
def display_value(self) -> Optional[str]:
|
1202
1172
|
"""
|
1203
|
-
|
1204
|
-
|
1205
|
-
Each notification destination type supports a specific set of arguments for the `property` block. See Additional Examples below for details:
|
1173
|
+
Notification property display key.
|
1206
1174
|
"""
|
1207
1175
|
return pulumi.get(self, "display_value")
|
1208
1176
|
|
@@ -1210,7 +1178,7 @@ class NotificationDestinationProperty(dict):
|
|
1210
1178
|
@pulumi.getter
|
1211
1179
|
def label(self) -> Optional[str]:
|
1212
1180
|
"""
|
1213
|
-
|
1181
|
+
Notification property label.
|
1214
1182
|
"""
|
1215
1183
|
return pulumi.get(self, "label")
|
1216
1184
|
|
@@ -1726,8 +1694,8 @@ class OneDashboardPage(dict):
|
|
1726
1694
|
widget_stacked_bars: Optional[Sequence['outputs.OneDashboardPageWidgetStackedBar']] = None,
|
1727
1695
|
widget_tables: Optional[Sequence['outputs.OneDashboardPageWidgetTable']] = None):
|
1728
1696
|
"""
|
1729
|
-
:param str name: The
|
1730
|
-
:param str description: Brief text describing the
|
1697
|
+
:param str name: (Required) The variable identifier.
|
1698
|
+
:param str description: (Optional) Brief text describing the page.
|
1731
1699
|
:param str guid: The unique entity identifier of the dashboard page in New Relic.
|
1732
1700
|
:param Sequence['OneDashboardPageWidgetAreaArgs'] widget_areas: An area widget.
|
1733
1701
|
:param Sequence['OneDashboardPageWidgetBarArgs'] widget_bars: A bar widget.
|
@@ -1782,7 +1750,7 @@ class OneDashboardPage(dict):
|
|
1782
1750
|
@pulumi.getter
|
1783
1751
|
def name(self) -> str:
|
1784
1752
|
"""
|
1785
|
-
The
|
1753
|
+
(Required) The variable identifier.
|
1786
1754
|
"""
|
1787
1755
|
return pulumi.get(self, "name")
|
1788
1756
|
|
@@ -1790,7 +1758,7 @@ class OneDashboardPage(dict):
|
|
1790
1758
|
@pulumi.getter
|
1791
1759
|
def description(self) -> Optional[str]:
|
1792
1760
|
"""
|
1793
|
-
Brief text describing the
|
1761
|
+
(Optional) Brief text describing the page.
|
1794
1762
|
"""
|
1795
1763
|
return pulumi.get(self, "description")
|
1796
1764
|
|
@@ -2243,7 +2211,7 @@ class OneDashboardPageWidgetAreaNrqlQuery(dict):
|
|
2243
2211
|
account_id: Optional[int] = None):
|
2244
2212
|
"""
|
2245
2213
|
:param 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.
|
2246
|
-
:param int account_id:
|
2214
|
+
:param int account_id: The account id used for the NRQL query.
|
2247
2215
|
"""
|
2248
2216
|
pulumi.set(__self__, "query", query)
|
2249
2217
|
if account_id is not None:
|
@@ -2261,7 +2229,7 @@ class OneDashboardPageWidgetAreaNrqlQuery(dict):
|
|
2261
2229
|
@pulumi.getter(name="accountId")
|
2262
2230
|
def account_id(self) -> Optional[int]:
|
2263
2231
|
"""
|
2264
|
-
|
2232
|
+
The account id used for the NRQL query.
|
2265
2233
|
"""
|
2266
2234
|
return pulumi.get(self, "account_id")
|
2267
2235
|
|
@@ -2818,7 +2786,7 @@ class OneDashboardPageWidgetBarNrqlQuery(dict):
|
|
2818
2786
|
account_id: Optional[int] = None):
|
2819
2787
|
"""
|
2820
2788
|
:param 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.
|
2821
|
-
:param int account_id:
|
2789
|
+
:param int account_id: The account id used for the NRQL query.
|
2822
2790
|
"""
|
2823
2791
|
pulumi.set(__self__, "query", query)
|
2824
2792
|
if account_id is not None:
|
@@ -2836,7 +2804,7 @@ class OneDashboardPageWidgetBarNrqlQuery(dict):
|
|
2836
2804
|
@pulumi.getter(name="accountId")
|
2837
2805
|
def account_id(self) -> Optional[int]:
|
2838
2806
|
"""
|
2839
|
-
|
2807
|
+
The account id used for the NRQL query.
|
2840
2808
|
"""
|
2841
2809
|
return pulumi.get(self, "account_id")
|
2842
2810
|
|
@@ -3389,7 +3357,7 @@ class OneDashboardPageWidgetBillboardNrqlQuery(dict):
|
|
3389
3357
|
account_id: Optional[int] = None):
|
3390
3358
|
"""
|
3391
3359
|
:param 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.
|
3392
|
-
:param int account_id:
|
3360
|
+
:param int account_id: The account id used for the NRQL query.
|
3393
3361
|
"""
|
3394
3362
|
pulumi.set(__self__, "query", query)
|
3395
3363
|
if account_id is not None:
|
@@ -3407,7 +3375,7 @@ class OneDashboardPageWidgetBillboardNrqlQuery(dict):
|
|
3407
3375
|
@pulumi.getter(name="accountId")
|
3408
3376
|
def account_id(self) -> Optional[int]:
|
3409
3377
|
"""
|
3410
|
-
|
3378
|
+
The account id used for the NRQL query.
|
3411
3379
|
"""
|
3412
3380
|
return pulumi.get(self, "account_id")
|
3413
3381
|
|
@@ -3947,7 +3915,7 @@ class OneDashboardPageWidgetBulletNrqlQuery(dict):
|
|
3947
3915
|
account_id: Optional[int] = None):
|
3948
3916
|
"""
|
3949
3917
|
:param 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.
|
3950
|
-
:param int account_id:
|
3918
|
+
:param int account_id: The account id used for the NRQL query.
|
3951
3919
|
"""
|
3952
3920
|
pulumi.set(__self__, "query", query)
|
3953
3921
|
if account_id is not None:
|
@@ -3965,7 +3933,7 @@ class OneDashboardPageWidgetBulletNrqlQuery(dict):
|
|
3965
3933
|
@pulumi.getter(name="accountId")
|
3966
3934
|
def account_id(self) -> Optional[int]:
|
3967
3935
|
"""
|
3968
|
-
|
3936
|
+
The account id used for the NRQL query.
|
3969
3937
|
"""
|
3970
3938
|
return pulumi.get(self, "account_id")
|
3971
3939
|
|
@@ -4494,7 +4462,7 @@ class OneDashboardPageWidgetFunnelNrqlQuery(dict):
|
|
4494
4462
|
account_id: Optional[int] = None):
|
4495
4463
|
"""
|
4496
4464
|
:param 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.
|
4497
|
-
:param int account_id:
|
4465
|
+
:param int account_id: The account id used for the NRQL query.
|
4498
4466
|
"""
|
4499
4467
|
pulumi.set(__self__, "query", query)
|
4500
4468
|
if account_id is not None:
|
@@ -4512,7 +4480,7 @@ class OneDashboardPageWidgetFunnelNrqlQuery(dict):
|
|
4512
4480
|
@pulumi.getter(name="accountId")
|
4513
4481
|
def account_id(self) -> Optional[int]:
|
4514
4482
|
"""
|
4515
|
-
|
4483
|
+
The account id used for the NRQL query.
|
4516
4484
|
"""
|
4517
4485
|
return pulumi.get(self, "account_id")
|
4518
4486
|
|
@@ -5069,7 +5037,7 @@ class OneDashboardPageWidgetHeatmapNrqlQuery(dict):
|
|
5069
5037
|
account_id: Optional[int] = None):
|
5070
5038
|
"""
|
5071
5039
|
:param 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.
|
5072
|
-
:param int account_id:
|
5040
|
+
:param int account_id: The account id used for the NRQL query.
|
5073
5041
|
"""
|
5074
5042
|
pulumi.set(__self__, "query", query)
|
5075
5043
|
if account_id is not None:
|
@@ -5087,7 +5055,7 @@ class OneDashboardPageWidgetHeatmapNrqlQuery(dict):
|
|
5087
5055
|
@pulumi.getter(name="accountId")
|
5088
5056
|
def account_id(self) -> Optional[int]:
|
5089
5057
|
"""
|
5090
|
-
|
5058
|
+
The account id used for the NRQL query.
|
5091
5059
|
"""
|
5092
5060
|
return pulumi.get(self, "account_id")
|
5093
5061
|
|
@@ -5616,7 +5584,7 @@ class OneDashboardPageWidgetHistogramNrqlQuery(dict):
|
|
5616
5584
|
account_id: Optional[int] = None):
|
5617
5585
|
"""
|
5618
5586
|
:param 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.
|
5619
|
-
:param int account_id:
|
5587
|
+
:param int account_id: The account id used for the NRQL query.
|
5620
5588
|
"""
|
5621
5589
|
pulumi.set(__self__, "query", query)
|
5622
5590
|
if account_id is not None:
|
@@ -5634,7 +5602,7 @@ class OneDashboardPageWidgetHistogramNrqlQuery(dict):
|
|
5634
5602
|
@pulumi.getter(name="accountId")
|
5635
5603
|
def account_id(self) -> Optional[int]:
|
5636
5604
|
"""
|
5637
|
-
|
5605
|
+
The account id used for the NRQL query.
|
5638
5606
|
"""
|
5639
5607
|
return pulumi.get(self, "account_id")
|
5640
5608
|
|
@@ -6163,7 +6131,7 @@ class OneDashboardPageWidgetJsonNrqlQuery(dict):
|
|
6163
6131
|
account_id: Optional[int] = None):
|
6164
6132
|
"""
|
6165
6133
|
:param 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.
|
6166
|
-
:param int account_id:
|
6134
|
+
:param int account_id: The account id used for the NRQL query.
|
6167
6135
|
"""
|
6168
6136
|
pulumi.set(__self__, "query", query)
|
6169
6137
|
if account_id is not None:
|
@@ -6181,7 +6149,7 @@ class OneDashboardPageWidgetJsonNrqlQuery(dict):
|
|
6181
6149
|
@pulumi.getter(name="accountId")
|
6182
6150
|
def account_id(self) -> Optional[int]:
|
6183
6151
|
"""
|
6184
|
-
|
6152
|
+
The account id used for the NRQL query.
|
6185
6153
|
"""
|
6186
6154
|
return pulumi.get(self, "account_id")
|
6187
6155
|
|
@@ -6724,7 +6692,7 @@ class OneDashboardPageWidgetLineNrqlQuery(dict):
|
|
6724
6692
|
account_id: Optional[int] = None):
|
6725
6693
|
"""
|
6726
6694
|
:param 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.
|
6727
|
-
:param int account_id:
|
6695
|
+
:param int account_id: The account id used for the NRQL query.
|
6728
6696
|
"""
|
6729
6697
|
pulumi.set(__self__, "query", query)
|
6730
6698
|
if account_id is not None:
|
@@ -6742,7 +6710,7 @@ class OneDashboardPageWidgetLineNrqlQuery(dict):
|
|
6742
6710
|
@pulumi.getter(name="accountId")
|
6743
6711
|
def account_id(self) -> Optional[int]:
|
6744
6712
|
"""
|
6745
|
-
|
6713
|
+
The account id used for the NRQL query.
|
6746
6714
|
"""
|
6747
6715
|
return pulumi.get(self, "account_id")
|
6748
6716
|
|
@@ -7271,7 +7239,7 @@ class OneDashboardPageWidgetLogTableNrqlQuery(dict):
|
|
7271
7239
|
account_id: Optional[int] = None):
|
7272
7240
|
"""
|
7273
7241
|
:param 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.
|
7274
|
-
:param int account_id:
|
7242
|
+
:param int account_id: The account id used for the NRQL query.
|
7275
7243
|
"""
|
7276
7244
|
pulumi.set(__self__, "query", query)
|
7277
7245
|
if account_id is not None:
|
@@ -7289,7 +7257,7 @@ class OneDashboardPageWidgetLogTableNrqlQuery(dict):
|
|
7289
7257
|
@pulumi.getter(name="accountId")
|
7290
7258
|
def account_id(self) -> Optional[int]:
|
7291
7259
|
"""
|
7292
|
-
|
7260
|
+
The account id used for the NRQL query.
|
7293
7261
|
"""
|
7294
7262
|
return pulumi.get(self, "account_id")
|
7295
7263
|
|
@@ -8344,7 +8312,7 @@ class OneDashboardPageWidgetPyNrqlQuery(dict):
|
|
8344
8312
|
account_id: Optional[int] = None):
|
8345
8313
|
"""
|
8346
8314
|
:param 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.
|
8347
|
-
:param int account_id:
|
8315
|
+
:param int account_id: The account id used for the NRQL query.
|
8348
8316
|
"""
|
8349
8317
|
pulumi.set(__self__, "query", query)
|
8350
8318
|
if account_id is not None:
|
@@ -8362,7 +8330,7 @@ class OneDashboardPageWidgetPyNrqlQuery(dict):
|
|
8362
8330
|
@pulumi.getter(name="accountId")
|
8363
8331
|
def account_id(self) -> Optional[int]:
|
8364
8332
|
"""
|
8365
|
-
|
8333
|
+
The account id used for the NRQL query.
|
8366
8334
|
"""
|
8367
8335
|
return pulumi.get(self, "account_id")
|
8368
8336
|
|
@@ -8891,7 +8859,7 @@ class OneDashboardPageWidgetStackedBarNrqlQuery(dict):
|
|
8891
8859
|
account_id: Optional[int] = None):
|
8892
8860
|
"""
|
8893
8861
|
:param 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.
|
8894
|
-
:param int account_id:
|
8862
|
+
:param int account_id: The account id used for the NRQL query.
|
8895
8863
|
"""
|
8896
8864
|
pulumi.set(__self__, "query", query)
|
8897
8865
|
if account_id is not None:
|
@@ -8909,7 +8877,7 @@ class OneDashboardPageWidgetStackedBarNrqlQuery(dict):
|
|
8909
8877
|
@pulumi.getter(name="accountId")
|
8910
8878
|
def account_id(self) -> Optional[int]:
|
8911
8879
|
"""
|
8912
|
-
|
8880
|
+
The account id used for the NRQL query.
|
8913
8881
|
"""
|
8914
8882
|
return pulumi.get(self, "account_id")
|
8915
8883
|
|
@@ -9466,7 +9434,7 @@ class OneDashboardPageWidgetTableNrqlQuery(dict):
|
|
9466
9434
|
account_id: Optional[int] = None):
|
9467
9435
|
"""
|
9468
9436
|
:param 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.
|
9469
|
-
:param int account_id:
|
9437
|
+
:param int account_id: The account id used for the NRQL query.
|
9470
9438
|
"""
|
9471
9439
|
pulumi.set(__self__, "query", query)
|
9472
9440
|
if account_id is not None:
|
@@ -9484,7 +9452,7 @@ class OneDashboardPageWidgetTableNrqlQuery(dict):
|
|
9484
9452
|
@pulumi.getter(name="accountId")
|
9485
9453
|
def account_id(self) -> Optional[int]:
|
9486
9454
|
"""
|
9487
|
-
|
9455
|
+
The account id used for the NRQL query.
|
9488
9456
|
"""
|
9489
9457
|
return pulumi.get(self, "account_id")
|
9490
9458
|
|
@@ -9904,7 +9872,7 @@ class OneDashboardVariable(dict):
|
|
9904
9872
|
nrql_query: Optional['outputs.OneDashboardVariableNrqlQuery'] = None,
|
9905
9873
|
options: Optional[Sequence['outputs.OneDashboardVariableOption']] = None):
|
9906
9874
|
"""
|
9907
|
-
:param str name: The
|
9875
|
+
:param str name: (Required) The variable identifier.
|
9908
9876
|
:param str replacement_strategy: (Optional) Indicates the strategy to apply when replacing a variable in a NRQL query. One of `default`, `identifier`, `number` or `string`.
|
9909
9877
|
:param str title: (Optional) A human-friendly display string for this value.
|
9910
9878
|
:param str type: (Required) Specifies the data type of the variable and where its possible values may come from. One of `enum`, `nrql` or `string`
|
@@ -9933,7 +9901,7 @@ class OneDashboardVariable(dict):
|
|
9933
9901
|
@pulumi.getter
|
9934
9902
|
def name(self) -> str:
|
9935
9903
|
"""
|
9936
|
-
The
|
9904
|
+
(Required) The variable identifier.
|
9937
9905
|
"""
|
9938
9906
|
return pulumi.get(self, "name")
|
9939
9907
|
|
@@ -10145,13 +10113,6 @@ class ServiceLevelEvents(dict):
|
|
10145
10113
|
valid_events: 'outputs.ServiceLevelEventsValidEvents',
|
10146
10114
|
bad_events: Optional['outputs.ServiceLevelEventsBadEvents'] = None,
|
10147
10115
|
good_events: Optional['outputs.ServiceLevelEventsGoodEvents'] = None):
|
10148
|
-
"""
|
10149
|
-
:param int account_id: The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
|
10150
|
-
and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
|
10151
|
-
:param 'ServiceLevelEventsValidEventsArgs' valid_events: The definition of valid requests.
|
10152
|
-
:param '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.
|
10153
|
-
:param '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.
|
10154
|
-
"""
|
10155
10116
|
pulumi.set(__self__, "account_id", account_id)
|
10156
10117
|
pulumi.set(__self__, "valid_events", valid_events)
|
10157
10118
|
if bad_events is not None:
|
@@ -10162,34 +10123,21 @@ class ServiceLevelEvents(dict):
|
|
10162
10123
|
@property
|
10163
10124
|
@pulumi.getter(name="accountId")
|
10164
10125
|
def account_id(self) -> int:
|
10165
|
-
"""
|
10166
|
-
The ID of the account where the entity (e.g, APM Service, Browser application, Workload, etc.) belongs to,
|
10167
|
-
and that contains the NRDB data for the SLI/SLO calculations. Note that changing the account ID will force a new resource.
|
10168
|
-
"""
|
10169
10126
|
return pulumi.get(self, "account_id")
|
10170
10127
|
|
10171
10128
|
@property
|
10172
10129
|
@pulumi.getter(name="validEvents")
|
10173
10130
|
def valid_events(self) -> 'outputs.ServiceLevelEventsValidEvents':
|
10174
|
-
"""
|
10175
|
-
The definition of valid requests.
|
10176
|
-
"""
|
10177
10131
|
return pulumi.get(self, "valid_events")
|
10178
10132
|
|
10179
10133
|
@property
|
10180
10134
|
@pulumi.getter(name="badEvents")
|
10181
10135
|
def bad_events(self) -> Optional['outputs.ServiceLevelEventsBadEvents']:
|
10182
|
-
"""
|
10183
|
-
The definition of the bad responses. If you define an SLI from valid and bad events, you must leave the good events argument empty.
|
10184
|
-
"""
|
10185
10136
|
return pulumi.get(self, "bad_events")
|
10186
10137
|
|
10187
10138
|
@property
|
10188
10139
|
@pulumi.getter(name="goodEvents")
|
10189
10140
|
def good_events(self) -> Optional['outputs.ServiceLevelEventsGoodEvents']:
|
10190
|
-
"""
|
10191
|
-
The definition of good responses. If you define an SLI from valid and good events, you must leave the bad events argument empty.
|
10192
|
-
"""
|
10193
10141
|
return pulumi.get(self, "good_events")
|
10194
10142
|
|
10195
10143
|
|
@@ -10216,12 +10164,6 @@ class ServiceLevelEventsBadEvents(dict):
|
|
10216
10164
|
from_: str,
|
10217
10165
|
select: Optional['outputs.ServiceLevelEventsBadEventsSelect'] = None,
|
10218
10166
|
where: Optional[str] = None):
|
10219
|
-
"""
|
10220
|
-
:param str from_: The event type where NRDB data will be fetched from.
|
10221
|
-
:param 'ServiceLevelEventsBadEventsSelectArgs' select: The NRQL SELECT clause to aggregate events.
|
10222
|
-
:param str where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10223
|
-
a particular entity and returned an error).
|
10224
|
-
"""
|
10225
10167
|
pulumi.set(__self__, "from_", from_)
|
10226
10168
|
if select is not None:
|
10227
10169
|
pulumi.set(__self__, "select", select)
|
@@ -10231,26 +10173,16 @@ class ServiceLevelEventsBadEvents(dict):
|
|
10231
10173
|
@property
|
10232
10174
|
@pulumi.getter(name="from")
|
10233
10175
|
def from_(self) -> str:
|
10234
|
-
"""
|
10235
|
-
The event type where NRDB data will be fetched from.
|
10236
|
-
"""
|
10237
10176
|
return pulumi.get(self, "from_")
|
10238
10177
|
|
10239
10178
|
@property
|
10240
10179
|
@pulumi.getter
|
10241
10180
|
def select(self) -> Optional['outputs.ServiceLevelEventsBadEventsSelect']:
|
10242
|
-
"""
|
10243
|
-
The NRQL SELECT clause to aggregate events.
|
10244
|
-
"""
|
10245
10181
|
return pulumi.get(self, "select")
|
10246
10182
|
|
10247
10183
|
@property
|
10248
10184
|
@pulumi.getter
|
10249
10185
|
def where(self) -> Optional[str]:
|
10250
|
-
"""
|
10251
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10252
|
-
a particular entity and returned an error).
|
10253
|
-
"""
|
10254
10186
|
return pulumi.get(self, "where")
|
10255
10187
|
|
10256
10188
|
|
@@ -10261,9 +10193,7 @@ class ServiceLevelEventsBadEventsSelect(dict):
|
|
10261
10193
|
attribute: Optional[str] = None,
|
10262
10194
|
threshold: Optional[float] = None):
|
10263
10195
|
"""
|
10264
|
-
:param
|
10265
|
-
:param str attribute: The event attribute to use in the SELECT clause.
|
10266
|
-
:param float threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
10196
|
+
:param float threshold: The event threshold to use in the SELECT clause
|
10267
10197
|
"""
|
10268
10198
|
pulumi.set(__self__, "function", function)
|
10269
10199
|
if attribute is not None:
|
@@ -10274,24 +10204,18 @@ class ServiceLevelEventsBadEventsSelect(dict):
|
|
10274
10204
|
@property
|
10275
10205
|
@pulumi.getter
|
10276
10206
|
def function(self) -> str:
|
10277
|
-
"""
|
10278
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
10279
|
-
"""
|
10280
10207
|
return pulumi.get(self, "function")
|
10281
10208
|
|
10282
10209
|
@property
|
10283
10210
|
@pulumi.getter
|
10284
10211
|
def attribute(self) -> Optional[str]:
|
10285
|
-
"""
|
10286
|
-
The event attribute to use in the SELECT clause.
|
10287
|
-
"""
|
10288
10212
|
return pulumi.get(self, "attribute")
|
10289
10213
|
|
10290
10214
|
@property
|
10291
10215
|
@pulumi.getter
|
10292
10216
|
def threshold(self) -> Optional[float]:
|
10293
10217
|
"""
|
10294
|
-
|
10218
|
+
The event threshold to use in the SELECT clause
|
10295
10219
|
"""
|
10296
10220
|
return pulumi.get(self, "threshold")
|
10297
10221
|
|
@@ -10319,12 +10243,6 @@ class ServiceLevelEventsGoodEvents(dict):
|
|
10319
10243
|
from_: str,
|
10320
10244
|
select: Optional['outputs.ServiceLevelEventsGoodEventsSelect'] = None,
|
10321
10245
|
where: Optional[str] = None):
|
10322
|
-
"""
|
10323
|
-
:param str from_: The event type where NRDB data will be fetched from.
|
10324
|
-
:param 'ServiceLevelEventsGoodEventsSelectArgs' select: The NRQL SELECT clause to aggregate events.
|
10325
|
-
:param str where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10326
|
-
a particular entity and returned an error).
|
10327
|
-
"""
|
10328
10246
|
pulumi.set(__self__, "from_", from_)
|
10329
10247
|
if select is not None:
|
10330
10248
|
pulumi.set(__self__, "select", select)
|
@@ -10334,26 +10252,16 @@ class ServiceLevelEventsGoodEvents(dict):
|
|
10334
10252
|
@property
|
10335
10253
|
@pulumi.getter(name="from")
|
10336
10254
|
def from_(self) -> str:
|
10337
|
-
"""
|
10338
|
-
The event type where NRDB data will be fetched from.
|
10339
|
-
"""
|
10340
10255
|
return pulumi.get(self, "from_")
|
10341
10256
|
|
10342
10257
|
@property
|
10343
10258
|
@pulumi.getter
|
10344
10259
|
def select(self) -> Optional['outputs.ServiceLevelEventsGoodEventsSelect']:
|
10345
|
-
"""
|
10346
|
-
The NRQL SELECT clause to aggregate events.
|
10347
|
-
"""
|
10348
10260
|
return pulumi.get(self, "select")
|
10349
10261
|
|
10350
10262
|
@property
|
10351
10263
|
@pulumi.getter
|
10352
10264
|
def where(self) -> Optional[str]:
|
10353
|
-
"""
|
10354
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10355
|
-
a particular entity and returned an error).
|
10356
|
-
"""
|
10357
10265
|
return pulumi.get(self, "where")
|
10358
10266
|
|
10359
10267
|
|
@@ -10364,9 +10272,7 @@ class ServiceLevelEventsGoodEventsSelect(dict):
|
|
10364
10272
|
attribute: Optional[str] = None,
|
10365
10273
|
threshold: Optional[float] = None):
|
10366
10274
|
"""
|
10367
|
-
:param
|
10368
|
-
:param str attribute: The event attribute to use in the SELECT clause.
|
10369
|
-
:param float threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
10275
|
+
:param float threshold: The event threshold to use in the SELECT clause
|
10370
10276
|
"""
|
10371
10277
|
pulumi.set(__self__, "function", function)
|
10372
10278
|
if attribute is not None:
|
@@ -10377,24 +10283,18 @@ class ServiceLevelEventsGoodEventsSelect(dict):
|
|
10377
10283
|
@property
|
10378
10284
|
@pulumi.getter
|
10379
10285
|
def function(self) -> str:
|
10380
|
-
"""
|
10381
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
10382
|
-
"""
|
10383
10286
|
return pulumi.get(self, "function")
|
10384
10287
|
|
10385
10288
|
@property
|
10386
10289
|
@pulumi.getter
|
10387
10290
|
def attribute(self) -> Optional[str]:
|
10388
|
-
"""
|
10389
|
-
The event attribute to use in the SELECT clause.
|
10390
|
-
"""
|
10391
10291
|
return pulumi.get(self, "attribute")
|
10392
10292
|
|
10393
10293
|
@property
|
10394
10294
|
@pulumi.getter
|
10395
10295
|
def threshold(self) -> Optional[float]:
|
10396
10296
|
"""
|
10397
|
-
|
10297
|
+
The event threshold to use in the SELECT clause
|
10398
10298
|
"""
|
10399
10299
|
return pulumi.get(self, "threshold")
|
10400
10300
|
|
@@ -10422,12 +10322,6 @@ class ServiceLevelEventsValidEvents(dict):
|
|
10422
10322
|
from_: str,
|
10423
10323
|
select: Optional['outputs.ServiceLevelEventsValidEventsSelect'] = None,
|
10424
10324
|
where: Optional[str] = None):
|
10425
|
-
"""
|
10426
|
-
:param str from_: The event type where NRDB data will be fetched from.
|
10427
|
-
:param 'ServiceLevelEventsValidEventsSelectArgs' select: The NRQL SELECT clause to aggregate events.
|
10428
|
-
:param str where: A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10429
|
-
a particular entity and returned an error).
|
10430
|
-
"""
|
10431
10325
|
pulumi.set(__self__, "from_", from_)
|
10432
10326
|
if select is not None:
|
10433
10327
|
pulumi.set(__self__, "select", select)
|
@@ -10437,26 +10331,16 @@ class ServiceLevelEventsValidEvents(dict):
|
|
10437
10331
|
@property
|
10438
10332
|
@pulumi.getter(name="from")
|
10439
10333
|
def from_(self) -> str:
|
10440
|
-
"""
|
10441
|
-
The event type where NRDB data will be fetched from.
|
10442
|
-
"""
|
10443
10334
|
return pulumi.get(self, "from_")
|
10444
10335
|
|
10445
10336
|
@property
|
10446
10337
|
@pulumi.getter
|
10447
10338
|
def select(self) -> Optional['outputs.ServiceLevelEventsValidEventsSelect']:
|
10448
|
-
"""
|
10449
|
-
The NRQL SELECT clause to aggregate events.
|
10450
|
-
"""
|
10451
10339
|
return pulumi.get(self, "select")
|
10452
10340
|
|
10453
10341
|
@property
|
10454
10342
|
@pulumi.getter
|
10455
10343
|
def where(self) -> Optional[str]:
|
10456
|
-
"""
|
10457
|
-
A filter that narrows down the NRDB events just to those that are considered bad responses (e.g, those that refer to
|
10458
|
-
a particular entity and returned an error).
|
10459
|
-
"""
|
10460
10344
|
return pulumi.get(self, "where")
|
10461
10345
|
|
10462
10346
|
|
@@ -10467,9 +10351,7 @@ class ServiceLevelEventsValidEventsSelect(dict):
|
|
10467
10351
|
attribute: Optional[str] = None,
|
10468
10352
|
threshold: Optional[float] = None):
|
10469
10353
|
"""
|
10470
|
-
:param
|
10471
|
-
:param str attribute: The event attribute to use in the SELECT clause.
|
10472
|
-
:param float threshold: Limit for values to be counter by `GET_CDF_COUNT` function.
|
10354
|
+
:param float threshold: The event threshold to use in the SELECT clause
|
10473
10355
|
"""
|
10474
10356
|
pulumi.set(__self__, "function", function)
|
10475
10357
|
if attribute is not None:
|
@@ -10480,24 +10362,18 @@ class ServiceLevelEventsValidEventsSelect(dict):
|
|
10480
10362
|
@property
|
10481
10363
|
@pulumi.getter
|
10482
10364
|
def function(self) -> str:
|
10483
|
-
"""
|
10484
|
-
The function to use in the SELECT clause. Valid values are `COUNT`, `SUM`, `GET_FIELD`, and `GET_CDF_COUNT`.
|
10485
|
-
"""
|
10486
10365
|
return pulumi.get(self, "function")
|
10487
10366
|
|
10488
10367
|
@property
|
10489
10368
|
@pulumi.getter
|
10490
10369
|
def attribute(self) -> Optional[str]:
|
10491
|
-
"""
|
10492
|
-
The event attribute to use in the SELECT clause.
|
10493
|
-
"""
|
10494
10370
|
return pulumi.get(self, "attribute")
|
10495
10371
|
|
10496
10372
|
@property
|
10497
10373
|
@pulumi.getter
|
10498
10374
|
def threshold(self) -> Optional[float]:
|
10499
10375
|
"""
|
10500
|
-
|
10376
|
+
The event threshold to use in the SELECT clause
|
10501
10377
|
"""
|
10502
10378
|
return pulumi.get(self, "threshold")
|
10503
10379
|
|
@@ -10526,12 +10402,6 @@ class ServiceLevelObjective(dict):
|
|
10526
10402
|
time_window: 'outputs.ServiceLevelObjectiveTimeWindow',
|
10527
10403
|
description: Optional[str] = None,
|
10528
10404
|
name: Optional[str] = None):
|
10529
|
-
"""
|
10530
|
-
:param float target: The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
|
10531
|
-
:param 'ServiceLevelObjectiveTimeWindowArgs' time_window: Time window is the period of the objective.
|
10532
|
-
:param str description: The description of the SLI.
|
10533
|
-
:param str name: A short name for the SLI that will help anyone understand what it is about.
|
10534
|
-
"""
|
10535
10405
|
pulumi.set(__self__, "target", target)
|
10536
10406
|
pulumi.set(__self__, "time_window", time_window)
|
10537
10407
|
if description is not None:
|
@@ -10542,33 +10412,21 @@ class ServiceLevelObjective(dict):
|
|
10542
10412
|
@property
|
10543
10413
|
@pulumi.getter
|
10544
10414
|
def target(self) -> float:
|
10545
|
-
"""
|
10546
|
-
The target of the objective, valid values between `0` and `100`. Up to 5 decimals accepted.
|
10547
|
-
"""
|
10548
10415
|
return pulumi.get(self, "target")
|
10549
10416
|
|
10550
10417
|
@property
|
10551
10418
|
@pulumi.getter(name="timeWindow")
|
10552
10419
|
def time_window(self) -> 'outputs.ServiceLevelObjectiveTimeWindow':
|
10553
|
-
"""
|
10554
|
-
Time window is the period of the objective.
|
10555
|
-
"""
|
10556
10420
|
return pulumi.get(self, "time_window")
|
10557
10421
|
|
10558
10422
|
@property
|
10559
10423
|
@pulumi.getter
|
10560
10424
|
def description(self) -> Optional[str]:
|
10561
|
-
"""
|
10562
|
-
The description of the SLI.
|
10563
|
-
"""
|
10564
10425
|
return pulumi.get(self, "description")
|
10565
10426
|
|
10566
10427
|
@property
|
10567
10428
|
@pulumi.getter
|
10568
10429
|
def name(self) -> Optional[str]:
|
10569
|
-
"""
|
10570
|
-
A short name for the SLI that will help anyone understand what it is about.
|
10571
|
-
"""
|
10572
10430
|
return pulumi.get(self, "name")
|
10573
10431
|
|
10574
10432
|
|
@@ -10576,17 +10434,11 @@ class ServiceLevelObjective(dict):
|
|
10576
10434
|
class ServiceLevelObjectiveTimeWindow(dict):
|
10577
10435
|
def __init__(__self__, *,
|
10578
10436
|
rolling: 'outputs.ServiceLevelObjectiveTimeWindowRolling'):
|
10579
|
-
"""
|
10580
|
-
:param 'ServiceLevelObjectiveTimeWindowRollingArgs' rolling: Rolling window.
|
10581
|
-
"""
|
10582
10437
|
pulumi.set(__self__, "rolling", rolling)
|
10583
10438
|
|
10584
10439
|
@property
|
10585
10440
|
@pulumi.getter
|
10586
10441
|
def rolling(self) -> 'outputs.ServiceLevelObjectiveTimeWindowRolling':
|
10587
|
-
"""
|
10588
|
-
Rolling window.
|
10589
|
-
"""
|
10590
10442
|
return pulumi.get(self, "rolling")
|
10591
10443
|
|
10592
10444
|
|
@@ -10595,27 +10447,17 @@ class ServiceLevelObjectiveTimeWindowRolling(dict):
|
|
10595
10447
|
def __init__(__self__, *,
|
10596
10448
|
count: int,
|
10597
10449
|
unit: str):
|
10598
|
-
"""
|
10599
|
-
:param int count: Valid values are `1`, `7` and `28`.
|
10600
|
-
:param str unit: The only supported value is `DAY`.
|
10601
|
-
"""
|
10602
10450
|
pulumi.set(__self__, "count", count)
|
10603
10451
|
pulumi.set(__self__, "unit", unit)
|
10604
10452
|
|
10605
10453
|
@property
|
10606
10454
|
@pulumi.getter
|
10607
10455
|
def count(self) -> int:
|
10608
|
-
"""
|
10609
|
-
Valid values are `1`, `7` and `28`.
|
10610
|
-
"""
|
10611
10456
|
return pulumi.get(self, "count")
|
10612
10457
|
|
10613
10458
|
@property
|
10614
10459
|
@pulumi.getter
|
10615
10460
|
def unit(self) -> str:
|
10616
|
-
"""
|
10617
|
-
The only supported value is `DAY`.
|
10618
|
-
"""
|
10619
10461
|
return pulumi.get(self, "unit")
|
10620
10462
|
|
10621
10463
|
|
@@ -10646,11 +10488,10 @@ class WorkflowDestination(dict):
|
|
10646
10488
|
notification_triggers: Optional[Sequence[str]] = None,
|
10647
10489
|
type: Optional[str] = None):
|
10648
10490
|
"""
|
10649
|
-
:param str channel_id:
|
10650
|
-
**notification** channel, not an `alert_channel`.
|
10491
|
+
:param str channel_id: (Required) Destination's channel id.
|
10651
10492
|
:param str name: The name of the workflow.
|
10652
|
-
:param Sequence[str] notification_triggers:
|
10653
|
-
:param str type:
|
10493
|
+
:param Sequence[str] notification_triggers: List of triggers to notify about in this destination configuration.
|
10494
|
+
:param 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).
|
10654
10495
|
"""
|
10655
10496
|
pulumi.set(__self__, "channel_id", channel_id)
|
10656
10497
|
if name is not None:
|
@@ -10664,8 +10505,7 @@ class WorkflowDestination(dict):
|
|
10664
10505
|
@pulumi.getter(name="channelId")
|
10665
10506
|
def channel_id(self) -> str:
|
10666
10507
|
"""
|
10667
|
-
|
10668
|
-
**notification** channel, not an `alert_channel`.
|
10508
|
+
(Required) Destination's channel id.
|
10669
10509
|
"""
|
10670
10510
|
return pulumi.get(self, "channel_id")
|
10671
10511
|
|
@@ -10681,7 +10521,7 @@ class WorkflowDestination(dict):
|
|
10681
10521
|
@pulumi.getter(name="notificationTriggers")
|
10682
10522
|
def notification_triggers(self) -> Optional[Sequence[str]]:
|
10683
10523
|
"""
|
10684
|
-
|
10524
|
+
List of triggers to notify about in this destination configuration.
|
10685
10525
|
"""
|
10686
10526
|
return pulumi.get(self, "notification_triggers")
|
10687
10527
|
|
@@ -10689,7 +10529,7 @@ class WorkflowDestination(dict):
|
|
10689
10529
|
@pulumi.getter
|
10690
10530
|
def type(self) -> Optional[str]:
|
10691
10531
|
"""
|
10692
|
-
|
10532
|
+
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10693
10533
|
"""
|
10694
10534
|
return pulumi.get(self, "type")
|
10695
10535
|
|
@@ -10699,7 +10539,7 @@ class WorkflowEnrichments(dict):
|
|
10699
10539
|
def __init__(__self__, *,
|
10700
10540
|
nrqls: Sequence['outputs.WorkflowEnrichmentsNrql']):
|
10701
10541
|
"""
|
10702
|
-
:param Sequence['WorkflowEnrichmentsNrqlArgs'] nrqls:
|
10542
|
+
:param Sequence['WorkflowEnrichmentsNrqlArgs'] nrqls: (Required) Nrql type Enrichments.
|
10703
10543
|
"""
|
10704
10544
|
pulumi.set(__self__, "nrqls", nrqls)
|
10705
10545
|
|
@@ -10707,7 +10547,7 @@ class WorkflowEnrichments(dict):
|
|
10707
10547
|
@pulumi.getter
|
10708
10548
|
def nrqls(self) -> Sequence['outputs.WorkflowEnrichmentsNrql']:
|
10709
10549
|
"""
|
10710
|
-
|
10550
|
+
(Required) Nrql type Enrichments.
|
10711
10551
|
"""
|
10712
10552
|
return pulumi.get(self, "nrqls")
|
10713
10553
|
|
@@ -10740,11 +10580,11 @@ class WorkflowEnrichmentsNrql(dict):
|
|
10740
10580
|
enrichment_id: Optional[str] = None,
|
10741
10581
|
type: Optional[str] = None):
|
10742
10582
|
"""
|
10743
|
-
:param Sequence['WorkflowEnrichmentsNrqlConfigurationArgs'] configurations:
|
10583
|
+
:param Sequence['WorkflowEnrichmentsNrqlConfigurationArgs'] configurations: A set of key-value pairs to represent a enrichment configuration.
|
10744
10584
|
:param str name: The name of the workflow.
|
10745
10585
|
:param int account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
|
10746
10586
|
:param str enrichment_id: Enrichment's id.
|
10747
|
-
:param str type:
|
10587
|
+
:param str type: The type of the enrichment. One of: (NRQL).
|
10748
10588
|
"""
|
10749
10589
|
pulumi.set(__self__, "configurations", configurations)
|
10750
10590
|
pulumi.set(__self__, "name", name)
|
@@ -10759,7 +10599,7 @@ class WorkflowEnrichmentsNrql(dict):
|
|
10759
10599
|
@pulumi.getter
|
10760
10600
|
def configurations(self) -> Sequence['outputs.WorkflowEnrichmentsNrqlConfiguration']:
|
10761
10601
|
"""
|
10762
|
-
|
10602
|
+
A set of key-value pairs to represent a enrichment configuration.
|
10763
10603
|
"""
|
10764
10604
|
return pulumi.get(self, "configurations")
|
10765
10605
|
|
@@ -10791,7 +10631,7 @@ class WorkflowEnrichmentsNrql(dict):
|
|
10791
10631
|
@pulumi.getter
|
10792
10632
|
def type(self) -> Optional[str]:
|
10793
10633
|
"""
|
10794
|
-
|
10634
|
+
The type of the enrichment. One of: (NRQL).
|
10795
10635
|
"""
|
10796
10636
|
return pulumi.get(self, "type")
|
10797
10637
|
|
@@ -10801,7 +10641,7 @@ class WorkflowEnrichmentsNrqlConfiguration(dict):
|
|
10801
10641
|
def __init__(__self__, *,
|
10802
10642
|
query: str):
|
10803
10643
|
"""
|
10804
|
-
:param str query:
|
10644
|
+
:param str query: enrichment's NRQL query
|
10805
10645
|
"""
|
10806
10646
|
pulumi.set(__self__, "query", query)
|
10807
10647
|
|
@@ -10809,7 +10649,7 @@ class WorkflowEnrichmentsNrqlConfiguration(dict):
|
|
10809
10649
|
@pulumi.getter
|
10810
10650
|
def query(self) -> str:
|
10811
10651
|
"""
|
10812
|
-
|
10652
|
+
enrichment's NRQL query
|
10813
10653
|
"""
|
10814
10654
|
return pulumi.get(self, "query")
|
10815
10655
|
|