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