pulumi-newrelic 5.45.0a1743488085__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.0a1743488085.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.0a1743488085.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743488085.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743488085.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
@@ -21,32 +22,32 @@ __all__ = ['ApplicationSettingsArgs', 'ApplicationSettings']
21
22
  @pulumi.input_type
22
23
  class ApplicationSettingsArgs:
23
24
  def __init__(__self__, *,
24
- app_apdex_threshold: Optional[pulumi.Input[float]] = None,
25
- enable_real_user_monitoring: Optional[pulumi.Input[bool]] = None,
26
- enable_slow_sql: Optional[pulumi.Input[bool]] = None,
27
- enable_thread_profiler: Optional[pulumi.Input[bool]] = None,
28
- end_user_apdex_threshold: Optional[pulumi.Input[float]] = None,
25
+ app_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
26
+ enable_real_user_monitoring: Optional[pulumi.Input[builtins.bool]] = None,
27
+ enable_slow_sql: Optional[pulumi.Input[builtins.bool]] = None,
28
+ enable_thread_profiler: Optional[pulumi.Input[builtins.bool]] = None,
29
+ end_user_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
29
30
  error_collectors: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsErrorCollectorArgs']]]] = None,
30
- guid: Optional[pulumi.Input[str]] = None,
31
- name: Optional[pulumi.Input[str]] = None,
32
- tracer_type: Optional[pulumi.Input[str]] = None,
31
+ guid: Optional[pulumi.Input[builtins.str]] = None,
32
+ name: Optional[pulumi.Input[builtins.str]] = None,
33
+ tracer_type: Optional[pulumi.Input[builtins.str]] = None,
33
34
  transaction_tracers: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsTransactionTracerArgs']]]] = None,
34
- use_server_side_config: Optional[pulumi.Input[bool]] = None):
35
+ use_server_side_config: Optional[pulumi.Input[builtins.bool]] = None):
35
36
  """
36
37
  The set of arguments for constructing a ApplicationSettings resource.
37
- :param pulumi.Input[float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
38
- :param pulumi.Input[bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
39
- :param pulumi.Input[bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
40
- :param pulumi.Input[bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
41
- :param pulumi.Input[float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
38
+ :param pulumi.Input[builtins.float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
39
+ :param pulumi.Input[builtins.bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
40
+ :param pulumi.Input[builtins.bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
41
+ :param pulumi.Input[builtins.bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
42
+ :param pulumi.Input[builtins.float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
42
43
  :param pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsErrorCollectorArgs']]] error_collectors: Configuration block for error collection. Including this block enables the error collector. The following arguments are supported:
43
- :param pulumi.Input[str] guid: The GUID of the application in New Relic APM.
44
+ :param pulumi.Input[builtins.str] guid: The GUID of the application in New Relic APM.
44
45
 
45
46
  > **NOTE:** While the attribute `guid` is not mandatory at a schema level, it is recommended to use `guid` over `name`, as support for using `name` with this resource shall eventually be discontinued. Please see the note under `name` for more details.
46
- :param pulumi.Input[str] name: The name of the application in New Relic.
47
- :param pulumi.Input[str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
47
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic.
48
+ :param pulumi.Input[builtins.str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
48
49
  :param pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsTransactionTracerArgs']]] transaction_tracers: Configuration block for transaction tracer. Providing this block enables transaction tracing. The following arguments are supported:
49
- :param pulumi.Input[bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
50
+ :param pulumi.Input[builtins.bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
50
51
  """
51
52
  if app_apdex_threshold is not None:
52
53
  pulumi.set(__self__, "app_apdex_threshold", app_apdex_threshold)
@@ -73,62 +74,62 @@ class ApplicationSettingsArgs:
73
74
 
74
75
  @property
75
76
  @pulumi.getter(name="appApdexThreshold")
76
- def app_apdex_threshold(self) -> Optional[pulumi.Input[float]]:
77
+ def app_apdex_threshold(self) -> Optional[pulumi.Input[builtins.float]]:
77
78
  """
78
79
  The acceptable response time limit (Apdex threshold) for the application.
79
80
  """
80
81
  return pulumi.get(self, "app_apdex_threshold")
81
82
 
82
83
  @app_apdex_threshold.setter
83
- def app_apdex_threshold(self, value: Optional[pulumi.Input[float]]):
84
+ def app_apdex_threshold(self, value: Optional[pulumi.Input[builtins.float]]):
84
85
  pulumi.set(self, "app_apdex_threshold", value)
85
86
 
86
87
  @property
87
88
  @pulumi.getter(name="enableRealUserMonitoring")
88
- def enable_real_user_monitoring(self) -> Optional[pulumi.Input[bool]]:
89
+ def enable_real_user_monitoring(self) -> Optional[pulumi.Input[builtins.bool]]:
89
90
  """
90
91
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
91
92
  """
92
93
  return pulumi.get(self, "enable_real_user_monitoring")
93
94
 
94
95
  @enable_real_user_monitoring.setter
95
- def enable_real_user_monitoring(self, value: Optional[pulumi.Input[bool]]):
96
+ def enable_real_user_monitoring(self, value: Optional[pulumi.Input[builtins.bool]]):
96
97
  pulumi.set(self, "enable_real_user_monitoring", value)
97
98
 
98
99
  @property
99
100
  @pulumi.getter(name="enableSlowSql")
100
- def enable_slow_sql(self) -> Optional[pulumi.Input[bool]]:
101
+ def enable_slow_sql(self) -> Optional[pulumi.Input[builtins.bool]]:
101
102
  """
102
103
  Enable or disable the collection of slowest database queries in your traces.
103
104
  """
104
105
  return pulumi.get(self, "enable_slow_sql")
105
106
 
106
107
  @enable_slow_sql.setter
107
- def enable_slow_sql(self, value: Optional[pulumi.Input[bool]]):
108
+ def enable_slow_sql(self, value: Optional[pulumi.Input[builtins.bool]]):
108
109
  pulumi.set(self, "enable_slow_sql", value)
109
110
 
110
111
  @property
111
112
  @pulumi.getter(name="enableThreadProfiler")
112
- def enable_thread_profiler(self) -> Optional[pulumi.Input[bool]]:
113
+ def enable_thread_profiler(self) -> Optional[pulumi.Input[builtins.bool]]:
113
114
  """
114
115
  Enable or disable the collection of thread profiling data.
115
116
  """
116
117
  return pulumi.get(self, "enable_thread_profiler")
117
118
 
118
119
  @enable_thread_profiler.setter
119
- def enable_thread_profiler(self, value: Optional[pulumi.Input[bool]]):
120
+ def enable_thread_profiler(self, value: Optional[pulumi.Input[builtins.bool]]):
120
121
  pulumi.set(self, "enable_thread_profiler", value)
121
122
 
122
123
  @property
123
124
  @pulumi.getter(name="endUserApdexThreshold")
124
- def end_user_apdex_threshold(self) -> Optional[pulumi.Input[float]]:
125
+ def end_user_apdex_threshold(self) -> Optional[pulumi.Input[builtins.float]]:
125
126
  """
126
127
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
127
128
  """
128
129
  return pulumi.get(self, "end_user_apdex_threshold")
129
130
 
130
131
  @end_user_apdex_threshold.setter
131
- def end_user_apdex_threshold(self, value: Optional[pulumi.Input[float]]):
132
+ def end_user_apdex_threshold(self, value: Optional[pulumi.Input[builtins.float]]):
132
133
  pulumi.set(self, "end_user_apdex_threshold", value)
133
134
 
134
135
  @property
@@ -145,7 +146,7 @@ class ApplicationSettingsArgs:
145
146
 
146
147
  @property
147
148
  @pulumi.getter
148
- def guid(self) -> Optional[pulumi.Input[str]]:
149
+ def guid(self) -> Optional[pulumi.Input[builtins.str]]:
149
150
  """
150
151
  The GUID of the application in New Relic APM.
151
152
 
@@ -154,31 +155,31 @@ class ApplicationSettingsArgs:
154
155
  return pulumi.get(self, "guid")
155
156
 
156
157
  @guid.setter
157
- def guid(self, value: Optional[pulumi.Input[str]]):
158
+ def guid(self, value: Optional[pulumi.Input[builtins.str]]):
158
159
  pulumi.set(self, "guid", value)
159
160
 
160
161
  @property
161
162
  @pulumi.getter
162
- def name(self) -> Optional[pulumi.Input[str]]:
163
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
163
164
  """
164
165
  The name of the application in New Relic.
165
166
  """
166
167
  return pulumi.get(self, "name")
167
168
 
168
169
  @name.setter
169
- def name(self, value: Optional[pulumi.Input[str]]):
170
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
170
171
  pulumi.set(self, "name", value)
171
172
 
172
173
  @property
173
174
  @pulumi.getter(name="tracerType")
174
- def tracer_type(self) -> Optional[pulumi.Input[str]]:
175
+ def tracer_type(self) -> Optional[pulumi.Input[builtins.str]]:
175
176
  """
176
177
  Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
177
178
  """
178
179
  return pulumi.get(self, "tracer_type")
179
180
 
180
181
  @tracer_type.setter
181
- def tracer_type(self, value: Optional[pulumi.Input[str]]):
182
+ def tracer_type(self, value: Optional[pulumi.Input[builtins.str]]):
182
183
  pulumi.set(self, "tracer_type", value)
183
184
 
184
185
  @property
@@ -195,47 +196,47 @@ class ApplicationSettingsArgs:
195
196
 
196
197
  @property
197
198
  @pulumi.getter(name="useServerSideConfig")
198
- def use_server_side_config(self) -> Optional[pulumi.Input[bool]]:
199
+ def use_server_side_config(self) -> Optional[pulumi.Input[builtins.bool]]:
199
200
  """
200
201
  Enable or disable server side monitoring for the New Relic application.
201
202
  """
202
203
  return pulumi.get(self, "use_server_side_config")
203
204
 
204
205
  @use_server_side_config.setter
205
- def use_server_side_config(self, value: Optional[pulumi.Input[bool]]):
206
+ def use_server_side_config(self, value: Optional[pulumi.Input[builtins.bool]]):
206
207
  pulumi.set(self, "use_server_side_config", value)
207
208
 
208
209
 
209
210
  @pulumi.input_type
210
211
  class _ApplicationSettingsState:
211
212
  def __init__(__self__, *,
212
- app_apdex_threshold: Optional[pulumi.Input[float]] = None,
213
- enable_real_user_monitoring: Optional[pulumi.Input[bool]] = None,
214
- enable_slow_sql: Optional[pulumi.Input[bool]] = None,
215
- enable_thread_profiler: Optional[pulumi.Input[bool]] = None,
216
- end_user_apdex_threshold: Optional[pulumi.Input[float]] = None,
213
+ app_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
214
+ enable_real_user_monitoring: Optional[pulumi.Input[builtins.bool]] = None,
215
+ enable_slow_sql: Optional[pulumi.Input[builtins.bool]] = None,
216
+ enable_thread_profiler: Optional[pulumi.Input[builtins.bool]] = None,
217
+ end_user_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
217
218
  error_collectors: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsErrorCollectorArgs']]]] = None,
218
- guid: Optional[pulumi.Input[str]] = None,
219
- is_imported: Optional[pulumi.Input[bool]] = None,
220
- name: Optional[pulumi.Input[str]] = None,
221
- tracer_type: Optional[pulumi.Input[str]] = None,
219
+ guid: Optional[pulumi.Input[builtins.str]] = None,
220
+ is_imported: Optional[pulumi.Input[builtins.bool]] = None,
221
+ name: Optional[pulumi.Input[builtins.str]] = None,
222
+ tracer_type: Optional[pulumi.Input[builtins.str]] = None,
222
223
  transaction_tracers: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsTransactionTracerArgs']]]] = None,
223
- use_server_side_config: Optional[pulumi.Input[bool]] = None):
224
+ use_server_side_config: Optional[pulumi.Input[builtins.bool]] = None):
224
225
  """
225
226
  Input properties used for looking up and filtering ApplicationSettings resources.
226
- :param pulumi.Input[float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
227
- :param pulumi.Input[bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
228
- :param pulumi.Input[bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
229
- :param pulumi.Input[bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
230
- :param pulumi.Input[float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
227
+ :param pulumi.Input[builtins.float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
228
+ :param pulumi.Input[builtins.bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
229
+ :param pulumi.Input[builtins.bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
230
+ :param pulumi.Input[builtins.bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
231
+ :param pulumi.Input[builtins.float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
231
232
  :param pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsErrorCollectorArgs']]] error_collectors: Configuration block for error collection. Including this block enables the error collector. The following arguments are supported:
232
- :param pulumi.Input[str] guid: The GUID of the application in New Relic APM.
233
+ :param pulumi.Input[builtins.str] guid: The GUID of the application in New Relic APM.
233
234
 
234
235
  > **NOTE:** While the attribute `guid` is not mandatory at a schema level, it is recommended to use `guid` over `name`, as support for using `name` with this resource shall eventually be discontinued. Please see the note under `name` for more details.
235
- :param pulumi.Input[str] name: The name of the application in New Relic.
236
- :param pulumi.Input[str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
236
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic.
237
+ :param pulumi.Input[builtins.str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
237
238
  :param pulumi.Input[Sequence[pulumi.Input['ApplicationSettingsTransactionTracerArgs']]] transaction_tracers: Configuration block for transaction tracer. Providing this block enables transaction tracing. The following arguments are supported:
238
- :param pulumi.Input[bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
239
+ :param pulumi.Input[builtins.bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
239
240
  """
240
241
  if app_apdex_threshold is not None:
241
242
  pulumi.set(__self__, "app_apdex_threshold", app_apdex_threshold)
@@ -264,62 +265,62 @@ class _ApplicationSettingsState:
264
265
 
265
266
  @property
266
267
  @pulumi.getter(name="appApdexThreshold")
267
- def app_apdex_threshold(self) -> Optional[pulumi.Input[float]]:
268
+ def app_apdex_threshold(self) -> Optional[pulumi.Input[builtins.float]]:
268
269
  """
269
270
  The acceptable response time limit (Apdex threshold) for the application.
270
271
  """
271
272
  return pulumi.get(self, "app_apdex_threshold")
272
273
 
273
274
  @app_apdex_threshold.setter
274
- def app_apdex_threshold(self, value: Optional[pulumi.Input[float]]):
275
+ def app_apdex_threshold(self, value: Optional[pulumi.Input[builtins.float]]):
275
276
  pulumi.set(self, "app_apdex_threshold", value)
276
277
 
277
278
  @property
278
279
  @pulumi.getter(name="enableRealUserMonitoring")
279
- def enable_real_user_monitoring(self) -> Optional[pulumi.Input[bool]]:
280
+ def enable_real_user_monitoring(self) -> Optional[pulumi.Input[builtins.bool]]:
280
281
  """
281
282
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
282
283
  """
283
284
  return pulumi.get(self, "enable_real_user_monitoring")
284
285
 
285
286
  @enable_real_user_monitoring.setter
286
- def enable_real_user_monitoring(self, value: Optional[pulumi.Input[bool]]):
287
+ def enable_real_user_monitoring(self, value: Optional[pulumi.Input[builtins.bool]]):
287
288
  pulumi.set(self, "enable_real_user_monitoring", value)
288
289
 
289
290
  @property
290
291
  @pulumi.getter(name="enableSlowSql")
291
- def enable_slow_sql(self) -> Optional[pulumi.Input[bool]]:
292
+ def enable_slow_sql(self) -> Optional[pulumi.Input[builtins.bool]]:
292
293
  """
293
294
  Enable or disable the collection of slowest database queries in your traces.
294
295
  """
295
296
  return pulumi.get(self, "enable_slow_sql")
296
297
 
297
298
  @enable_slow_sql.setter
298
- def enable_slow_sql(self, value: Optional[pulumi.Input[bool]]):
299
+ def enable_slow_sql(self, value: Optional[pulumi.Input[builtins.bool]]):
299
300
  pulumi.set(self, "enable_slow_sql", value)
300
301
 
301
302
  @property
302
303
  @pulumi.getter(name="enableThreadProfiler")
303
- def enable_thread_profiler(self) -> Optional[pulumi.Input[bool]]:
304
+ def enable_thread_profiler(self) -> Optional[pulumi.Input[builtins.bool]]:
304
305
  """
305
306
  Enable or disable the collection of thread profiling data.
306
307
  """
307
308
  return pulumi.get(self, "enable_thread_profiler")
308
309
 
309
310
  @enable_thread_profiler.setter
310
- def enable_thread_profiler(self, value: Optional[pulumi.Input[bool]]):
311
+ def enable_thread_profiler(self, value: Optional[pulumi.Input[builtins.bool]]):
311
312
  pulumi.set(self, "enable_thread_profiler", value)
312
313
 
313
314
  @property
314
315
  @pulumi.getter(name="endUserApdexThreshold")
315
- def end_user_apdex_threshold(self) -> Optional[pulumi.Input[float]]:
316
+ def end_user_apdex_threshold(self) -> Optional[pulumi.Input[builtins.float]]:
316
317
  """
317
318
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
318
319
  """
319
320
  return pulumi.get(self, "end_user_apdex_threshold")
320
321
 
321
322
  @end_user_apdex_threshold.setter
322
- def end_user_apdex_threshold(self, value: Optional[pulumi.Input[float]]):
323
+ def end_user_apdex_threshold(self, value: Optional[pulumi.Input[builtins.float]]):
323
324
  pulumi.set(self, "end_user_apdex_threshold", value)
324
325
 
325
326
  @property
@@ -336,7 +337,7 @@ class _ApplicationSettingsState:
336
337
 
337
338
  @property
338
339
  @pulumi.getter
339
- def guid(self) -> Optional[pulumi.Input[str]]:
340
+ def guid(self) -> Optional[pulumi.Input[builtins.str]]:
340
341
  """
341
342
  The GUID of the application in New Relic APM.
342
343
 
@@ -345,40 +346,40 @@ class _ApplicationSettingsState:
345
346
  return pulumi.get(self, "guid")
346
347
 
347
348
  @guid.setter
348
- def guid(self, value: Optional[pulumi.Input[str]]):
349
+ def guid(self, value: Optional[pulumi.Input[builtins.str]]):
349
350
  pulumi.set(self, "guid", value)
350
351
 
351
352
  @property
352
353
  @pulumi.getter(name="isImported")
353
- def is_imported(self) -> Optional[pulumi.Input[bool]]:
354
+ def is_imported(self) -> Optional[pulumi.Input[builtins.bool]]:
354
355
  return pulumi.get(self, "is_imported")
355
356
 
356
357
  @is_imported.setter
357
- def is_imported(self, value: Optional[pulumi.Input[bool]]):
358
+ def is_imported(self, value: Optional[pulumi.Input[builtins.bool]]):
358
359
  pulumi.set(self, "is_imported", value)
359
360
 
360
361
  @property
361
362
  @pulumi.getter
362
- def name(self) -> Optional[pulumi.Input[str]]:
363
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
363
364
  """
364
365
  The name of the application in New Relic.
365
366
  """
366
367
  return pulumi.get(self, "name")
367
368
 
368
369
  @name.setter
369
- def name(self, value: Optional[pulumi.Input[str]]):
370
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
370
371
  pulumi.set(self, "name", value)
371
372
 
372
373
  @property
373
374
  @pulumi.getter(name="tracerType")
374
- def tracer_type(self) -> Optional[pulumi.Input[str]]:
375
+ def tracer_type(self) -> Optional[pulumi.Input[builtins.str]]:
375
376
  """
376
377
  Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
377
378
  """
378
379
  return pulumi.get(self, "tracer_type")
379
380
 
380
381
  @tracer_type.setter
381
- def tracer_type(self, value: Optional[pulumi.Input[str]]):
382
+ def tracer_type(self, value: Optional[pulumi.Input[builtins.str]]):
382
383
  pulumi.set(self, "tracer_type", value)
383
384
 
384
385
  @property
@@ -395,14 +396,14 @@ class _ApplicationSettingsState:
395
396
 
396
397
  @property
397
398
  @pulumi.getter(name="useServerSideConfig")
398
- def use_server_side_config(self) -> Optional[pulumi.Input[bool]]:
399
+ def use_server_side_config(self) -> Optional[pulumi.Input[builtins.bool]]:
399
400
  """
400
401
  Enable or disable server side monitoring for the New Relic application.
401
402
  """
402
403
  return pulumi.get(self, "use_server_side_config")
403
404
 
404
405
  @use_server_side_config.setter
405
- def use_server_side_config(self, value: Optional[pulumi.Input[bool]]):
406
+ def use_server_side_config(self, value: Optional[pulumi.Input[builtins.bool]]):
406
407
  pulumi.set(self, "use_server_side_config", value)
407
408
 
408
409
 
@@ -411,17 +412,17 @@ class ApplicationSettings(pulumi.CustomResource):
411
412
  def __init__(__self__,
412
413
  resource_name: str,
413
414
  opts: Optional[pulumi.ResourceOptions] = None,
414
- app_apdex_threshold: Optional[pulumi.Input[float]] = None,
415
- enable_real_user_monitoring: Optional[pulumi.Input[bool]] = None,
416
- enable_slow_sql: Optional[pulumi.Input[bool]] = None,
417
- enable_thread_profiler: Optional[pulumi.Input[bool]] = None,
418
- end_user_apdex_threshold: Optional[pulumi.Input[float]] = None,
415
+ app_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
416
+ enable_real_user_monitoring: Optional[pulumi.Input[builtins.bool]] = None,
417
+ enable_slow_sql: Optional[pulumi.Input[builtins.bool]] = None,
418
+ enable_thread_profiler: Optional[pulumi.Input[builtins.bool]] = None,
419
+ end_user_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
419
420
  error_collectors: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsErrorCollectorArgs', 'ApplicationSettingsErrorCollectorArgsDict']]]]] = None,
420
- guid: Optional[pulumi.Input[str]] = None,
421
- name: Optional[pulumi.Input[str]] = None,
422
- tracer_type: Optional[pulumi.Input[str]] = None,
421
+ guid: Optional[pulumi.Input[builtins.str]] = None,
422
+ name: Optional[pulumi.Input[builtins.str]] = None,
423
+ tracer_type: Optional[pulumi.Input[builtins.str]] = None,
423
424
  transaction_tracers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsTransactionTracerArgs', 'ApplicationSettingsTransactionTracerArgsDict']]]]] = None,
424
- use_server_side_config: Optional[pulumi.Input[bool]] = None,
425
+ use_server_side_config: Optional[pulumi.Input[builtins.bool]] = None,
425
426
  __props__=None):
426
427
  """
427
428
  ## Import
@@ -434,19 +435,19 @@ class ApplicationSettings(pulumi.CustomResource):
434
435
 
435
436
  :param str resource_name: The name of the resource.
436
437
  :param pulumi.ResourceOptions opts: Options for the resource.
437
- :param pulumi.Input[float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
438
- :param pulumi.Input[bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
439
- :param pulumi.Input[bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
440
- :param pulumi.Input[bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
441
- :param pulumi.Input[float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
438
+ :param pulumi.Input[builtins.float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
439
+ :param pulumi.Input[builtins.bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
440
+ :param pulumi.Input[builtins.bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
441
+ :param pulumi.Input[builtins.bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
442
+ :param pulumi.Input[builtins.float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
442
443
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsErrorCollectorArgs', 'ApplicationSettingsErrorCollectorArgsDict']]]] error_collectors: Configuration block for error collection. Including this block enables the error collector. The following arguments are supported:
443
- :param pulumi.Input[str] guid: The GUID of the application in New Relic APM.
444
+ :param pulumi.Input[builtins.str] guid: The GUID of the application in New Relic APM.
444
445
 
445
446
  > **NOTE:** While the attribute `guid` is not mandatory at a schema level, it is recommended to use `guid` over `name`, as support for using `name` with this resource shall eventually be discontinued. Please see the note under `name` for more details.
446
- :param pulumi.Input[str] name: The name of the application in New Relic.
447
- :param pulumi.Input[str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
447
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic.
448
+ :param pulumi.Input[builtins.str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
448
449
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsTransactionTracerArgs', 'ApplicationSettingsTransactionTracerArgsDict']]]] transaction_tracers: Configuration block for transaction tracer. Providing this block enables transaction tracing. The following arguments are supported:
449
- :param pulumi.Input[bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
450
+ :param pulumi.Input[builtins.bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
450
451
  """
451
452
  ...
452
453
  @overload
@@ -478,17 +479,17 @@ class ApplicationSettings(pulumi.CustomResource):
478
479
  def _internal_init(__self__,
479
480
  resource_name: str,
480
481
  opts: Optional[pulumi.ResourceOptions] = None,
481
- app_apdex_threshold: Optional[pulumi.Input[float]] = None,
482
- enable_real_user_monitoring: Optional[pulumi.Input[bool]] = None,
483
- enable_slow_sql: Optional[pulumi.Input[bool]] = None,
484
- enable_thread_profiler: Optional[pulumi.Input[bool]] = None,
485
- end_user_apdex_threshold: Optional[pulumi.Input[float]] = None,
482
+ app_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
483
+ enable_real_user_monitoring: Optional[pulumi.Input[builtins.bool]] = None,
484
+ enable_slow_sql: Optional[pulumi.Input[builtins.bool]] = None,
485
+ enable_thread_profiler: Optional[pulumi.Input[builtins.bool]] = None,
486
+ end_user_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
486
487
  error_collectors: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsErrorCollectorArgs', 'ApplicationSettingsErrorCollectorArgsDict']]]]] = None,
487
- guid: Optional[pulumi.Input[str]] = None,
488
- name: Optional[pulumi.Input[str]] = None,
489
- tracer_type: Optional[pulumi.Input[str]] = None,
488
+ guid: Optional[pulumi.Input[builtins.str]] = None,
489
+ name: Optional[pulumi.Input[builtins.str]] = None,
490
+ tracer_type: Optional[pulumi.Input[builtins.str]] = None,
490
491
  transaction_tracers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsTransactionTracerArgs', 'ApplicationSettingsTransactionTracerArgsDict']]]]] = None,
491
- use_server_side_config: Optional[pulumi.Input[bool]] = None,
492
+ use_server_side_config: Optional[pulumi.Input[builtins.bool]] = None,
492
493
  __props__=None):
493
494
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
494
495
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -520,18 +521,18 @@ class ApplicationSettings(pulumi.CustomResource):
520
521
  def get(resource_name: str,
521
522
  id: pulumi.Input[str],
522
523
  opts: Optional[pulumi.ResourceOptions] = None,
523
- app_apdex_threshold: Optional[pulumi.Input[float]] = None,
524
- enable_real_user_monitoring: Optional[pulumi.Input[bool]] = None,
525
- enable_slow_sql: Optional[pulumi.Input[bool]] = None,
526
- enable_thread_profiler: Optional[pulumi.Input[bool]] = None,
527
- end_user_apdex_threshold: Optional[pulumi.Input[float]] = None,
524
+ app_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
525
+ enable_real_user_monitoring: Optional[pulumi.Input[builtins.bool]] = None,
526
+ enable_slow_sql: Optional[pulumi.Input[builtins.bool]] = None,
527
+ enable_thread_profiler: Optional[pulumi.Input[builtins.bool]] = None,
528
+ end_user_apdex_threshold: Optional[pulumi.Input[builtins.float]] = None,
528
529
  error_collectors: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsErrorCollectorArgs', 'ApplicationSettingsErrorCollectorArgsDict']]]]] = None,
529
- guid: Optional[pulumi.Input[str]] = None,
530
- is_imported: Optional[pulumi.Input[bool]] = None,
531
- name: Optional[pulumi.Input[str]] = None,
532
- tracer_type: Optional[pulumi.Input[str]] = None,
530
+ guid: Optional[pulumi.Input[builtins.str]] = None,
531
+ is_imported: Optional[pulumi.Input[builtins.bool]] = None,
532
+ name: Optional[pulumi.Input[builtins.str]] = None,
533
+ tracer_type: Optional[pulumi.Input[builtins.str]] = None,
533
534
  transaction_tracers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsTransactionTracerArgs', 'ApplicationSettingsTransactionTracerArgsDict']]]]] = None,
534
- use_server_side_config: Optional[pulumi.Input[bool]] = None) -> 'ApplicationSettings':
535
+ use_server_side_config: Optional[pulumi.Input[builtins.bool]] = None) -> 'ApplicationSettings':
535
536
  """
536
537
  Get an existing ApplicationSettings resource's state with the given name, id, and optional extra
537
538
  properties used to qualify the lookup.
@@ -539,19 +540,19 @@ class ApplicationSettings(pulumi.CustomResource):
539
540
  :param str resource_name: The unique name of the resulting resource.
540
541
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
541
542
  :param pulumi.ResourceOptions opts: Options for the resource.
542
- :param pulumi.Input[float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
543
- :param pulumi.Input[bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
544
- :param pulumi.Input[bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
545
- :param pulumi.Input[bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
546
- :param pulumi.Input[float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
543
+ :param pulumi.Input[builtins.float] app_apdex_threshold: The acceptable response time limit (Apdex threshold) for the application.
544
+ :param pulumi.Input[builtins.bool] enable_real_user_monitoring: Dummy field to support backward compatibility of previous version.should be removed with next major version.
545
+ :param pulumi.Input[builtins.bool] enable_slow_sql: Enable or disable the collection of slowest database queries in your traces.
546
+ :param pulumi.Input[builtins.bool] enable_thread_profiler: Enable or disable the collection of thread profiling data.
547
+ :param pulumi.Input[builtins.float] end_user_apdex_threshold: Dummy field to support backward compatibility of previous version.should be removed with next major version.
547
548
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsErrorCollectorArgs', 'ApplicationSettingsErrorCollectorArgsDict']]]] error_collectors: Configuration block for error collection. Including this block enables the error collector. The following arguments are supported:
548
- :param pulumi.Input[str] guid: The GUID of the application in New Relic APM.
549
+ :param pulumi.Input[builtins.str] guid: The GUID of the application in New Relic APM.
549
550
 
550
551
  > **NOTE:** While the attribute `guid` is not mandatory at a schema level, it is recommended to use `guid` over `name`, as support for using `name` with this resource shall eventually be discontinued. Please see the note under `name` for more details.
551
- :param pulumi.Input[str] name: The name of the application in New Relic.
552
- :param pulumi.Input[str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
552
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic.
553
+ :param pulumi.Input[builtins.str] tracer_type: Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
553
554
  :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSettingsTransactionTracerArgs', 'ApplicationSettingsTransactionTracerArgsDict']]]] transaction_tracers: Configuration block for transaction tracer. Providing this block enables transaction tracing. The following arguments are supported:
554
- :param pulumi.Input[bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
555
+ :param pulumi.Input[builtins.bool] use_server_side_config: Enable or disable server side monitoring for the New Relic application.
555
556
  """
556
557
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
557
558
 
@@ -573,7 +574,7 @@ class ApplicationSettings(pulumi.CustomResource):
573
574
 
574
575
  @property
575
576
  @pulumi.getter(name="appApdexThreshold")
576
- def app_apdex_threshold(self) -> pulumi.Output[Optional[float]]:
577
+ def app_apdex_threshold(self) -> pulumi.Output[Optional[builtins.float]]:
577
578
  """
578
579
  The acceptable response time limit (Apdex threshold) for the application.
579
580
  """
@@ -581,7 +582,7 @@ class ApplicationSettings(pulumi.CustomResource):
581
582
 
582
583
  @property
583
584
  @pulumi.getter(name="enableRealUserMonitoring")
584
- def enable_real_user_monitoring(self) -> pulumi.Output[Optional[bool]]:
585
+ def enable_real_user_monitoring(self) -> pulumi.Output[Optional[builtins.bool]]:
585
586
  """
586
587
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
587
588
  """
@@ -589,7 +590,7 @@ class ApplicationSettings(pulumi.CustomResource):
589
590
 
590
591
  @property
591
592
  @pulumi.getter(name="enableSlowSql")
592
- def enable_slow_sql(self) -> pulumi.Output[Optional[bool]]:
593
+ def enable_slow_sql(self) -> pulumi.Output[Optional[builtins.bool]]:
593
594
  """
594
595
  Enable or disable the collection of slowest database queries in your traces.
595
596
  """
@@ -597,7 +598,7 @@ class ApplicationSettings(pulumi.CustomResource):
597
598
 
598
599
  @property
599
600
  @pulumi.getter(name="enableThreadProfiler")
600
- def enable_thread_profiler(self) -> pulumi.Output[Optional[bool]]:
601
+ def enable_thread_profiler(self) -> pulumi.Output[Optional[builtins.bool]]:
601
602
  """
602
603
  Enable or disable the collection of thread profiling data.
603
604
  """
@@ -605,7 +606,7 @@ class ApplicationSettings(pulumi.CustomResource):
605
606
 
606
607
  @property
607
608
  @pulumi.getter(name="endUserApdexThreshold")
608
- def end_user_apdex_threshold(self) -> pulumi.Output[Optional[float]]:
609
+ def end_user_apdex_threshold(self) -> pulumi.Output[Optional[builtins.float]]:
609
610
  """
610
611
  Dummy field to support backward compatibility of previous version.should be removed with next major version.
611
612
  """
@@ -621,7 +622,7 @@ class ApplicationSettings(pulumi.CustomResource):
621
622
 
622
623
  @property
623
624
  @pulumi.getter
624
- def guid(self) -> pulumi.Output[str]:
625
+ def guid(self) -> pulumi.Output[builtins.str]:
625
626
  """
626
627
  The GUID of the application in New Relic APM.
627
628
 
@@ -631,12 +632,12 @@ class ApplicationSettings(pulumi.CustomResource):
631
632
 
632
633
  @property
633
634
  @pulumi.getter(name="isImported")
634
- def is_imported(self) -> pulumi.Output[bool]:
635
+ def is_imported(self) -> pulumi.Output[builtins.bool]:
635
636
  return pulumi.get(self, "is_imported")
636
637
 
637
638
  @property
638
639
  @pulumi.getter
639
- def name(self) -> pulumi.Output[str]:
640
+ def name(self) -> pulumi.Output[builtins.str]:
640
641
  """
641
642
  The name of the application in New Relic.
642
643
  """
@@ -644,7 +645,7 @@ class ApplicationSettings(pulumi.CustomResource):
644
645
 
645
646
  @property
646
647
  @pulumi.getter(name="tracerType")
647
- def tracer_type(self) -> pulumi.Output[Optional[str]]:
648
+ def tracer_type(self) -> pulumi.Output[Optional[builtins.str]]:
648
649
  """
649
650
  Configures the type of tracer used. Valid values are `CROSS_APPLICATION_TRACER`, `DISTRIBUTED_TRACING`, `NONE`, `OPT_OUT`.
650
651
  """
@@ -660,7 +661,7 @@ class ApplicationSettings(pulumi.CustomResource):
660
661
 
661
662
  @property
662
663
  @pulumi.getter(name="useServerSideConfig")
663
- def use_server_side_config(self) -> pulumi.Output[Optional[bool]]:
664
+ def use_server_side_config(self) -> pulumi.Output[Optional[builtins.bool]]:
664
665
  """
665
666
  Enable or disable server side monitoring for the New Relic application.
666
667
  """