pulumi-newrelic 5.48.0a1753156041__py3-none-any.whl → 5.49.0a1753398082__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.

Potentially problematic release.


This version of pulumi-newrelic might be problematic. Click here for more details.

Files changed (89) hide show
  1. pulumi_newrelic/__init__.py +1 -1
  2. pulumi_newrelic/_inputs.py +3759 -3760
  3. pulumi_newrelic/account_management.py +35 -36
  4. pulumi_newrelic/alert_channel.py +55 -56
  5. pulumi_newrelic/alert_condition.py +217 -218
  6. pulumi_newrelic/alert_muting_rule.py +92 -93
  7. pulumi_newrelic/alert_policy.py +69 -70
  8. pulumi_newrelic/alert_policy_channel.py +52 -53
  9. pulumi_newrelic/api_access_key.py +112 -113
  10. pulumi_newrelic/browser_application.py +113 -114
  11. pulumi_newrelic/cloud/__init__.py +1 -1
  12. pulumi_newrelic/cloud/_inputs.py +2129 -2130
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +95 -96
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +69 -70
  15. pulumi_newrelic/cloud/aws_integrations.py +194 -195
  16. pulumi_newrelic/cloud/aws_link_account.py +69 -70
  17. pulumi_newrelic/cloud/azure_integrations.py +131 -132
  18. pulumi_newrelic/cloud/azure_link_account.py +103 -104
  19. pulumi_newrelic/cloud/gcp_integrations.py +113 -114
  20. pulumi_newrelic/cloud/gcp_link_account.py +52 -53
  21. pulumi_newrelic/cloud/outputs.py +1417 -1418
  22. pulumi_newrelic/config/__init__.py +1 -1
  23. pulumi_newrelic/config/__init__.pyi +1 -2
  24. pulumi_newrelic/config/vars.py +14 -15
  25. pulumi_newrelic/data_partition_rule.py +112 -113
  26. pulumi_newrelic/entity_tags.py +21 -22
  27. pulumi_newrelic/events_to_metrics_rule.py +95 -96
  28. pulumi_newrelic/get_account.py +21 -22
  29. pulumi_newrelic/get_alert_channel.py +20 -21
  30. pulumi_newrelic/get_alert_policy.py +25 -26
  31. pulumi_newrelic/get_application.py +13 -14
  32. pulumi_newrelic/get_authentication_domain.py +9 -10
  33. pulumi_newrelic/get_cloud_account.py +21 -22
  34. pulumi_newrelic/get_entity.py +52 -53
  35. pulumi_newrelic/get_group.py +17 -18
  36. pulumi_newrelic/get_key_transaction.py +25 -26
  37. pulumi_newrelic/get_notification_destination.py +29 -30
  38. pulumi_newrelic/get_obfuscation_expression.py +15 -16
  39. pulumi_newrelic/get_service_level_alert_helper.py +53 -54
  40. pulumi_newrelic/get_test_grok_pattern.py +22 -23
  41. pulumi_newrelic/get_user.py +21 -22
  42. pulumi_newrelic/group.py +52 -53
  43. pulumi_newrelic/infra_alert_condition.py +255 -256
  44. pulumi_newrelic/insights/__init__.py +1 -1
  45. pulumi_newrelic/insights/_inputs.py +32 -33
  46. pulumi_newrelic/insights/event.py +4 -5
  47. pulumi_newrelic/insights/outputs.py +22 -23
  48. pulumi_newrelic/key_transaction.py +104 -105
  49. pulumi_newrelic/log_parsing_rule.py +146 -147
  50. pulumi_newrelic/monitor_downtime.py +143 -144
  51. pulumi_newrelic/notification_channel.py +115 -116
  52. pulumi_newrelic/notification_destination.py +111 -112
  53. pulumi_newrelic/nrql_alert_condition.py +430 -431
  54. pulumi_newrelic/nrql_drop_rule.py +78 -79
  55. pulumi_newrelic/obfuscation_expression.py +69 -70
  56. pulumi_newrelic/obfuscation_rule.py +89 -90
  57. pulumi_newrelic/one_dashboard.py +93 -94
  58. pulumi_newrelic/one_dashboard_json.py +62 -63
  59. pulumi_newrelic/one_dashboard_raw.py +90 -91
  60. pulumi_newrelic/outputs.py +2646 -2647
  61. pulumi_newrelic/plugins/__init__.py +1 -1
  62. pulumi_newrelic/plugins/_inputs.py +158 -159
  63. pulumi_newrelic/plugins/application_settings.py +167 -168
  64. pulumi_newrelic/plugins/outputs.py +108 -109
  65. pulumi_newrelic/plugins/workload.py +131 -132
  66. pulumi_newrelic/provider.py +106 -107
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +76 -77
  69. pulumi_newrelic/synthetics/__init__.py +1 -1
  70. pulumi_newrelic/synthetics/_inputs.py +127 -128
  71. pulumi_newrelic/synthetics/alert_condition.py +95 -96
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +197 -198
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +205 -206
  74. pulumi_newrelic/synthetics/get_private_location.py +21 -22
  75. pulumi_newrelic/synthetics/get_secure_credential.py +19 -20
  76. pulumi_newrelic/synthetics/monitor.py +378 -379
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +118 -119
  78. pulumi_newrelic/synthetics/outputs.py +85 -86
  79. pulumi_newrelic/synthetics/private_location.py +105 -106
  80. pulumi_newrelic/synthetics/script_monitor.py +302 -303
  81. pulumi_newrelic/synthetics/secure_credential.py +86 -87
  82. pulumi_newrelic/synthetics/step_monitor.py +220 -221
  83. pulumi_newrelic/user.py +69 -70
  84. pulumi_newrelic/workflow.py +139 -140
  85. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.49.0a1753398082.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.48.0a1753156041.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -23,19 +22,19 @@ __all__ = ['ServiceLevelArgs', 'ServiceLevel']
23
22
  class ServiceLevelArgs:
24
23
  def __init__(__self__, *,
25
24
  events: pulumi.Input['ServiceLevelEventsArgs'],
26
- guid: pulumi.Input[builtins.str],
25
+ guid: pulumi.Input[_builtins.str],
27
26
  objective: pulumi.Input['ServiceLevelObjectiveArgs'],
28
- description: Optional[pulumi.Input[builtins.str]] = None,
29
- name: Optional[pulumi.Input[builtins.str]] = None):
27
+ description: Optional[pulumi.Input[_builtins.str]] = None,
28
+ name: Optional[pulumi.Input[_builtins.str]] = None):
30
29
  """
31
30
  The set of arguments for constructing a ServiceLevel resource.
32
31
  :param pulumi.Input['ServiceLevelEventsArgs'] events: The events that define the NRDB data for the SLI/SLO calculations.
33
32
  See Events below for details.
34
- :param pulumi.Input[builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
33
+ :param pulumi.Input[_builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
35
34
  :param pulumi.Input['ServiceLevelObjectiveArgs'] objective: The objective of the SLI, only one can be defined.
36
35
  See Objective below for details.
37
- :param pulumi.Input[builtins.str] description: The description of the SLI.
38
- :param pulumi.Input[builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
36
+ :param pulumi.Input[_builtins.str] description: The description of the SLI.
37
+ :param pulumi.Input[_builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
39
38
  """
40
39
  pulumi.set(__self__, "events", events)
41
40
  pulumi.set(__self__, "guid", guid)
@@ -45,7 +44,7 @@ class ServiceLevelArgs:
45
44
  if name is not None:
46
45
  pulumi.set(__self__, "name", name)
47
46
 
48
- @property
47
+ @_builtins.property
49
48
  @pulumi.getter
50
49
  def events(self) -> pulumi.Input['ServiceLevelEventsArgs']:
51
50
  """
@@ -58,19 +57,19 @@ class ServiceLevelArgs:
58
57
  def events(self, value: pulumi.Input['ServiceLevelEventsArgs']):
59
58
  pulumi.set(self, "events", value)
60
59
 
61
- @property
60
+ @_builtins.property
62
61
  @pulumi.getter
63
- def guid(self) -> pulumi.Input[builtins.str]:
62
+ def guid(self) -> pulumi.Input[_builtins.str]:
64
63
  """
65
64
  The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
66
65
  """
67
66
  return pulumi.get(self, "guid")
68
67
 
69
68
  @guid.setter
70
- def guid(self, value: pulumi.Input[builtins.str]):
69
+ def guid(self, value: pulumi.Input[_builtins.str]):
71
70
  pulumi.set(self, "guid", value)
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  @pulumi.getter
75
74
  def objective(self) -> pulumi.Input['ServiceLevelObjectiveArgs']:
76
75
  """
@@ -83,52 +82,52 @@ class ServiceLevelArgs:
83
82
  def objective(self, value: pulumi.Input['ServiceLevelObjectiveArgs']):
84
83
  pulumi.set(self, "objective", value)
85
84
 
86
- @property
85
+ @_builtins.property
87
86
  @pulumi.getter
88
- def description(self) -> Optional[pulumi.Input[builtins.str]]:
87
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
89
88
  """
90
89
  The description of the SLI.
91
90
  """
92
91
  return pulumi.get(self, "description")
93
92
 
94
93
  @description.setter
95
- def description(self, value: Optional[pulumi.Input[builtins.str]]):
94
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
96
95
  pulumi.set(self, "description", value)
97
96
 
98
- @property
97
+ @_builtins.property
99
98
  @pulumi.getter
100
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
99
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
101
100
  """
102
101
  A short name for the SLI that will help anyone understand what it is about.
103
102
  """
104
103
  return pulumi.get(self, "name")
105
104
 
106
105
  @name.setter
107
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
106
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
108
107
  pulumi.set(self, "name", value)
109
108
 
110
109
 
111
110
  @pulumi.input_type
112
111
  class _ServiceLevelState:
113
112
  def __init__(__self__, *,
114
- description: Optional[pulumi.Input[builtins.str]] = None,
113
+ description: Optional[pulumi.Input[_builtins.str]] = None,
115
114
  events: Optional[pulumi.Input['ServiceLevelEventsArgs']] = None,
116
- guid: Optional[pulumi.Input[builtins.str]] = None,
117
- name: Optional[pulumi.Input[builtins.str]] = None,
115
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
116
+ name: Optional[pulumi.Input[_builtins.str]] = None,
118
117
  objective: Optional[pulumi.Input['ServiceLevelObjectiveArgs']] = None,
119
- sli_guid: Optional[pulumi.Input[builtins.str]] = None,
120
- sli_id: Optional[pulumi.Input[builtins.str]] = None):
118
+ sli_guid: Optional[pulumi.Input[_builtins.str]] = None,
119
+ sli_id: Optional[pulumi.Input[_builtins.str]] = None):
121
120
  """
122
121
  Input properties used for looking up and filtering ServiceLevel resources.
123
- :param pulumi.Input[builtins.str] description: The description of the SLI.
122
+ :param pulumi.Input[_builtins.str] description: The description of the SLI.
124
123
  :param pulumi.Input['ServiceLevelEventsArgs'] events: The events that define the NRDB data for the SLI/SLO calculations.
125
124
  See Events below for details.
126
- :param pulumi.Input[builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
127
- :param pulumi.Input[builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
125
+ :param pulumi.Input[_builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
126
+ :param pulumi.Input[_builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
128
127
  :param pulumi.Input['ServiceLevelObjectiveArgs'] objective: The objective of the SLI, only one can be defined.
129
128
  See Objective below for details.
130
- :param pulumi.Input[builtins.str] sli_guid: The unique entity identifier of the Service Level Indicator in New Relic.
131
- :param pulumi.Input[builtins.str] sli_id: The unique entity identifier of the Service Level Indicator.
129
+ :param pulumi.Input[_builtins.str] sli_guid: The unique entity identifier of the Service Level Indicator in New Relic.
130
+ :param pulumi.Input[_builtins.str] sli_id: The unique entity identifier of the Service Level Indicator.
132
131
  """
133
132
  if description is not None:
134
133
  pulumi.set(__self__, "description", description)
@@ -145,19 +144,19 @@ class _ServiceLevelState:
145
144
  if sli_id is not None:
146
145
  pulumi.set(__self__, "sli_id", sli_id)
147
146
 
148
- @property
147
+ @_builtins.property
149
148
  @pulumi.getter
150
- def description(self) -> Optional[pulumi.Input[builtins.str]]:
149
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
151
150
  """
152
151
  The description of the SLI.
153
152
  """
154
153
  return pulumi.get(self, "description")
155
154
 
156
155
  @description.setter
157
- def description(self, value: Optional[pulumi.Input[builtins.str]]):
156
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
158
157
  pulumi.set(self, "description", value)
159
158
 
160
- @property
159
+ @_builtins.property
161
160
  @pulumi.getter
162
161
  def events(self) -> Optional[pulumi.Input['ServiceLevelEventsArgs']]:
163
162
  """
@@ -170,31 +169,31 @@ class _ServiceLevelState:
170
169
  def events(self, value: Optional[pulumi.Input['ServiceLevelEventsArgs']]):
171
170
  pulumi.set(self, "events", value)
172
171
 
173
- @property
172
+ @_builtins.property
174
173
  @pulumi.getter
175
- def guid(self) -> Optional[pulumi.Input[builtins.str]]:
174
+ def guid(self) -> Optional[pulumi.Input[_builtins.str]]:
176
175
  """
177
176
  The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
178
177
  """
179
178
  return pulumi.get(self, "guid")
180
179
 
181
180
  @guid.setter
182
- def guid(self, value: Optional[pulumi.Input[builtins.str]]):
181
+ def guid(self, value: Optional[pulumi.Input[_builtins.str]]):
183
182
  pulumi.set(self, "guid", value)
184
183
 
185
- @property
184
+ @_builtins.property
186
185
  @pulumi.getter
187
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
186
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
188
187
  """
189
188
  A short name for the SLI that will help anyone understand what it is about.
190
189
  """
191
190
  return pulumi.get(self, "name")
192
191
 
193
192
  @name.setter
194
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
193
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
195
194
  pulumi.set(self, "name", value)
196
195
 
197
- @property
196
+ @_builtins.property
198
197
  @pulumi.getter
199
198
  def objective(self) -> Optional[pulumi.Input['ServiceLevelObjectiveArgs']]:
200
199
  """
@@ -207,28 +206,28 @@ class _ServiceLevelState:
207
206
  def objective(self, value: Optional[pulumi.Input['ServiceLevelObjectiveArgs']]):
208
207
  pulumi.set(self, "objective", value)
209
208
 
210
- @property
209
+ @_builtins.property
211
210
  @pulumi.getter(name="sliGuid")
212
- def sli_guid(self) -> Optional[pulumi.Input[builtins.str]]:
211
+ def sli_guid(self) -> Optional[pulumi.Input[_builtins.str]]:
213
212
  """
214
213
  The unique entity identifier of the Service Level Indicator in New Relic.
215
214
  """
216
215
  return pulumi.get(self, "sli_guid")
217
216
 
218
217
  @sli_guid.setter
219
- def sli_guid(self, value: Optional[pulumi.Input[builtins.str]]):
218
+ def sli_guid(self, value: Optional[pulumi.Input[_builtins.str]]):
220
219
  pulumi.set(self, "sli_guid", value)
221
220
 
222
- @property
221
+ @_builtins.property
223
222
  @pulumi.getter(name="sliId")
224
- def sli_id(self) -> Optional[pulumi.Input[builtins.str]]:
223
+ def sli_id(self) -> Optional[pulumi.Input[_builtins.str]]:
225
224
  """
226
225
  The unique entity identifier of the Service Level Indicator.
227
226
  """
228
227
  return pulumi.get(self, "sli_id")
229
228
 
230
229
  @sli_id.setter
231
- def sli_id(self, value: Optional[pulumi.Input[builtins.str]]):
230
+ def sli_id(self, value: Optional[pulumi.Input[_builtins.str]]):
232
231
  pulumi.set(self, "sli_id", value)
233
232
 
234
233
 
@@ -238,10 +237,10 @@ class ServiceLevel(pulumi.CustomResource):
238
237
  def __init__(__self__,
239
238
  resource_name: str,
240
239
  opts: Optional[pulumi.ResourceOptions] = None,
241
- description: Optional[pulumi.Input[builtins.str]] = None,
240
+ description: Optional[pulumi.Input[_builtins.str]] = None,
242
241
  events: Optional[pulumi.Input[Union['ServiceLevelEventsArgs', 'ServiceLevelEventsArgsDict']]] = None,
243
- guid: Optional[pulumi.Input[builtins.str]] = None,
244
- name: Optional[pulumi.Input[builtins.str]] = None,
242
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
243
+ name: Optional[pulumi.Input[_builtins.str]] = None,
245
244
  objective: Optional[pulumi.Input[Union['ServiceLevelObjectiveArgs', 'ServiceLevelObjectiveArgsDict']]] = None,
246
245
  __props__=None):
247
246
  """
@@ -395,11 +394,11 @@ class ServiceLevel(pulumi.CustomResource):
395
394
 
396
395
  :param str resource_name: The name of the resource.
397
396
  :param pulumi.ResourceOptions opts: Options for the resource.
398
- :param pulumi.Input[builtins.str] description: The description of the SLI.
397
+ :param pulumi.Input[_builtins.str] description: The description of the SLI.
399
398
  :param pulumi.Input[Union['ServiceLevelEventsArgs', 'ServiceLevelEventsArgsDict']] events: The events that define the NRDB data for the SLI/SLO calculations.
400
399
  See Events below for details.
401
- :param pulumi.Input[builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
402
- :param pulumi.Input[builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
400
+ :param pulumi.Input[_builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
401
+ :param pulumi.Input[_builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
403
402
  :param pulumi.Input[Union['ServiceLevelObjectiveArgs', 'ServiceLevelObjectiveArgsDict']] objective: The objective of the SLI, only one can be defined.
404
403
  See Objective below for details.
405
404
  """
@@ -573,10 +572,10 @@ class ServiceLevel(pulumi.CustomResource):
573
572
  def _internal_init(__self__,
574
573
  resource_name: str,
575
574
  opts: Optional[pulumi.ResourceOptions] = None,
576
- description: Optional[pulumi.Input[builtins.str]] = None,
575
+ description: Optional[pulumi.Input[_builtins.str]] = None,
577
576
  events: Optional[pulumi.Input[Union['ServiceLevelEventsArgs', 'ServiceLevelEventsArgsDict']]] = None,
578
- guid: Optional[pulumi.Input[builtins.str]] = None,
579
- name: Optional[pulumi.Input[builtins.str]] = None,
577
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
578
+ name: Optional[pulumi.Input[_builtins.str]] = None,
580
579
  objective: Optional[pulumi.Input[Union['ServiceLevelObjectiveArgs', 'ServiceLevelObjectiveArgsDict']]] = None,
581
580
  __props__=None):
582
581
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -610,13 +609,13 @@ class ServiceLevel(pulumi.CustomResource):
610
609
  def get(resource_name: str,
611
610
  id: pulumi.Input[str],
612
611
  opts: Optional[pulumi.ResourceOptions] = None,
613
- description: Optional[pulumi.Input[builtins.str]] = None,
612
+ description: Optional[pulumi.Input[_builtins.str]] = None,
614
613
  events: Optional[pulumi.Input[Union['ServiceLevelEventsArgs', 'ServiceLevelEventsArgsDict']]] = None,
615
- guid: Optional[pulumi.Input[builtins.str]] = None,
616
- name: Optional[pulumi.Input[builtins.str]] = None,
614
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
615
+ name: Optional[pulumi.Input[_builtins.str]] = None,
617
616
  objective: Optional[pulumi.Input[Union['ServiceLevelObjectiveArgs', 'ServiceLevelObjectiveArgsDict']]] = None,
618
- sli_guid: Optional[pulumi.Input[builtins.str]] = None,
619
- sli_id: Optional[pulumi.Input[builtins.str]] = None) -> 'ServiceLevel':
617
+ sli_guid: Optional[pulumi.Input[_builtins.str]] = None,
618
+ sli_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'ServiceLevel':
620
619
  """
621
620
  Get an existing ServiceLevel resource's state with the given name, id, and optional extra
622
621
  properties used to qualify the lookup.
@@ -624,15 +623,15 @@ class ServiceLevel(pulumi.CustomResource):
624
623
  :param str resource_name: The unique name of the resulting resource.
625
624
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
626
625
  :param pulumi.ResourceOptions opts: Options for the resource.
627
- :param pulumi.Input[builtins.str] description: The description of the SLI.
626
+ :param pulumi.Input[_builtins.str] description: The description of the SLI.
628
627
  :param pulumi.Input[Union['ServiceLevelEventsArgs', 'ServiceLevelEventsArgsDict']] events: The events that define the NRDB data for the SLI/SLO calculations.
629
628
  See Events below for details.
630
- :param pulumi.Input[builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
631
- :param pulumi.Input[builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
629
+ :param pulumi.Input[_builtins.str] guid: The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
630
+ :param pulumi.Input[_builtins.str] name: A short name for the SLI that will help anyone understand what it is about.
632
631
  :param pulumi.Input[Union['ServiceLevelObjectiveArgs', 'ServiceLevelObjectiveArgsDict']] objective: The objective of the SLI, only one can be defined.
633
632
  See Objective below for details.
634
- :param pulumi.Input[builtins.str] sli_guid: The unique entity identifier of the Service Level Indicator in New Relic.
635
- :param pulumi.Input[builtins.str] sli_id: The unique entity identifier of the Service Level Indicator.
633
+ :param pulumi.Input[_builtins.str] sli_guid: The unique entity identifier of the Service Level Indicator in New Relic.
634
+ :param pulumi.Input[_builtins.str] sli_id: The unique entity identifier of the Service Level Indicator.
636
635
  """
637
636
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
638
637
 
@@ -647,15 +646,15 @@ class ServiceLevel(pulumi.CustomResource):
647
646
  __props__.__dict__["sli_id"] = sli_id
648
647
  return ServiceLevel(resource_name, opts=opts, __props__=__props__)
649
648
 
650
- @property
649
+ @_builtins.property
651
650
  @pulumi.getter
652
- def description(self) -> pulumi.Output[Optional[builtins.str]]:
651
+ def description(self) -> pulumi.Output[Optional[_builtins.str]]:
653
652
  """
654
653
  The description of the SLI.
655
654
  """
656
655
  return pulumi.get(self, "description")
657
656
 
658
- @property
657
+ @_builtins.property
659
658
  @pulumi.getter
660
659
  def events(self) -> pulumi.Output['outputs.ServiceLevelEvents']:
661
660
  """
@@ -664,23 +663,23 @@ class ServiceLevel(pulumi.CustomResource):
664
663
  """
665
664
  return pulumi.get(self, "events")
666
665
 
667
- @property
666
+ @_builtins.property
668
667
  @pulumi.getter
669
- def guid(self) -> pulumi.Output[builtins.str]:
668
+ def guid(self) -> pulumi.Output[_builtins.str]:
670
669
  """
671
670
  The GUID of the entity (e.g, APM Service, Browser application, Workload, etc.) that you want to relate this SLI to. Note that changing the GUID will force a new resource.
672
671
  """
673
672
  return pulumi.get(self, "guid")
674
673
 
675
- @property
674
+ @_builtins.property
676
675
  @pulumi.getter
677
- def name(self) -> pulumi.Output[builtins.str]:
676
+ def name(self) -> pulumi.Output[_builtins.str]:
678
677
  """
679
678
  A short name for the SLI that will help anyone understand what it is about.
680
679
  """
681
680
  return pulumi.get(self, "name")
682
681
 
683
- @property
682
+ @_builtins.property
684
683
  @pulumi.getter
685
684
  def objective(self) -> pulumi.Output['outputs.ServiceLevelObjective']:
686
685
  """
@@ -689,17 +688,17 @@ class ServiceLevel(pulumi.CustomResource):
689
688
  """
690
689
  return pulumi.get(self, "objective")
691
690
 
692
- @property
691
+ @_builtins.property
693
692
  @pulumi.getter(name="sliGuid")
694
- def sli_guid(self) -> pulumi.Output[builtins.str]:
693
+ def sli_guid(self) -> pulumi.Output[_builtins.str]:
695
694
  """
696
695
  The unique entity identifier of the Service Level Indicator in New Relic.
697
696
  """
698
697
  return pulumi.get(self, "sli_guid")
699
698
 
700
- @property
699
+ @_builtins.property
701
700
  @pulumi.getter(name="sliId")
702
- def sli_id(self) -> pulumi.Output[builtins.str]:
701
+ def sli_id(self) -> pulumi.Output[_builtins.str]:
703
702
  """
704
703
  The unique entity identifier of the Service Level Indicator.
705
704
  """
@@ -2,7 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
5
+ import builtins as _builtins
6
6
  from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members: