pulumi-newrelic 5.49.0a1753337775__py3-none-any.whl → 5.49.0a1753510512__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (89) hide show
  1. pulumi_newrelic/__init__.py +1 -1
  2. pulumi_newrelic/_inputs.py +3759 -3760
  3. pulumi_newrelic/account_management.py +35 -36
  4. pulumi_newrelic/alert_channel.py +55 -56
  5. pulumi_newrelic/alert_condition.py +217 -218
  6. pulumi_newrelic/alert_muting_rule.py +92 -93
  7. pulumi_newrelic/alert_policy.py +69 -70
  8. pulumi_newrelic/alert_policy_channel.py +52 -53
  9. pulumi_newrelic/api_access_key.py +112 -113
  10. pulumi_newrelic/browser_application.py +113 -114
  11. pulumi_newrelic/cloud/__init__.py +1 -1
  12. pulumi_newrelic/cloud/_inputs.py +2129 -2130
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +95 -96
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +69 -70
  15. pulumi_newrelic/cloud/aws_integrations.py +194 -195
  16. pulumi_newrelic/cloud/aws_link_account.py +69 -70
  17. pulumi_newrelic/cloud/azure_integrations.py +131 -132
  18. pulumi_newrelic/cloud/azure_link_account.py +103 -104
  19. pulumi_newrelic/cloud/gcp_integrations.py +113 -114
  20. pulumi_newrelic/cloud/gcp_link_account.py +52 -53
  21. pulumi_newrelic/cloud/outputs.py +1417 -1418
  22. pulumi_newrelic/config/__init__.py +1 -1
  23. pulumi_newrelic/config/__init__.pyi +1 -2
  24. pulumi_newrelic/config/vars.py +14 -15
  25. pulumi_newrelic/data_partition_rule.py +112 -113
  26. pulumi_newrelic/entity_tags.py +21 -22
  27. pulumi_newrelic/events_to_metrics_rule.py +95 -96
  28. pulumi_newrelic/get_account.py +21 -22
  29. pulumi_newrelic/get_alert_channel.py +20 -21
  30. pulumi_newrelic/get_alert_policy.py +25 -26
  31. pulumi_newrelic/get_application.py +13 -14
  32. pulumi_newrelic/get_authentication_domain.py +9 -10
  33. pulumi_newrelic/get_cloud_account.py +21 -22
  34. pulumi_newrelic/get_entity.py +52 -53
  35. pulumi_newrelic/get_group.py +17 -18
  36. pulumi_newrelic/get_key_transaction.py +25 -26
  37. pulumi_newrelic/get_notification_destination.py +29 -30
  38. pulumi_newrelic/get_obfuscation_expression.py +15 -16
  39. pulumi_newrelic/get_service_level_alert_helper.py +53 -54
  40. pulumi_newrelic/get_test_grok_pattern.py +22 -23
  41. pulumi_newrelic/get_user.py +21 -22
  42. pulumi_newrelic/group.py +52 -53
  43. pulumi_newrelic/infra_alert_condition.py +255 -256
  44. pulumi_newrelic/insights/__init__.py +1 -1
  45. pulumi_newrelic/insights/_inputs.py +32 -33
  46. pulumi_newrelic/insights/event.py +4 -5
  47. pulumi_newrelic/insights/outputs.py +22 -23
  48. pulumi_newrelic/key_transaction.py +104 -105
  49. pulumi_newrelic/log_parsing_rule.py +146 -147
  50. pulumi_newrelic/monitor_downtime.py +143 -144
  51. pulumi_newrelic/notification_channel.py +115 -116
  52. pulumi_newrelic/notification_destination.py +111 -112
  53. pulumi_newrelic/nrql_alert_condition.py +430 -431
  54. pulumi_newrelic/nrql_drop_rule.py +78 -79
  55. pulumi_newrelic/obfuscation_expression.py +69 -70
  56. pulumi_newrelic/obfuscation_rule.py +89 -90
  57. pulumi_newrelic/one_dashboard.py +93 -94
  58. pulumi_newrelic/one_dashboard_json.py +62 -63
  59. pulumi_newrelic/one_dashboard_raw.py +90 -91
  60. pulumi_newrelic/outputs.py +2646 -2647
  61. pulumi_newrelic/plugins/__init__.py +1 -1
  62. pulumi_newrelic/plugins/_inputs.py +158 -159
  63. pulumi_newrelic/plugins/application_settings.py +167 -168
  64. pulumi_newrelic/plugins/outputs.py +108 -109
  65. pulumi_newrelic/plugins/workload.py +131 -132
  66. pulumi_newrelic/provider.py +106 -107
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +76 -77
  69. pulumi_newrelic/synthetics/__init__.py +1 -1
  70. pulumi_newrelic/synthetics/_inputs.py +127 -128
  71. pulumi_newrelic/synthetics/alert_condition.py +95 -96
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +197 -198
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +205 -206
  74. pulumi_newrelic/synthetics/get_private_location.py +21 -22
  75. pulumi_newrelic/synthetics/get_secure_credential.py +19 -20
  76. pulumi_newrelic/synthetics/monitor.py +378 -379
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +118 -119
  78. pulumi_newrelic/synthetics/outputs.py +85 -86
  79. pulumi_newrelic/synthetics/private_location.py +105 -106
  80. pulumi_newrelic/synthetics/script_monitor.py +302 -303
  81. pulumi_newrelic/synthetics/secure_credential.py +86 -87
  82. pulumi_newrelic/synthetics/step_monitor.py +220 -221
  83. pulumi_newrelic/user.py +69 -70
  84. pulumi_newrelic/workflow.py +139 -140
  85. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.49.0a1753510512.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.49.0a1753337775.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753510512.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -20,18 +19,18 @@ __all__ = ['BrowserApplicationArgs', 'BrowserApplication']
20
19
  @pulumi.input_type
21
20
  class BrowserApplicationArgs:
22
21
  def __init__(__self__, *,
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):
22
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
23
+ cookies_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
24
+ distributed_tracing_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ loader_type: Optional[pulumi.Input[_builtins.str]] = None,
26
+ name: Optional[pulumi.Input[_builtins.str]] = None):
28
27
  """
29
28
  The set of arguments for constructing a BrowserApplication resource.
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.
29
+ :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.
30
+ :param pulumi.Input[_builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
31
+ :param pulumi.Input[_builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
32
+ :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.
33
+ :param pulumi.Input[_builtins.str] name: The name of the browser application.
35
34
  """
36
35
  if account_id is not None:
37
36
  pulumi.set(__self__, "account_id", account_id)
@@ -44,88 +43,88 @@ class BrowserApplicationArgs:
44
43
  if name is not None:
45
44
  pulumi.set(__self__, "name", name)
46
45
 
47
- @property
46
+ @_builtins.property
48
47
  @pulumi.getter(name="accountId")
49
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
48
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
50
49
  """
51
50
  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.
52
51
  """
53
52
  return pulumi.get(self, "account_id")
54
53
 
55
54
  @account_id.setter
56
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
55
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
57
56
  pulumi.set(self, "account_id", value)
58
57
 
59
- @property
58
+ @_builtins.property
60
59
  @pulumi.getter(name="cookiesEnabled")
61
- def cookies_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
60
+ def cookies_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
62
61
  """
63
62
  Configures cookies. Defaults to `true`, if not specified.
64
63
  """
65
64
  return pulumi.get(self, "cookies_enabled")
66
65
 
67
66
  @cookies_enabled.setter
68
- def cookies_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
67
+ def cookies_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
69
68
  pulumi.set(self, "cookies_enabled", value)
70
69
 
71
- @property
70
+ @_builtins.property
72
71
  @pulumi.getter(name="distributedTracingEnabled")
73
- def distributed_tracing_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
72
+ def distributed_tracing_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
74
73
  """
75
74
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
76
75
  """
77
76
  return pulumi.get(self, "distributed_tracing_enabled")
78
77
 
79
78
  @distributed_tracing_enabled.setter
80
- def distributed_tracing_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
79
+ def distributed_tracing_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
81
80
  pulumi.set(self, "distributed_tracing_enabled", value)
82
81
 
83
- @property
82
+ @_builtins.property
84
83
  @pulumi.getter(name="loaderType")
85
- def loader_type(self) -> Optional[pulumi.Input[builtins.str]]:
84
+ def loader_type(self) -> Optional[pulumi.Input[_builtins.str]]:
86
85
  """
87
86
  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.
88
87
  """
89
88
  return pulumi.get(self, "loader_type")
90
89
 
91
90
  @loader_type.setter
92
- def loader_type(self, value: Optional[pulumi.Input[builtins.str]]):
91
+ def loader_type(self, value: Optional[pulumi.Input[_builtins.str]]):
93
92
  pulumi.set(self, "loader_type", value)
94
93
 
95
- @property
94
+ @_builtins.property
96
95
  @pulumi.getter
97
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
96
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
98
97
  """
99
98
  The name of the browser application.
100
99
  """
101
100
  return pulumi.get(self, "name")
102
101
 
103
102
  @name.setter
104
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
103
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
105
104
  pulumi.set(self, "name", value)
106
105
 
107
106
 
108
107
  @pulumi.input_type
109
108
  class _BrowserApplicationState:
110
109
  def __init__(__self__, *,
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):
110
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
111
+ application_id: Optional[pulumi.Input[_builtins.str]] = None,
112
+ cookies_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
113
+ distributed_tracing_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
114
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
115
+ js_config: Optional[pulumi.Input[_builtins.str]] = None,
116
+ loader_type: Optional[pulumi.Input[_builtins.str]] = None,
117
+ name: Optional[pulumi.Input[_builtins.str]] = None):
119
118
  """
120
119
  Input properties used for looking up and filtering BrowserApplication resources.
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.
120
+ :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.
121
+ :param pulumi.Input[_builtins.str] application_id: The application ID of the browser application (not to be confused with GUID).
122
+ :param pulumi.Input[_builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
123
+ :param pulumi.Input[_builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
124
+ :param pulumi.Input[_builtins.str] guid: The GUID of the browser application.
125
+ :param pulumi.Input[_builtins.str] js_config: The JavaScript configuration of the browser application, encoded into a string.
126
+ :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.
127
+ :param pulumi.Input[_builtins.str] name: The name of the browser application.
129
128
  """
130
129
  if account_id is not None:
131
130
  pulumi.set(__self__, "account_id", account_id)
@@ -144,100 +143,100 @@ class _BrowserApplicationState:
144
143
  if name is not None:
145
144
  pulumi.set(__self__, "name", name)
146
145
 
147
- @property
146
+ @_builtins.property
148
147
  @pulumi.getter(name="accountId")
149
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
148
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
150
149
  """
151
150
  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.
152
151
  """
153
152
  return pulumi.get(self, "account_id")
154
153
 
155
154
  @account_id.setter
156
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
155
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
157
156
  pulumi.set(self, "account_id", value)
158
157
 
159
- @property
158
+ @_builtins.property
160
159
  @pulumi.getter(name="applicationId")
161
- def application_id(self) -> Optional[pulumi.Input[builtins.str]]:
160
+ def application_id(self) -> Optional[pulumi.Input[_builtins.str]]:
162
161
  """
163
162
  The application ID of the browser application (not to be confused with GUID).
164
163
  """
165
164
  return pulumi.get(self, "application_id")
166
165
 
167
166
  @application_id.setter
168
- def application_id(self, value: Optional[pulumi.Input[builtins.str]]):
167
+ def application_id(self, value: Optional[pulumi.Input[_builtins.str]]):
169
168
  pulumi.set(self, "application_id", value)
170
169
 
171
- @property
170
+ @_builtins.property
172
171
  @pulumi.getter(name="cookiesEnabled")
173
- def cookies_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
172
+ def cookies_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
174
173
  """
175
174
  Configures cookies. Defaults to `true`, if not specified.
176
175
  """
177
176
  return pulumi.get(self, "cookies_enabled")
178
177
 
179
178
  @cookies_enabled.setter
180
- def cookies_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
179
+ def cookies_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
181
180
  pulumi.set(self, "cookies_enabled", value)
182
181
 
183
- @property
182
+ @_builtins.property
184
183
  @pulumi.getter(name="distributedTracingEnabled")
185
- def distributed_tracing_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
184
+ def distributed_tracing_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
186
185
  """
187
186
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
188
187
  """
189
188
  return pulumi.get(self, "distributed_tracing_enabled")
190
189
 
191
190
  @distributed_tracing_enabled.setter
192
- def distributed_tracing_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
191
+ def distributed_tracing_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
193
192
  pulumi.set(self, "distributed_tracing_enabled", value)
194
193
 
195
- @property
194
+ @_builtins.property
196
195
  @pulumi.getter
197
- def guid(self) -> Optional[pulumi.Input[builtins.str]]:
196
+ def guid(self) -> Optional[pulumi.Input[_builtins.str]]:
198
197
  """
199
198
  The GUID of the browser application.
200
199
  """
201
200
  return pulumi.get(self, "guid")
202
201
 
203
202
  @guid.setter
204
- def guid(self, value: Optional[pulumi.Input[builtins.str]]):
203
+ def guid(self, value: Optional[pulumi.Input[_builtins.str]]):
205
204
  pulumi.set(self, "guid", value)
206
205
 
207
- @property
206
+ @_builtins.property
208
207
  @pulumi.getter(name="jsConfig")
209
- def js_config(self) -> Optional[pulumi.Input[builtins.str]]:
208
+ def js_config(self) -> Optional[pulumi.Input[_builtins.str]]:
210
209
  """
211
210
  The JavaScript configuration of the browser application, encoded into a string.
212
211
  """
213
212
  return pulumi.get(self, "js_config")
214
213
 
215
214
  @js_config.setter
216
- def js_config(self, value: Optional[pulumi.Input[builtins.str]]):
215
+ def js_config(self, value: Optional[pulumi.Input[_builtins.str]]):
217
216
  pulumi.set(self, "js_config", value)
218
217
 
219
- @property
218
+ @_builtins.property
220
219
  @pulumi.getter(name="loaderType")
221
- def loader_type(self) -> Optional[pulumi.Input[builtins.str]]:
220
+ def loader_type(self) -> Optional[pulumi.Input[_builtins.str]]:
222
221
  """
223
222
  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.
224
223
  """
225
224
  return pulumi.get(self, "loader_type")
226
225
 
227
226
  @loader_type.setter
228
- def loader_type(self, value: Optional[pulumi.Input[builtins.str]]):
227
+ def loader_type(self, value: Optional[pulumi.Input[_builtins.str]]):
229
228
  pulumi.set(self, "loader_type", value)
230
229
 
231
- @property
230
+ @_builtins.property
232
231
  @pulumi.getter
233
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
232
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
234
233
  """
235
234
  The name of the browser application.
236
235
  """
237
236
  return pulumi.get(self, "name")
238
237
 
239
238
  @name.setter
240
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
239
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
241
240
  pulumi.set(self, "name", value)
242
241
 
243
242
 
@@ -247,11 +246,11 @@ class BrowserApplication(pulumi.CustomResource):
247
246
  def __init__(__self__,
248
247
  resource_name: str,
249
248
  opts: Optional[pulumi.ResourceOptions] = None,
250
- account_id: Optional[pulumi.Input[builtins.str]] = None,
251
- cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
252
- distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
253
- loader_type: Optional[pulumi.Input[builtins.str]] = None,
254
- name: Optional[pulumi.Input[builtins.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,
255
254
  __props__=None):
256
255
  """
257
256
  ## Import
@@ -266,11 +265,11 @@ class BrowserApplication(pulumi.CustomResource):
266
265
 
267
266
  :param str resource_name: The name of the resource.
268
267
  :param pulumi.ResourceOptions opts: Options for the resource.
269
- :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.
270
- :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
271
- :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
272
- :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.
273
- :param pulumi.Input[builtins.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.
274
273
  """
275
274
  ...
276
275
  @overload
@@ -304,11 +303,11 @@ class BrowserApplication(pulumi.CustomResource):
304
303
  def _internal_init(__self__,
305
304
  resource_name: str,
306
305
  opts: Optional[pulumi.ResourceOptions] = None,
307
- account_id: Optional[pulumi.Input[builtins.str]] = None,
308
- cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
309
- distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
310
- loader_type: Optional[pulumi.Input[builtins.str]] = None,
311
- name: Optional[pulumi.Input[builtins.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,
312
311
  __props__=None):
313
312
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
314
313
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -336,14 +335,14 @@ class BrowserApplication(pulumi.CustomResource):
336
335
  def get(resource_name: str,
337
336
  id: pulumi.Input[str],
338
337
  opts: Optional[pulumi.ResourceOptions] = None,
339
- account_id: Optional[pulumi.Input[builtins.str]] = None,
340
- application_id: Optional[pulumi.Input[builtins.str]] = None,
341
- cookies_enabled: Optional[pulumi.Input[builtins.bool]] = None,
342
- distributed_tracing_enabled: Optional[pulumi.Input[builtins.bool]] = None,
343
- guid: Optional[pulumi.Input[builtins.str]] = None,
344
- js_config: Optional[pulumi.Input[builtins.str]] = None,
345
- loader_type: Optional[pulumi.Input[builtins.str]] = None,
346
- name: Optional[pulumi.Input[builtins.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':
347
346
  """
348
347
  Get an existing BrowserApplication resource's state with the given name, id, and optional extra
349
348
  properties used to qualify the lookup.
@@ -351,14 +350,14 @@ class BrowserApplication(pulumi.CustomResource):
351
350
  :param str resource_name: The unique name of the resulting resource.
352
351
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
353
352
  :param pulumi.ResourceOptions opts: Options for the resource.
354
- :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.
355
- :param pulumi.Input[builtins.str] application_id: The application ID of the browser application (not to be confused with GUID).
356
- :param pulumi.Input[builtins.bool] cookies_enabled: Configures cookies. Defaults to `true`, if not specified.
357
- :param pulumi.Input[builtins.bool] distributed_tracing_enabled: Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
358
- :param pulumi.Input[builtins.str] guid: The GUID of the browser application.
359
- :param pulumi.Input[builtins.str] js_config: The JavaScript configuration of the browser application, encoded into a string.
360
- :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.
361
- :param pulumi.Input[builtins.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.
362
361
  """
363
362
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
364
363
 
@@ -374,65 +373,65 @@ class BrowserApplication(pulumi.CustomResource):
374
373
  __props__.__dict__["name"] = name
375
374
  return BrowserApplication(resource_name, opts=opts, __props__=__props__)
376
375
 
377
- @property
376
+ @_builtins.property
378
377
  @pulumi.getter(name="accountId")
379
- def account_id(self) -> pulumi.Output[builtins.str]:
378
+ def account_id(self) -> pulumi.Output[_builtins.str]:
380
379
  """
381
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.
382
381
  """
383
382
  return pulumi.get(self, "account_id")
384
383
 
385
- @property
384
+ @_builtins.property
386
385
  @pulumi.getter(name="applicationId")
387
- def application_id(self) -> pulumi.Output[builtins.str]:
386
+ def application_id(self) -> pulumi.Output[_builtins.str]:
388
387
  """
389
388
  The application ID of the browser application (not to be confused with GUID).
390
389
  """
391
390
  return pulumi.get(self, "application_id")
392
391
 
393
- @property
392
+ @_builtins.property
394
393
  @pulumi.getter(name="cookiesEnabled")
395
- def cookies_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
394
+ def cookies_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
396
395
  """
397
396
  Configures cookies. Defaults to `true`, if not specified.
398
397
  """
399
398
  return pulumi.get(self, "cookies_enabled")
400
399
 
401
- @property
400
+ @_builtins.property
402
401
  @pulumi.getter(name="distributedTracingEnabled")
403
- def distributed_tracing_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
402
+ def distributed_tracing_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
404
403
  """
405
404
  Configures distributed tracing in browser apps. Defaults to `true`, if not specified.
406
405
  """
407
406
  return pulumi.get(self, "distributed_tracing_enabled")
408
407
 
409
- @property
408
+ @_builtins.property
410
409
  @pulumi.getter
411
- def guid(self) -> pulumi.Output[builtins.str]:
410
+ def guid(self) -> pulumi.Output[_builtins.str]:
412
411
  """
413
412
  The GUID of the browser application.
414
413
  """
415
414
  return pulumi.get(self, "guid")
416
415
 
417
- @property
416
+ @_builtins.property
418
417
  @pulumi.getter(name="jsConfig")
419
- def js_config(self) -> pulumi.Output[builtins.str]:
418
+ def js_config(self) -> pulumi.Output[_builtins.str]:
420
419
  """
421
420
  The JavaScript configuration of the browser application, encoded into a string.
422
421
  """
423
422
  return pulumi.get(self, "js_config")
424
423
 
425
- @property
424
+ @_builtins.property
426
425
  @pulumi.getter(name="loaderType")
427
- def loader_type(self) -> pulumi.Output[Optional[builtins.str]]:
426
+ def loader_type(self) -> pulumi.Output[Optional[_builtins.str]]:
428
427
  """
429
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.
430
429
  """
431
430
  return pulumi.get(self, "loader_type")
432
431
 
433
- @property
432
+ @_builtins.property
434
433
  @pulumi.getter
435
- def name(self) -> pulumi.Output[builtins.str]:
434
+ def name(self) -> pulumi.Output[_builtins.str]:
436
435
  """
437
436
  The name of the browser application.
438
437
  """
@@ -2,7 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
5
+ import builtins as _builtins
6
6
  from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members: