pulumi-newrelic 5.24.0a1715356536__py3-none-any.whl → 5.24.1__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 +63 -63
- pulumi_newrelic/alert_channel.py +14 -14
- pulumi_newrelic/alert_condition.py +28 -28
- pulumi_newrelic/alert_muting_rule.py +14 -14
- pulumi_newrelic/alert_policy.py +24 -24
- pulumi_newrelic/alert_policy_channel.py +42 -42
- pulumi_newrelic/api_access_key.py +28 -28
- pulumi_newrelic/browser_application.py +14 -14
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +28 -28
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +14 -14
- pulumi_newrelic/cloud/aws_integrations.py +28 -28
- pulumi_newrelic/cloud/aws_link_account.py +14 -14
- pulumi_newrelic/cloud/azure_integrations.py +28 -28
- pulumi_newrelic/cloud/azure_link_account.py +14 -14
- pulumi_newrelic/cloud/gcp_integrations.py +28 -28
- pulumi_newrelic/cloud/gcp_link_account.py +14 -14
- pulumi_newrelic/config/__init__.pyi +1 -1
- pulumi_newrelic/config/vars.py +2 -2
- pulumi_newrelic/data_partition_rule.py +14 -14
- pulumi_newrelic/events_to_metrics_rule.py +16 -16
- pulumi_newrelic/get_account.py +7 -7
- pulumi_newrelic/get_alert_channel.py +8 -8
- pulumi_newrelic/get_alert_policy.py +7 -7
- pulumi_newrelic/get_application.py +2 -2
- pulumi_newrelic/get_cloud_account.py +9 -9
- pulumi_newrelic/get_entity.py +15 -15
- pulumi_newrelic/get_notification_destination.py +7 -7
- pulumi_newrelic/get_obfuscation_expression.py +9 -9
- pulumi_newrelic/get_service_level_alert_helper.py +10 -10
- pulumi_newrelic/get_test_grok_pattern.py +7 -7
- pulumi_newrelic/infra_alert_condition.py +14 -14
- pulumi_newrelic/log_parsing_rule.py +14 -14
- pulumi_newrelic/monitor_downtime.py +14 -14
- pulumi_newrelic/notification_channel.py +36 -36
- pulumi_newrelic/notification_destination.py +14 -14
- pulumi_newrelic/nrql_alert_condition.py +32 -32
- pulumi_newrelic/nrql_drop_rule.py +20 -20
- pulumi_newrelic/obfuscation_expression.py +16 -16
- pulumi_newrelic/obfuscation_rule.py +14 -14
- pulumi_newrelic/one_dashboard.py +14 -14
- pulumi_newrelic/one_dashboard_json.py +14 -14
- pulumi_newrelic/one_dashboard_raw.py +14 -14
- pulumi_newrelic/outputs.py +47 -47
- pulumi_newrelic/plugins/workload.py +55 -55
- pulumi_newrelic/provider.py +14 -9
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +6 -6
- pulumi_newrelic/synthetics/alert_condition.py +14 -14
- pulumi_newrelic/synthetics/broken_links_monitor.py +32 -14
- pulumi_newrelic/synthetics/cert_check_monitor.py +32 -14
- pulumi_newrelic/synthetics/get_private_location.py +11 -11
- pulumi_newrelic/synthetics/get_secure_credential.py +5 -5
- pulumi_newrelic/synthetics/monitor.py +18 -14
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +14 -14
- pulumi_newrelic/synthetics/private_location.py +14 -14
- pulumi_newrelic/synthetics/script_monitor.py +18 -14
- pulumi_newrelic/synthetics/secure_credential.py +14 -14
- pulumi_newrelic/synthetics/step_monitor.py +32 -14
- pulumi_newrelic/workflow.py +14 -14
- {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.24.1.dist-info/RECORD +89 -0
- pulumi_newrelic-5.24.0a1715356536.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.24.1.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,7 @@ __all__ = ['InfraAlertConditionArgs', 'InfraAlertCondition']
|
|
16
16
|
@pulumi.input_type
|
17
17
|
class InfraAlertConditionArgs:
|
18
18
|
def __init__(__self__, *,
|
19
|
-
policy_id: pulumi.Input[
|
19
|
+
policy_id: pulumi.Input[str],
|
20
20
|
type: pulumi.Input[str],
|
21
21
|
comparison: Optional[pulumi.Input[str]] = None,
|
22
22
|
critical: Optional[pulumi.Input['InfraAlertConditionCriticalArgs']] = None,
|
@@ -33,7 +33,7 @@ class InfraAlertConditionArgs:
|
|
33
33
|
where: Optional[pulumi.Input[str]] = None):
|
34
34
|
"""
|
35
35
|
The set of arguments for constructing a InfraAlertCondition resource.
|
36
|
-
:param pulumi.Input[
|
36
|
+
:param pulumi.Input[str] policy_id: The ID of the alert policy where this condition should be used.
|
37
37
|
:param pulumi.Input[str] type: The type of Infrastructure alert condition. Valid values are infra_process_running, infra_metric, and
|
38
38
|
infra_host_not_reporting.
|
39
39
|
:param pulumi.Input[str] comparison: The operator used to evaluate the threshold value. Valid values are above, below, and equal. Supported by the
|
@@ -87,14 +87,14 @@ class InfraAlertConditionArgs:
|
|
87
87
|
|
88
88
|
@property
|
89
89
|
@pulumi.getter(name="policyId")
|
90
|
-
def policy_id(self) -> pulumi.Input[
|
90
|
+
def policy_id(self) -> pulumi.Input[str]:
|
91
91
|
"""
|
92
92
|
The ID of the alert policy where this condition should be used.
|
93
93
|
"""
|
94
94
|
return pulumi.get(self, "policy_id")
|
95
95
|
|
96
96
|
@policy_id.setter
|
97
|
-
def policy_id(self, value: pulumi.Input[
|
97
|
+
def policy_id(self, value: pulumi.Input[str]):
|
98
98
|
pulumi.set(self, "policy_id", value)
|
99
99
|
|
100
100
|
@property
|
@@ -285,7 +285,7 @@ class _InfraAlertConditionState:
|
|
285
285
|
event: Optional[pulumi.Input[str]] = None,
|
286
286
|
integration_provider: Optional[pulumi.Input[str]] = None,
|
287
287
|
name: Optional[pulumi.Input[str]] = None,
|
288
|
-
policy_id: Optional[pulumi.Input[
|
288
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
289
289
|
process_where: Optional[pulumi.Input[str]] = None,
|
290
290
|
runbook_url: Optional[pulumi.Input[str]] = None,
|
291
291
|
select: Optional[pulumi.Input[str]] = None,
|
@@ -306,7 +306,7 @@ class _InfraAlertConditionState:
|
|
306
306
|
:param pulumi.Input[str] event: The metric event; for example, SystemSample or StorageSample. Supported by the infra_metric condition type.
|
307
307
|
:param pulumi.Input[str] integration_provider: For alerts on integrations, use this instead of event. Supported by the infra_metric condition type.
|
308
308
|
:param pulumi.Input[str] name: The Infrastructure alert condition's name.
|
309
|
-
:param pulumi.Input[
|
309
|
+
:param pulumi.Input[str] policy_id: The ID of the alert policy where this condition should be used.
|
310
310
|
:param pulumi.Input[str] process_where: Any filters applied to processes; for example: commandName = 'java'. Supported by the infra_process_running condition
|
311
311
|
type.
|
312
312
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
@@ -470,14 +470,14 @@ class _InfraAlertConditionState:
|
|
470
470
|
|
471
471
|
@property
|
472
472
|
@pulumi.getter(name="policyId")
|
473
|
-
def policy_id(self) -> Optional[pulumi.Input[
|
473
|
+
def policy_id(self) -> Optional[pulumi.Input[str]]:
|
474
474
|
"""
|
475
475
|
The ID of the alert policy where this condition should be used.
|
476
476
|
"""
|
477
477
|
return pulumi.get(self, "policy_id")
|
478
478
|
|
479
479
|
@policy_id.setter
|
480
|
-
def policy_id(self, value: Optional[pulumi.Input[
|
480
|
+
def policy_id(self, value: Optional[pulumi.Input[str]]):
|
481
481
|
pulumi.set(self, "policy_id", value)
|
482
482
|
|
483
483
|
@property
|
@@ -595,7 +595,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
595
595
|
event: Optional[pulumi.Input[str]] = None,
|
596
596
|
integration_provider: Optional[pulumi.Input[str]] = None,
|
597
597
|
name: Optional[pulumi.Input[str]] = None,
|
598
|
-
policy_id: Optional[pulumi.Input[
|
598
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
599
599
|
process_where: Optional[pulumi.Input[str]] = None,
|
600
600
|
runbook_url: Optional[pulumi.Input[str]] = None,
|
601
601
|
select: Optional[pulumi.Input[str]] = None,
|
@@ -744,7 +744,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
744
744
|
:param pulumi.Input[str] event: The metric event; for example, SystemSample or StorageSample. Supported by the infra_metric condition type.
|
745
745
|
:param pulumi.Input[str] integration_provider: For alerts on integrations, use this instead of event. Supported by the infra_metric condition type.
|
746
746
|
:param pulumi.Input[str] name: The Infrastructure alert condition's name.
|
747
|
-
:param pulumi.Input[
|
747
|
+
:param pulumi.Input[str] policy_id: The ID of the alert policy where this condition should be used.
|
748
748
|
:param pulumi.Input[str] process_where: Any filters applied to processes; for example: commandName = 'java'. Supported by the infra_process_running condition
|
749
749
|
type.
|
750
750
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
@@ -917,7 +917,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
917
917
|
event: Optional[pulumi.Input[str]] = None,
|
918
918
|
integration_provider: Optional[pulumi.Input[str]] = None,
|
919
919
|
name: Optional[pulumi.Input[str]] = None,
|
920
|
-
policy_id: Optional[pulumi.Input[
|
920
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
921
921
|
process_where: Optional[pulumi.Input[str]] = None,
|
922
922
|
runbook_url: Optional[pulumi.Input[str]] = None,
|
923
923
|
select: Optional[pulumi.Input[str]] = None,
|
@@ -975,7 +975,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
975
975
|
event: Optional[pulumi.Input[str]] = None,
|
976
976
|
integration_provider: Optional[pulumi.Input[str]] = None,
|
977
977
|
name: Optional[pulumi.Input[str]] = None,
|
978
|
-
policy_id: Optional[pulumi.Input[
|
978
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
979
979
|
process_where: Optional[pulumi.Input[str]] = None,
|
980
980
|
runbook_url: Optional[pulumi.Input[str]] = None,
|
981
981
|
select: Optional[pulumi.Input[str]] = None,
|
@@ -1001,7 +1001,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
1001
1001
|
:param pulumi.Input[str] event: The metric event; for example, SystemSample or StorageSample. Supported by the infra_metric condition type.
|
1002
1002
|
:param pulumi.Input[str] integration_provider: For alerts on integrations, use this instead of event. Supported by the infra_metric condition type.
|
1003
1003
|
:param pulumi.Input[str] name: The Infrastructure alert condition's name.
|
1004
|
-
:param pulumi.Input[
|
1004
|
+
:param pulumi.Input[str] policy_id: The ID of the alert policy where this condition should be used.
|
1005
1005
|
:param pulumi.Input[str] process_where: Any filters applied to processes; for example: commandName = 'java'. Supported by the infra_process_running condition
|
1006
1006
|
type.
|
1007
1007
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
@@ -1116,7 +1116,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
1116
1116
|
|
1117
1117
|
@property
|
1118
1118
|
@pulumi.getter(name="policyId")
|
1119
|
-
def policy_id(self) -> pulumi.Output[
|
1119
|
+
def policy_id(self) -> pulumi.Output[str]:
|
1120
1120
|
"""
|
1121
1121
|
The ID of the alert policy where this condition should be used.
|
1122
1122
|
"""
|
@@ -18,7 +18,7 @@ class LogParsingRuleArgs:
|
|
18
18
|
grok: pulumi.Input[str],
|
19
19
|
lucene: pulumi.Input[str],
|
20
20
|
nrql: pulumi.Input[str],
|
21
|
-
account_id: Optional[pulumi.Input[
|
21
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
22
22
|
attribute: Optional[pulumi.Input[str]] = None,
|
23
23
|
matched: Optional[pulumi.Input[bool]] = None,
|
24
24
|
name: Optional[pulumi.Input[str]] = None):
|
@@ -28,7 +28,7 @@ class LogParsingRuleArgs:
|
|
28
28
|
:param pulumi.Input[str] grok: The Grok of what to parse.
|
29
29
|
:param pulumi.Input[str] lucene: The Lucene to match events to the parsing rule.
|
30
30
|
:param pulumi.Input[str] nrql: The NRQL to match events to the parsing rule.
|
31
|
-
:param pulumi.Input[
|
31
|
+
:param pulumi.Input[str] account_id: The account id associated with the obfuscation rule.
|
32
32
|
:param pulumi.Input[str] attribute: The parsing rule will apply to value of this attribute. If field is not provided, value will default to message.
|
33
33
|
:param pulumi.Input[bool] matched: Whether the Grok pattern matched.
|
34
34
|
:param pulumi.Input[str] name: Name of rule.
|
@@ -96,14 +96,14 @@ class LogParsingRuleArgs:
|
|
96
96
|
|
97
97
|
@property
|
98
98
|
@pulumi.getter(name="accountId")
|
99
|
-
def account_id(self) -> Optional[pulumi.Input[
|
99
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
100
100
|
"""
|
101
101
|
The account id associated with the obfuscation rule.
|
102
102
|
"""
|
103
103
|
return pulumi.get(self, "account_id")
|
104
104
|
|
105
105
|
@account_id.setter
|
106
|
-
def account_id(self, value: Optional[pulumi.Input[
|
106
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
107
107
|
pulumi.set(self, "account_id", value)
|
108
108
|
|
109
109
|
@property
|
@@ -146,7 +146,7 @@ class LogParsingRuleArgs:
|
|
146
146
|
@pulumi.input_type
|
147
147
|
class _LogParsingRuleState:
|
148
148
|
def __init__(__self__, *,
|
149
|
-
account_id: Optional[pulumi.Input[
|
149
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
150
150
|
attribute: Optional[pulumi.Input[str]] = None,
|
151
151
|
deleted: Optional[pulumi.Input[bool]] = None,
|
152
152
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -157,7 +157,7 @@ class _LogParsingRuleState:
|
|
157
157
|
nrql: Optional[pulumi.Input[str]] = None):
|
158
158
|
"""
|
159
159
|
Input properties used for looking up and filtering LogParsingRule resources.
|
160
|
-
:param pulumi.Input[
|
160
|
+
:param pulumi.Input[str] account_id: The account id associated with the obfuscation rule.
|
161
161
|
:param pulumi.Input[str] attribute: The parsing rule will apply to value of this attribute. If field is not provided, value will default to message.
|
162
162
|
:param pulumi.Input[bool] deleted: Whether or not this rule is deleted.
|
163
163
|
:param pulumi.Input[bool] enabled: Whether the rule should be applied or not to incoming data.
|
@@ -188,14 +188,14 @@ class _LogParsingRuleState:
|
|
188
188
|
|
189
189
|
@property
|
190
190
|
@pulumi.getter(name="accountId")
|
191
|
-
def account_id(self) -> Optional[pulumi.Input[
|
191
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
192
192
|
"""
|
193
193
|
The account id associated with the obfuscation rule.
|
194
194
|
"""
|
195
195
|
return pulumi.get(self, "account_id")
|
196
196
|
|
197
197
|
@account_id.setter
|
198
|
-
def account_id(self, value: Optional[pulumi.Input[
|
198
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
199
199
|
pulumi.set(self, "account_id", value)
|
200
200
|
|
201
201
|
@property
|
@@ -300,7 +300,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
300
300
|
def __init__(__self__,
|
301
301
|
resource_name: str,
|
302
302
|
opts: Optional[pulumi.ResourceOptions] = None,
|
303
|
-
account_id: Optional[pulumi.Input[
|
303
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
304
304
|
attribute: Optional[pulumi.Input[str]] = None,
|
305
305
|
enabled: Optional[pulumi.Input[bool]] = None,
|
306
306
|
grok: Optional[pulumi.Input[str]] = None,
|
@@ -360,7 +360,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
360
360
|
|
361
361
|
:param str resource_name: The name of the resource.
|
362
362
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
363
|
-
:param pulumi.Input[
|
363
|
+
:param pulumi.Input[str] account_id: The account id associated with the obfuscation rule.
|
364
364
|
:param pulumi.Input[str] attribute: The parsing rule will apply to value of this attribute. If field is not provided, value will default to message.
|
365
365
|
:param pulumi.Input[bool] enabled: Whether the rule should be applied or not to incoming data.
|
366
366
|
:param pulumi.Input[str] grok: The Grok of what to parse.
|
@@ -439,7 +439,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
439
439
|
def _internal_init(__self__,
|
440
440
|
resource_name: str,
|
441
441
|
opts: Optional[pulumi.ResourceOptions] = None,
|
442
|
-
account_id: Optional[pulumi.Input[
|
442
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
443
443
|
attribute: Optional[pulumi.Input[str]] = None,
|
444
444
|
enabled: Optional[pulumi.Input[bool]] = None,
|
445
445
|
grok: Optional[pulumi.Input[str]] = None,
|
@@ -483,7 +483,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
483
483
|
def get(resource_name: str,
|
484
484
|
id: pulumi.Input[str],
|
485
485
|
opts: Optional[pulumi.ResourceOptions] = None,
|
486
|
-
account_id: Optional[pulumi.Input[
|
486
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
487
487
|
attribute: Optional[pulumi.Input[str]] = None,
|
488
488
|
deleted: Optional[pulumi.Input[bool]] = None,
|
489
489
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -499,7 +499,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
499
499
|
:param str resource_name: The unique name of the resulting resource.
|
500
500
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
501
501
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
502
|
-
:param pulumi.Input[
|
502
|
+
:param pulumi.Input[str] account_id: The account id associated with the obfuscation rule.
|
503
503
|
:param pulumi.Input[str] attribute: The parsing rule will apply to value of this attribute. If field is not provided, value will default to message.
|
504
504
|
:param pulumi.Input[bool] deleted: Whether or not this rule is deleted.
|
505
505
|
:param pulumi.Input[bool] enabled: Whether the rule should be applied or not to incoming data.
|
@@ -526,7 +526,7 @@ class LogParsingRule(pulumi.CustomResource):
|
|
526
526
|
|
527
527
|
@property
|
528
528
|
@pulumi.getter(name="accountId")
|
529
|
-
def account_id(self) -> pulumi.Output[
|
529
|
+
def account_id(self) -> pulumi.Output[str]:
|
530
530
|
"""
|
531
531
|
The account id associated with the obfuscation rule.
|
532
532
|
"""
|
@@ -20,7 +20,7 @@ class MonitorDowntimeArgs:
|
|
20
20
|
mode: pulumi.Input[str],
|
21
21
|
start_time: pulumi.Input[str],
|
22
22
|
time_zone: pulumi.Input[str],
|
23
|
-
account_id: Optional[pulumi.Input[
|
23
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
24
24
|
end_repeat: Optional[pulumi.Input['MonitorDowntimeEndRepeatArgs']] = None,
|
25
25
|
frequency: Optional[pulumi.Input['MonitorDowntimeFrequencyArgs']] = None,
|
26
26
|
maintenance_days: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -32,7 +32,7 @@ class MonitorDowntimeArgs:
|
|
32
32
|
:param pulumi.Input[str] mode: An identifier of the type of Monitor Downtime to be created.
|
33
33
|
:param pulumi.Input[str] start_time: A datetime stamp signifying the start of the Monitor Downtime.
|
34
34
|
:param pulumi.Input[str] time_zone: The timezone that applies to the Monitor Downtime schedule.
|
35
|
-
:param pulumi.Input[
|
35
|
+
:param pulumi.Input[str] account_id: The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
36
36
|
provider{} configuration if not specified.
|
37
37
|
:param pulumi.Input['MonitorDowntimeEndRepeatArgs'] end_repeat: A specification of when the Monitor Downtime should end its repeat cycle, by number of occurrences or date.
|
38
38
|
:param pulumi.Input['MonitorDowntimeFrequencyArgs'] frequency: Configuration options for which days of the month a monitor downtime will occur
|
@@ -107,7 +107,7 @@ class MonitorDowntimeArgs:
|
|
107
107
|
|
108
108
|
@property
|
109
109
|
@pulumi.getter(name="accountId")
|
110
|
-
def account_id(self) -> Optional[pulumi.Input[
|
110
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
111
111
|
"""
|
112
112
|
The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
113
113
|
provider{} configuration if not specified.
|
@@ -115,7 +115,7 @@ class MonitorDowntimeArgs:
|
|
115
115
|
return pulumi.get(self, "account_id")
|
116
116
|
|
117
117
|
@account_id.setter
|
118
|
-
def account_id(self, value: Optional[pulumi.Input[
|
118
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
119
119
|
pulumi.set(self, "account_id", value)
|
120
120
|
|
121
121
|
@property
|
@@ -182,7 +182,7 @@ class MonitorDowntimeArgs:
|
|
182
182
|
@pulumi.input_type
|
183
183
|
class _MonitorDowntimeState:
|
184
184
|
def __init__(__self__, *,
|
185
|
-
account_id: Optional[pulumi.Input[
|
185
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
186
186
|
end_repeat: Optional[pulumi.Input['MonitorDowntimeEndRepeatArgs']] = None,
|
187
187
|
end_time: Optional[pulumi.Input[str]] = None,
|
188
188
|
frequency: Optional[pulumi.Input['MonitorDowntimeFrequencyArgs']] = None,
|
@@ -194,7 +194,7 @@ class _MonitorDowntimeState:
|
|
194
194
|
time_zone: Optional[pulumi.Input[str]] = None):
|
195
195
|
"""
|
196
196
|
Input properties used for looking up and filtering MonitorDowntime resources.
|
197
|
-
:param pulumi.Input[
|
197
|
+
:param pulumi.Input[str] account_id: The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
198
198
|
provider{} configuration if not specified.
|
199
199
|
:param pulumi.Input['MonitorDowntimeEndRepeatArgs'] end_repeat: A specification of when the Monitor Downtime should end its repeat cycle, by number of occurrences or date.
|
200
200
|
:param pulumi.Input[str] end_time: A datetime stamp signifying the end of the Monitor Downtime.
|
@@ -229,7 +229,7 @@ class _MonitorDowntimeState:
|
|
229
229
|
|
230
230
|
@property
|
231
231
|
@pulumi.getter(name="accountId")
|
232
|
-
def account_id(self) -> Optional[pulumi.Input[
|
232
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
233
233
|
"""
|
234
234
|
The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
235
235
|
provider{} configuration if not specified.
|
@@ -237,7 +237,7 @@ class _MonitorDowntimeState:
|
|
237
237
|
return pulumi.get(self, "account_id")
|
238
238
|
|
239
239
|
@account_id.setter
|
240
|
-
def account_id(self, value: Optional[pulumi.Input[
|
240
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
241
241
|
pulumi.set(self, "account_id", value)
|
242
242
|
|
243
243
|
@property
|
@@ -354,7 +354,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
354
354
|
def __init__(__self__,
|
355
355
|
resource_name: str,
|
356
356
|
opts: Optional[pulumi.ResourceOptions] = None,
|
357
|
-
account_id: Optional[pulumi.Input[
|
357
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
358
358
|
end_repeat: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeEndRepeatArgs']]] = None,
|
359
359
|
end_time: Optional[pulumi.Input[str]] = None,
|
360
360
|
frequency: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeFrequencyArgs']]] = None,
|
@@ -537,7 +537,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
537
537
|
|
538
538
|
:param str resource_name: The name of the resource.
|
539
539
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
540
|
-
:param pulumi.Input[
|
540
|
+
:param pulumi.Input[str] account_id: The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
541
541
|
provider{} configuration if not specified.
|
542
542
|
:param pulumi.Input[pulumi.InputType['MonitorDowntimeEndRepeatArgs']] end_repeat: A specification of when the Monitor Downtime should end its repeat cycle, by number of occurrences or date.
|
543
543
|
:param pulumi.Input[str] end_time: A datetime stamp signifying the end of the Monitor Downtime.
|
@@ -740,7 +740,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
740
740
|
def _internal_init(__self__,
|
741
741
|
resource_name: str,
|
742
742
|
opts: Optional[pulumi.ResourceOptions] = None,
|
743
|
-
account_id: Optional[pulumi.Input[
|
743
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
744
744
|
end_repeat: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeEndRepeatArgs']]] = None,
|
745
745
|
end_time: Optional[pulumi.Input[str]] = None,
|
746
746
|
frequency: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeFrequencyArgs']]] = None,
|
@@ -787,7 +787,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
787
787
|
def get(resource_name: str,
|
788
788
|
id: pulumi.Input[str],
|
789
789
|
opts: Optional[pulumi.ResourceOptions] = None,
|
790
|
-
account_id: Optional[pulumi.Input[
|
790
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
791
791
|
end_repeat: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeEndRepeatArgs']]] = None,
|
792
792
|
end_time: Optional[pulumi.Input[str]] = None,
|
793
793
|
frequency: Optional[pulumi.Input[pulumi.InputType['MonitorDowntimeFrequencyArgs']]] = None,
|
@@ -804,7 +804,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
804
804
|
:param str resource_name: The unique name of the resulting resource.
|
805
805
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
806
806
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
807
|
-
:param pulumi.Input[
|
807
|
+
:param pulumi.Input[str] account_id: The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
808
808
|
provider{} configuration if not specified.
|
809
809
|
:param pulumi.Input[pulumi.InputType['MonitorDowntimeEndRepeatArgs']] end_repeat: A specification of when the Monitor Downtime should end its repeat cycle, by number of occurrences or date.
|
810
810
|
:param pulumi.Input[str] end_time: A datetime stamp signifying the end of the Monitor Downtime.
|
@@ -834,7 +834,7 @@ class MonitorDowntime(pulumi.CustomResource):
|
|
834
834
|
|
835
835
|
@property
|
836
836
|
@pulumi.getter(name="accountId")
|
837
|
-
def account_id(self) -> pulumi.Output[
|
837
|
+
def account_id(self) -> pulumi.Output[str]:
|
838
838
|
"""
|
839
839
|
The ID of the New Relic account in which the Monitor Downtime shall be created. Defaults to the `account_id` in the
|
840
840
|
provider{} configuration if not specified.
|