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
@@ -19,18 +20,18 @@ __all__ = ['BrowserApplicationArgs', 'BrowserApplication']
19
20
  @pulumi.input_type
20
21
  class BrowserApplicationArgs:
21
22
  def __init__(__self__, *,
22
- account_id: Optional[pulumi.Input[str]] = None,
23
- cookies_enabled: Optional[pulumi.Input[bool]] = None,
24
- distributed_tracing_enabled: Optional[pulumi.Input[bool]] = None,
25
- loader_type: Optional[pulumi.Input[str]] = None,
26
- name: Optional[pulumi.Input[str]] = None):
23
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
24
+ cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
25
+ distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
26
+ loader_type: Optional[pulumi.Input[builtins.str]] = None,
27
+ name: Optional[pulumi.Input[builtins.str]] = None):
27
28
  """
28
29
  The set of arguments for constructing a BrowserApplication resource.
29
- :param pulumi.Input[str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
30
- :param pulumi.Input[bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
31
- :param pulumi.Input[bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
32
- :param pulumi.Input[str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
33
- :param pulumi.Input[str] name: The name of the browser application.
30
+ :param pulumi.Input[builtins.str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
31
+ :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
32
+ :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
33
+ :param pulumi.Input[builtins.str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
34
+ :param pulumi.Input[builtins.str] name: The name of the browser application.
34
35
  """
35
36
  if account_id is not None:
36
37
  pulumi.set(__self__, "account_id", account_id)
@@ -45,86 +46,86 @@ class BrowserApplicationArgs:
45
46
 
46
47
  @property
47
48
  @pulumi.getter(name="accountId")
48
- def account_id(self) -> Optional[pulumi.Input[str]]:
49
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
49
50
  """
50
51
  The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
51
52
  """
52
53
  return pulumi.get(self, "account_id")
53
54
 
54
55
  @account_id.setter
55
- def account_id(self, value: Optional[pulumi.Input[str]]):
56
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
56
57
  pulumi.set(self, "account_id", value)
57
58
 
58
59
  @property
59
60
  @pulumi.getter(name="cookiesEnabled")
60
- def cookies_enabled(self) -> Optional[pulumi.Input[bool]]:
61
+ def cookies_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
61
62
  """
62
63
  Configures cookies. Defaults to `true`, if not specified.
63
64
  """
64
65
  return pulumi.get(self, "cookies_enabled")
65
66
 
66
67
  @cookies_enabled.setter
67
- def cookies_enabled(self, value: Optional[pulumi.Input[bool]]):
68
+ def cookies_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
68
69
  pulumi.set(self, "cookies_enabled", value)
69
70
 
70
71
  @property
71
72
  @pulumi.getter(name="distributedTracingEnabled")
72
- def distributed_tracing_enabled(self) -> Optional[pulumi.Input[bool]]:
73
+ def distributed_tracing_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
73
74
  """
74
75
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
75
76
  """
76
77
  return pulumi.get(self, "distributed_tracing_enabled")
77
78
 
78
79
  @distributed_tracing_enabled.setter
79
- def distributed_tracing_enabled(self, value: Optional[pulumi.Input[bool]]):
80
+ def distributed_tracing_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
80
81
  pulumi.set(self, "distributed_tracing_enabled", value)
81
82
 
82
83
  @property
83
84
  @pulumi.getter(name="loaderType")
84
- def loader_type(self) -> Optional[pulumi.Input[str]]:
85
+ def loader_type(self) -> Optional[pulumi.Input[builtins.str]]:
85
86
  """
86
87
  Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
87
88
  """
88
89
  return pulumi.get(self, "loader_type")
89
90
 
90
91
  @loader_type.setter
91
- def loader_type(self, value: Optional[pulumi.Input[str]]):
92
+ def loader_type(self, value: Optional[pulumi.Input[builtins.str]]):
92
93
  pulumi.set(self, "loader_type", value)
93
94
 
94
95
  @property
95
96
  @pulumi.getter
96
- def name(self) -> Optional[pulumi.Input[str]]:
97
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
97
98
  """
98
99
  The name of the browser application.
99
100
  """
100
101
  return pulumi.get(self, "name")
101
102
 
102
103
  @name.setter
103
- def name(self, value: Optional[pulumi.Input[str]]):
104
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
104
105
  pulumi.set(self, "name", value)
105
106
 
106
107
 
107
108
  @pulumi.input_type
108
109
  class _BrowserApplicationState:
109
110
  def __init__(__self__, *,
110
- account_id: Optional[pulumi.Input[str]] = None,
111
- application_id: Optional[pulumi.Input[str]] = None,
112
- cookies_enabled: Optional[pulumi.Input[bool]] = None,
113
- distributed_tracing_enabled: Optional[pulumi.Input[bool]] = None,
114
- guid: Optional[pulumi.Input[str]] = None,
115
- js_config: Optional[pulumi.Input[str]] = None,
116
- loader_type: Optional[pulumi.Input[str]] = None,
117
- name: Optional[pulumi.Input[str]] = None):
111
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
112
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
113
+ cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
114
+ distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
115
+ guid: Optional[pulumi.Input[builtins.str]] = None,
116
+ js_config: Optional[pulumi.Input[builtins.str]] = None,
117
+ loader_type: Optional[pulumi.Input[builtins.str]] = None,
118
+ name: Optional[pulumi.Input[builtins.str]] = None):
118
119
  """
119
120
  Input properties used for looking up and filtering BrowserApplication resources.
120
- :param pulumi.Input[str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
121
- :param pulumi.Input[str] application_id: The application ID of the browser application (not to be confused with GUID).
122
- :param pulumi.Input[bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
123
- :param pulumi.Input[bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
124
- :param pulumi.Input[str] guid: The GUID of the browser application.
125
- :param pulumi.Input[str] js_config: The JavaScript configuration of the browser application, encoded into a string.
126
- :param pulumi.Input[str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
127
- :param pulumi.Input[str] name: The name of the browser application.
121
+ :param pulumi.Input[builtins.str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
122
+ :param pulumi.Input[builtins.str] application_id: The application ID of the browser application (not to be confused with GUID).
123
+ :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
124
+ :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
125
+ :param pulumi.Input[builtins.str] guid: The GUID of the browser application.
126
+ :param pulumi.Input[builtins.str] js_config: The JavaScript configuration of the browser application, encoded into a string.
127
+ :param pulumi.Input[builtins.str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
128
+ :param pulumi.Input[builtins.str] name: The name of the browser application.
128
129
  """
129
130
  if account_id is not None:
130
131
  pulumi.set(__self__, "account_id", account_id)
@@ -145,98 +146,98 @@ class _BrowserApplicationState:
145
146
 
146
147
  @property
147
148
  @pulumi.getter(name="accountId")
148
- def account_id(self) -> Optional[pulumi.Input[str]]:
149
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
149
150
  """
150
151
  The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
151
152
  """
152
153
  return pulumi.get(self, "account_id")
153
154
 
154
155
  @account_id.setter
155
- def account_id(self, value: Optional[pulumi.Input[str]]):
156
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
156
157
  pulumi.set(self, "account_id", value)
157
158
 
158
159
  @property
159
160
  @pulumi.getter(name="applicationId")
160
- def application_id(self) -> Optional[pulumi.Input[str]]:
161
+ def application_id(self) -> Optional[pulumi.Input[builtins.str]]:
161
162
  """
162
163
  The application ID of the browser application (not to be confused with GUID).
163
164
  """
164
165
  return pulumi.get(self, "application_id")
165
166
 
166
167
  @application_id.setter
167
- def application_id(self, value: Optional[pulumi.Input[str]]):
168
+ def application_id(self, value: Optional[pulumi.Input[builtins.str]]):
168
169
  pulumi.set(self, "application_id", value)
169
170
 
170
171
  @property
171
172
  @pulumi.getter(name="cookiesEnabled")
172
- def cookies_enabled(self) -> Optional[pulumi.Input[bool]]:
173
+ def cookies_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
173
174
  """
174
175
  Configures cookies. Defaults to `true`, if not specified.
175
176
  """
176
177
  return pulumi.get(self, "cookies_enabled")
177
178
 
178
179
  @cookies_enabled.setter
179
- def cookies_enabled(self, value: Optional[pulumi.Input[bool]]):
180
+ def cookies_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
180
181
  pulumi.set(self, "cookies_enabled", value)
181
182
 
182
183
  @property
183
184
  @pulumi.getter(name="distributedTracingEnabled")
184
- def distributed_tracing_enabled(self) -> Optional[pulumi.Input[bool]]:
185
+ def distributed_tracing_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
185
186
  """
186
187
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
187
188
  """
188
189
  return pulumi.get(self, "distributed_tracing_enabled")
189
190
 
190
191
  @distributed_tracing_enabled.setter
191
- def distributed_tracing_enabled(self, value: Optional[pulumi.Input[bool]]):
192
+ def distributed_tracing_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
192
193
  pulumi.set(self, "distributed_tracing_enabled", value)
193
194
 
194
195
  @property
195
196
  @pulumi.getter
196
- def guid(self) -> Optional[pulumi.Input[str]]:
197
+ def guid(self) -> Optional[pulumi.Input[builtins.str]]:
197
198
  """
198
199
  The GUID of the browser application.
199
200
  """
200
201
  return pulumi.get(self, "guid")
201
202
 
202
203
  @guid.setter
203
- def guid(self, value: Optional[pulumi.Input[str]]):
204
+ def guid(self, value: Optional[pulumi.Input[builtins.str]]):
204
205
  pulumi.set(self, "guid", value)
205
206
 
206
207
  @property
207
208
  @pulumi.getter(name="jsConfig")
208
- def js_config(self) -> Optional[pulumi.Input[str]]:
209
+ def js_config(self) -> Optional[pulumi.Input[builtins.str]]:
209
210
  """
210
211
  The JavaScript configuration of the browser application, encoded into a string.
211
212
  """
212
213
  return pulumi.get(self, "js_config")
213
214
 
214
215
  @js_config.setter
215
- def js_config(self, value: Optional[pulumi.Input[str]]):
216
+ def js_config(self, value: Optional[pulumi.Input[builtins.str]]):
216
217
  pulumi.set(self, "js_config", value)
217
218
 
218
219
  @property
219
220
  @pulumi.getter(name="loaderType")
220
- def loader_type(self) -> Optional[pulumi.Input[str]]:
221
+ def loader_type(self) -> Optional[pulumi.Input[builtins.str]]:
221
222
  """
222
223
  Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
223
224
  """
224
225
  return pulumi.get(self, "loader_type")
225
226
 
226
227
  @loader_type.setter
227
- def loader_type(self, value: Optional[pulumi.Input[str]]):
228
+ def loader_type(self, value: Optional[pulumi.Input[builtins.str]]):
228
229
  pulumi.set(self, "loader_type", value)
229
230
 
230
231
  @property
231
232
  @pulumi.getter
232
- def name(self) -> Optional[pulumi.Input[str]]:
233
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
233
234
  """
234
235
  The name of the browser application.
235
236
  """
236
237
  return pulumi.get(self, "name")
237
238
 
238
239
  @name.setter
239
- def name(self, value: Optional[pulumi.Input[str]]):
240
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
240
241
  pulumi.set(self, "name", value)
241
242
 
242
243
 
@@ -245,11 +246,11 @@ class BrowserApplication(pulumi.CustomResource):
245
246
  def __init__(__self__,
246
247
  resource_name: str,
247
248
  opts: Optional[pulumi.ResourceOptions] = None,
248
- account_id: Optional[pulumi.Input[str]] = None,
249
- cookies_enabled: Optional[pulumi.Input[bool]] = None,
250
- distributed_tracing_enabled: Optional[pulumi.Input[bool]] = None,
251
- loader_type: Optional[pulumi.Input[str]] = None,
252
- name: Optional[pulumi.Input[str]] = None,
249
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
250
+ cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
251
+ distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
252
+ loader_type: Optional[pulumi.Input[builtins.str]] = None,
253
+ name: Optional[pulumi.Input[builtins.str]] = None,
253
254
  __props__=None):
254
255
  """
255
256
  ## Import
@@ -264,11 +265,11 @@ class BrowserApplication(pulumi.CustomResource):
264
265
 
265
266
  :param str resource_name: The name of the resource.
266
267
  :param pulumi.ResourceOptions opts: Options for the resource.
267
- :param pulumi.Input[str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
268
- :param pulumi.Input[bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
269
- :param pulumi.Input[bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
270
- :param pulumi.Input[str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
271
- :param pulumi.Input[str] name: The name of the browser application.
268
+ :param pulumi.Input[builtins.str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
269
+ :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
270
+ :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
271
+ :param pulumi.Input[builtins.str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
272
+ :param pulumi.Input[builtins.str] name: The name of the browser application.
272
273
  """
273
274
  ...
274
275
  @overload
@@ -302,11 +303,11 @@ class BrowserApplication(pulumi.CustomResource):
302
303
  def _internal_init(__self__,
303
304
  resource_name: str,
304
305
  opts: Optional[pulumi.ResourceOptions] = None,
305
- account_id: Optional[pulumi.Input[str]] = None,
306
- cookies_enabled: Optional[pulumi.Input[bool]] = None,
307
- distributed_tracing_enabled: Optional[pulumi.Input[bool]] = None,
308
- loader_type: Optional[pulumi.Input[str]] = None,
309
- name: Optional[pulumi.Input[str]] = None,
306
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
307
+ cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
308
+ distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
309
+ loader_type: Optional[pulumi.Input[builtins.str]] = None,
310
+ name: Optional[pulumi.Input[builtins.str]] = None,
310
311
  __props__=None):
311
312
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
312
313
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -334,14 +335,14 @@ class BrowserApplication(pulumi.CustomResource):
334
335
  def get(resource_name: str,
335
336
  id: pulumi.Input[str],
336
337
  opts: Optional[pulumi.ResourceOptions] = None,
337
- account_id: Optional[pulumi.Input[str]] = None,
338
- application_id: Optional[pulumi.Input[str]] = None,
339
- cookies_enabled: Optional[pulumi.Input[bool]] = None,
340
- distributed_tracing_enabled: Optional[pulumi.Input[bool]] = None,
341
- guid: Optional[pulumi.Input[str]] = None,
342
- js_config: Optional[pulumi.Input[str]] = None,
343
- loader_type: Optional[pulumi.Input[str]] = None,
344
- name: Optional[pulumi.Input[str]] = None) -> 'BrowserApplication':
338
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
339
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
340
+ cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
341
+ distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
342
+ guid: Optional[pulumi.Input[builtins.str]] = None,
343
+ js_config: Optional[pulumi.Input[builtins.str]] = None,
344
+ loader_type: Optional[pulumi.Input[builtins.str]] = None,
345
+ name: Optional[pulumi.Input[builtins.str]] = None) -> 'BrowserApplication':
345
346
  """
346
347
  Get an existing BrowserApplication resource's state with the given name, id, and optional extra
347
348
  properties used to qualify the lookup.
@@ -349,14 +350,14 @@ class BrowserApplication(pulumi.CustomResource):
349
350
  :param str resource_name: The unique name of the resulting resource.
350
351
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
351
352
  :param pulumi.ResourceOptions opts: Options for the resource.
352
- :param pulumi.Input[str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
353
- :param pulumi.Input[str] application_id: The application ID of the browser application (not to be confused with GUID).
354
- :param pulumi.Input[bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
355
- :param pulumi.Input[bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
356
- :param pulumi.Input[str] guid: The GUID of the browser application.
357
- :param pulumi.Input[str] js_config: The JavaScript configuration of the browser application, encoded into a string.
358
- :param pulumi.Input[str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
359
- :param pulumi.Input[str] name: The name of the browser application.
353
+ :param pulumi.Input[builtins.str] account_id: The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
354
+ :param pulumi.Input[builtins.str] application_id: The application ID of the browser application (not to be confused with GUID).
355
+ :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
356
+ :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
357
+ :param pulumi.Input[builtins.str] guid: The GUID of the browser application.
358
+ :param pulumi.Input[builtins.str] js_config: The JavaScript configuration of the browser application, encoded into a string.
359
+ :param pulumi.Input[builtins.str] loader_type: Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
360
+ :param pulumi.Input[builtins.str] name: The name of the browser application.
360
361
  """
361
362
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
362
363
 
@@ -374,7 +375,7 @@ class BrowserApplication(pulumi.CustomResource):
374
375
 
375
376
  @property
376
377
  @pulumi.getter(name="accountId")
377
- def account_id(self) -> pulumi.Output[str]:
378
+ def account_id(self) -> pulumi.Output[builtins.str]:
378
379
  """
379
380
  The account ID of the New Relic account you wish to create the browser application in. Defaults to the value of the environment variable `NEW_RELIC_ACCOUNT_ID` if not specified.
380
381
  """
@@ -382,7 +383,7 @@ class BrowserApplication(pulumi.CustomResource):
382
383
 
383
384
  @property
384
385
  @pulumi.getter(name="applicationId")
385
- def application_id(self) -> pulumi.Output[str]:
386
+ def application_id(self) -> pulumi.Output[builtins.str]:
386
387
  """
387
388
  The application ID of the browser application (not to be confused with GUID).
388
389
  """
@@ -390,7 +391,7 @@ class BrowserApplication(pulumi.CustomResource):
390
391
 
391
392
  @property
392
393
  @pulumi.getter(name="cookiesEnabled")
393
- def cookies_enabled(self) -> pulumi.Output[Optional[bool]]:
394
+ def cookies_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
394
395
  """
395
396
  Configures cookies. Defaults to `true`, if not specified.
396
397
  """
@@ -398,7 +399,7 @@ class BrowserApplication(pulumi.CustomResource):
398
399
 
399
400
  @property
400
401
  @pulumi.getter(name="distributedTracingEnabled")
401
- def distributed_tracing_enabled(self) -> pulumi.Output[Optional[bool]]:
402
+ def distributed_tracing_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
402
403
  """
403
404
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
404
405
  """
@@ -406,7 +407,7 @@ class BrowserApplication(pulumi.CustomResource):
406
407
 
407
408
  @property
408
409
  @pulumi.getter
409
- def guid(self) -> pulumi.Output[str]:
410
+ def guid(self) -> pulumi.Output[builtins.str]:
410
411
  """
411
412
  The GUID of the browser application.
412
413
  """
@@ -414,7 +415,7 @@ class BrowserApplication(pulumi.CustomResource):
414
415
 
415
416
  @property
416
417
  @pulumi.getter(name="jsConfig")
417
- def js_config(self) -> pulumi.Output[str]:
418
+ def js_config(self) -> pulumi.Output[builtins.str]:
418
419
  """
419
420
  The JavaScript configuration of the browser application, encoded into a string.
420
421
  """
@@ -422,7 +423,7 @@ class BrowserApplication(pulumi.CustomResource):
422
423
 
423
424
  @property
424
425
  @pulumi.getter(name="loaderType")
425
- def loader_type(self) -> pulumi.Output[Optional[str]]:
426
+ def loader_type(self) -> pulumi.Output[Optional[builtins.str]]:
426
427
  """
427
428
  Determines the browser loader configured. Valid values are `SPA`, `PRO`, and `LITE`. The default is `SPA`. Refer to the [browser agent loader documentation](https://docs.newrelic.com/docs/browser/browser-monitoring/installation/install-browser-monitoring-agent/#agent-types) for more information on valid loader types.
428
429
  """
@@ -430,7 +431,7 @@ class BrowserApplication(pulumi.CustomResource):
430
431
 
431
432
  @property
432
433
  @pulumi.getter
433
- def name(self) -> pulumi.Output[str]:
434
+ def name(self) -> pulumi.Output[builtins.str]:
434
435
  """
435
436
  The name of the browser application.
436
437
  """
@@ -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: