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