pulumi-newrelic 5.42.1__py3-none-any.whl → 5.58.0a1766556761__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 (92) hide show
  1. pulumi_newrelic/__init__.py +19 -1
  2. pulumi_newrelic/_inputs.py +4314 -3779
  3. pulumi_newrelic/_utilities.py +1 -1
  4. pulumi_newrelic/account_management.py +37 -36
  5. pulumi_newrelic/alert_channel.py +63 -62
  6. pulumi_newrelic/alert_condition.py +219 -218
  7. pulumi_newrelic/alert_muting_rule.py +96 -95
  8. pulumi_newrelic/alert_policy.py +71 -70
  9. pulumi_newrelic/alert_policy_channel.py +54 -53
  10. pulumi_newrelic/api_access_key.py +186 -201
  11. pulumi_newrelic/browser_application.py +115 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +2226 -2118
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +101 -96
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +71 -70
  16. pulumi_newrelic/cloud/aws_integrations.py +240 -192
  17. pulumi_newrelic/cloud/aws_link_account.py +71 -70
  18. pulumi_newrelic/cloud/azure_integrations.py +180 -132
  19. pulumi_newrelic/cloud/azure_link_account.py +105 -104
  20. pulumi_newrelic/cloud/gcp_integrations.py +115 -114
  21. pulumi_newrelic/cloud/gcp_link_account.py +56 -55
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1512 -1410
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +2 -2
  26. pulumi_newrelic/config/vars.py +15 -15
  27. pulumi_newrelic/data_partition_rule.py +114 -113
  28. pulumi_newrelic/entity_tags.py +79 -22
  29. pulumi_newrelic/events_to_metrics_rule.py +97 -96
  30. pulumi_newrelic/get_account.py +22 -22
  31. pulumi_newrelic/get_alert_channel.py +53 -21
  32. pulumi_newrelic/get_alert_policy.py +52 -26
  33. pulumi_newrelic/get_application.py +14 -14
  34. pulumi_newrelic/get_authentication_domain.py +10 -10
  35. pulumi_newrelic/get_cloud_account.py +22 -22
  36. pulumi_newrelic/get_entity.py +53 -53
  37. pulumi_newrelic/get_group.py +22 -22
  38. pulumi_newrelic/get_key_transaction.py +26 -26
  39. pulumi_newrelic/get_notification_destination.py +31 -31
  40. pulumi_newrelic/get_obfuscation_expression.py +16 -16
  41. pulumi_newrelic/get_service_level_alert_helper.py +54 -54
  42. pulumi_newrelic/get_test_grok_pattern.py +23 -23
  43. pulumi_newrelic/get_user.py +22 -22
  44. pulumi_newrelic/group.py +54 -53
  45. pulumi_newrelic/infra_alert_condition.py +257 -256
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +33 -33
  48. pulumi_newrelic/insights/event.py +6 -5
  49. pulumi_newrelic/insights/outputs.py +23 -23
  50. pulumi_newrelic/key_transaction.py +106 -105
  51. pulumi_newrelic/log_parsing_rule.py +148 -147
  52. pulumi_newrelic/monitor_downtime.py +148 -154
  53. pulumi_newrelic/notification_channel.py +218 -163
  54. pulumi_newrelic/notification_destination.py +123 -136
  55. pulumi_newrelic/nrql_alert_condition.py +513 -414
  56. pulumi_newrelic/nrql_drop_rule.py +108 -147
  57. pulumi_newrelic/obfuscation_expression.py +71 -70
  58. pulumi_newrelic/obfuscation_rule.py +91 -90
  59. pulumi_newrelic/one_dashboard.py +95 -94
  60. pulumi_newrelic/one_dashboard_json.py +64 -63
  61. pulumi_newrelic/one_dashboard_raw.py +116 -115
  62. pulumi_newrelic/outputs.py +3026 -2665
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +159 -159
  66. pulumi_newrelic/plugins/application_settings.py +186 -171
  67. pulumi_newrelic/plugins/outputs.py +109 -109
  68. pulumi_newrelic/plugins/workload.py +133 -132
  69. pulumi_newrelic/provider.py +136 -116
  70. pulumi_newrelic/pulumi-plugin.json +1 -1
  71. pulumi_newrelic/service_level.py +78 -77
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +128 -128
  74. pulumi_newrelic/synthetics/alert_condition.py +97 -96
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +218 -189
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +226 -197
  77. pulumi_newrelic/synthetics/get_private_location.py +22 -22
  78. pulumi_newrelic/synthetics/get_secure_credential.py +20 -20
  79. pulumi_newrelic/synthetics/monitor.py +399 -370
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +120 -119
  81. pulumi_newrelic/synthetics/outputs.py +86 -86
  82. pulumi_newrelic/synthetics/private_location.py +107 -106
  83. pulumi_newrelic/synthetics/script_monitor.py +385 -294
  84. pulumi_newrelic/synthetics/secure_credential.py +88 -87
  85. pulumi_newrelic/synthetics/step_monitor.py +241 -212
  86. pulumi_newrelic/user.py +71 -70
  87. pulumi_newrelic/workflow.py +141 -140
  88. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/METADATA +4 -4
  89. pulumi_newrelic-5.58.0a1766556761.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.42.1.dist-info/RECORD +0 -90
  92. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -19,16 +19,16 @@ __all__ = ['PrivateLocationArgs', 'PrivateLocation']
19
19
  @pulumi.input_type
20
20
  class PrivateLocationArgs:
21
21
  def __init__(__self__, *,
22
- description: pulumi.Input[str],
23
- account_id: Optional[pulumi.Input[str]] = None,
24
- name: Optional[pulumi.Input[str]] = None,
25
- verified_script_execution: Optional[pulumi.Input[bool]] = None):
22
+ description: pulumi.Input[_builtins.str],
23
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
24
+ name: Optional[pulumi.Input[_builtins.str]] = None,
25
+ verified_script_execution: Optional[pulumi.Input[_builtins.bool]] = None):
26
26
  """
27
27
  The set of arguments for constructing a PrivateLocation resource.
28
- :param pulumi.Input[str] description: The private location description.
29
- :param pulumi.Input[str] account_id: The account in which the private location will be created.
30
- :param pulumi.Input[str] name: The name of the private location.
31
- :param pulumi.Input[bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
28
+ :param pulumi.Input[_builtins.str] description: The private location description.
29
+ :param pulumi.Input[_builtins.str] account_id: The account in which the private location will be created.
30
+ :param pulumi.Input[_builtins.str] name: The name of the private location.
31
+ :param pulumi.Input[_builtins.bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
32
32
  """
33
33
  pulumi.set(__self__, "description", description)
34
34
  if account_id is not None:
@@ -38,76 +38,76 @@ class PrivateLocationArgs:
38
38
  if verified_script_execution is not None:
39
39
  pulumi.set(__self__, "verified_script_execution", verified_script_execution)
40
40
 
41
- @property
41
+ @_builtins.property
42
42
  @pulumi.getter
43
- def description(self) -> pulumi.Input[str]:
43
+ def description(self) -> pulumi.Input[_builtins.str]:
44
44
  """
45
45
  The private location description.
46
46
  """
47
47
  return pulumi.get(self, "description")
48
48
 
49
49
  @description.setter
50
- def description(self, value: pulumi.Input[str]):
50
+ def description(self, value: pulumi.Input[_builtins.str]):
51
51
  pulumi.set(self, "description", value)
52
52
 
53
- @property
53
+ @_builtins.property
54
54
  @pulumi.getter(name="accountId")
55
- def account_id(self) -> Optional[pulumi.Input[str]]:
55
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
56
56
  """
57
57
  The account in which the private location will be created.
58
58
  """
59
59
  return pulumi.get(self, "account_id")
60
60
 
61
61
  @account_id.setter
62
- def account_id(self, value: Optional[pulumi.Input[str]]):
62
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
63
63
  pulumi.set(self, "account_id", value)
64
64
 
65
- @property
65
+ @_builtins.property
66
66
  @pulumi.getter
67
- def name(self) -> Optional[pulumi.Input[str]]:
67
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
68
68
  """
69
69
  The name of the private location.
70
70
  """
71
71
  return pulumi.get(self, "name")
72
72
 
73
73
  @name.setter
74
- def name(self, value: Optional[pulumi.Input[str]]):
74
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
75
75
  pulumi.set(self, "name", value)
76
76
 
77
- @property
77
+ @_builtins.property
78
78
  @pulumi.getter(name="verifiedScriptExecution")
79
- def verified_script_execution(self) -> Optional[pulumi.Input[bool]]:
79
+ def verified_script_execution(self) -> Optional[pulumi.Input[_builtins.bool]]:
80
80
  """
81
81
  The private location requires a password to edit if value is true. Defaults to `false`
82
82
  """
83
83
  return pulumi.get(self, "verified_script_execution")
84
84
 
85
85
  @verified_script_execution.setter
86
- def verified_script_execution(self, value: Optional[pulumi.Input[bool]]):
86
+ def verified_script_execution(self, value: Optional[pulumi.Input[_builtins.bool]]):
87
87
  pulumi.set(self, "verified_script_execution", value)
88
88
 
89
89
 
90
90
  @pulumi.input_type
91
91
  class _PrivateLocationState:
92
92
  def __init__(__self__, *,
93
- account_id: Optional[pulumi.Input[str]] = None,
94
- description: Optional[pulumi.Input[str]] = None,
95
- domain_id: Optional[pulumi.Input[str]] = None,
96
- guid: Optional[pulumi.Input[str]] = None,
97
- key: Optional[pulumi.Input[str]] = None,
98
- location_id: Optional[pulumi.Input[str]] = None,
99
- name: Optional[pulumi.Input[str]] = None,
100
- verified_script_execution: Optional[pulumi.Input[bool]] = None):
93
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
94
+ description: Optional[pulumi.Input[_builtins.str]] = None,
95
+ domain_id: Optional[pulumi.Input[_builtins.str]] = None,
96
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
97
+ key: Optional[pulumi.Input[_builtins.str]] = None,
98
+ location_id: Optional[pulumi.Input[_builtins.str]] = None,
99
+ name: Optional[pulumi.Input[_builtins.str]] = None,
100
+ verified_script_execution: Optional[pulumi.Input[_builtins.bool]] = None):
101
101
  """
102
102
  Input properties used for looking up and filtering PrivateLocation resources.
103
- :param pulumi.Input[str] account_id: The account in which the private location will be created.
104
- :param pulumi.Input[str] description: The private location description.
105
- :param pulumi.Input[str] domain_id: The private location globally unique identifier.
106
- :param pulumi.Input[str] guid: The unique client identifier for the private location in New Relic. Same as `id`.
107
- :param pulumi.Input[str] key: The private locations key.
108
- :param pulumi.Input[str] location_id: An alternate identifier based on name.
109
- :param pulumi.Input[str] name: The name of the private location.
110
- :param pulumi.Input[bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
103
+ :param pulumi.Input[_builtins.str] account_id: The account in which the private location will be created.
104
+ :param pulumi.Input[_builtins.str] description: The private location description.
105
+ :param pulumi.Input[_builtins.str] domain_id: The private location globally unique identifier.
106
+ :param pulumi.Input[_builtins.str] guid: The unique client identifier for the private location in New Relic. Same as `id`.
107
+ :param pulumi.Input[_builtins.str] key: The private locations key.
108
+ :param pulumi.Input[_builtins.str] location_id: An alternate identifier based on name.
109
+ :param pulumi.Input[_builtins.str] name: The name of the private location.
110
+ :param pulumi.Input[_builtins.bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
111
111
  """
112
112
  if account_id is not None:
113
113
  pulumi.set(__self__, "account_id", account_id)
@@ -126,112 +126,113 @@ class _PrivateLocationState:
126
126
  if verified_script_execution is not None:
127
127
  pulumi.set(__self__, "verified_script_execution", verified_script_execution)
128
128
 
129
- @property
129
+ @_builtins.property
130
130
  @pulumi.getter(name="accountId")
131
- def account_id(self) -> Optional[pulumi.Input[str]]:
131
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
132
132
  """
133
133
  The account in which the private location will be created.
134
134
  """
135
135
  return pulumi.get(self, "account_id")
136
136
 
137
137
  @account_id.setter
138
- def account_id(self, value: Optional[pulumi.Input[str]]):
138
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
139
139
  pulumi.set(self, "account_id", value)
140
140
 
141
- @property
141
+ @_builtins.property
142
142
  @pulumi.getter
143
- def description(self) -> Optional[pulumi.Input[str]]:
143
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
144
144
  """
145
145
  The private location description.
146
146
  """
147
147
  return pulumi.get(self, "description")
148
148
 
149
149
  @description.setter
150
- def description(self, value: Optional[pulumi.Input[str]]):
150
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
151
151
  pulumi.set(self, "description", value)
152
152
 
153
- @property
153
+ @_builtins.property
154
154
  @pulumi.getter(name="domainId")
155
- def domain_id(self) -> Optional[pulumi.Input[str]]:
155
+ def domain_id(self) -> Optional[pulumi.Input[_builtins.str]]:
156
156
  """
157
157
  The private location globally unique identifier.
158
158
  """
159
159
  return pulumi.get(self, "domain_id")
160
160
 
161
161
  @domain_id.setter
162
- def domain_id(self, value: Optional[pulumi.Input[str]]):
162
+ def domain_id(self, value: Optional[pulumi.Input[_builtins.str]]):
163
163
  pulumi.set(self, "domain_id", value)
164
164
 
165
- @property
165
+ @_builtins.property
166
166
  @pulumi.getter
167
- def guid(self) -> Optional[pulumi.Input[str]]:
167
+ def guid(self) -> Optional[pulumi.Input[_builtins.str]]:
168
168
  """
169
169
  The unique client identifier for the private location in New Relic. Same as `id`.
170
170
  """
171
171
  return pulumi.get(self, "guid")
172
172
 
173
173
  @guid.setter
174
- def guid(self, value: Optional[pulumi.Input[str]]):
174
+ def guid(self, value: Optional[pulumi.Input[_builtins.str]]):
175
175
  pulumi.set(self, "guid", value)
176
176
 
177
- @property
177
+ @_builtins.property
178
178
  @pulumi.getter
179
- def key(self) -> Optional[pulumi.Input[str]]:
179
+ def key(self) -> Optional[pulumi.Input[_builtins.str]]:
180
180
  """
181
181
  The private locations key.
182
182
  """
183
183
  return pulumi.get(self, "key")
184
184
 
185
185
  @key.setter
186
- def key(self, value: Optional[pulumi.Input[str]]):
186
+ def key(self, value: Optional[pulumi.Input[_builtins.str]]):
187
187
  pulumi.set(self, "key", value)
188
188
 
189
- @property
189
+ @_builtins.property
190
190
  @pulumi.getter(name="locationId")
191
- def location_id(self) -> Optional[pulumi.Input[str]]:
191
+ def location_id(self) -> Optional[pulumi.Input[_builtins.str]]:
192
192
  """
193
193
  An alternate identifier based on name.
194
194
  """
195
195
  return pulumi.get(self, "location_id")
196
196
 
197
197
  @location_id.setter
198
- def location_id(self, value: Optional[pulumi.Input[str]]):
198
+ def location_id(self, value: Optional[pulumi.Input[_builtins.str]]):
199
199
  pulumi.set(self, "location_id", value)
200
200
 
201
- @property
201
+ @_builtins.property
202
202
  @pulumi.getter
203
- def name(self) -> Optional[pulumi.Input[str]]:
203
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
204
204
  """
205
205
  The name of the private location.
206
206
  """
207
207
  return pulumi.get(self, "name")
208
208
 
209
209
  @name.setter
210
- def name(self, value: Optional[pulumi.Input[str]]):
210
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
211
211
  pulumi.set(self, "name", value)
212
212
 
213
- @property
213
+ @_builtins.property
214
214
  @pulumi.getter(name="verifiedScriptExecution")
215
- def verified_script_execution(self) -> Optional[pulumi.Input[bool]]:
215
+ def verified_script_execution(self) -> Optional[pulumi.Input[_builtins.bool]]:
216
216
  """
217
217
  The private location requires a password to edit if value is true. Defaults to `false`
218
218
  """
219
219
  return pulumi.get(self, "verified_script_execution")
220
220
 
221
221
  @verified_script_execution.setter
222
- def verified_script_execution(self, value: Optional[pulumi.Input[bool]]):
222
+ def verified_script_execution(self, value: Optional[pulumi.Input[_builtins.bool]]):
223
223
  pulumi.set(self, "verified_script_execution", value)
224
224
 
225
225
 
226
+ @pulumi.type_token("newrelic:synthetics/privateLocation:PrivateLocation")
226
227
  class PrivateLocation(pulumi.CustomResource):
227
228
  @overload
228
229
  def __init__(__self__,
229
230
  resource_name: str,
230
231
  opts: Optional[pulumi.ResourceOptions] = None,
231
- account_id: Optional[pulumi.Input[str]] = None,
232
- description: Optional[pulumi.Input[str]] = None,
233
- name: Optional[pulumi.Input[str]] = None,
234
- verified_script_execution: Optional[pulumi.Input[bool]] = None,
232
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
233
+ description: Optional[pulumi.Input[_builtins.str]] = None,
234
+ name: Optional[pulumi.Input[_builtins.str]] = None,
235
+ verified_script_execution: Optional[pulumi.Input[_builtins.bool]] = None,
235
236
  __props__=None):
236
237
  """
237
238
  Use this resource to create and manage New Relic Synthetic private location.
@@ -257,10 +258,10 @@ class PrivateLocation(pulumi.CustomResource):
257
258
 
258
259
  :param str resource_name: The name of the resource.
259
260
  :param pulumi.ResourceOptions opts: Options for the resource.
260
- :param pulumi.Input[str] account_id: The account in which the private location will be created.
261
- :param pulumi.Input[str] description: The private location description.
262
- :param pulumi.Input[str] name: The name of the private location.
263
- :param pulumi.Input[bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
261
+ :param pulumi.Input[_builtins.str] account_id: The account in which the private location will be created.
262
+ :param pulumi.Input[_builtins.str] description: The private location description.
263
+ :param pulumi.Input[_builtins.str] name: The name of the private location.
264
+ :param pulumi.Input[_builtins.bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
264
265
  """
265
266
  ...
266
267
  @overload
@@ -305,10 +306,10 @@ class PrivateLocation(pulumi.CustomResource):
305
306
  def _internal_init(__self__,
306
307
  resource_name: str,
307
308
  opts: Optional[pulumi.ResourceOptions] = None,
308
- account_id: Optional[pulumi.Input[str]] = None,
309
- description: Optional[pulumi.Input[str]] = None,
310
- name: Optional[pulumi.Input[str]] = None,
311
- verified_script_execution: Optional[pulumi.Input[bool]] = None,
309
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
310
+ description: Optional[pulumi.Input[_builtins.str]] = None,
311
+ name: Optional[pulumi.Input[_builtins.str]] = None,
312
+ verified_script_execution: Optional[pulumi.Input[_builtins.bool]] = None,
312
313
  __props__=None):
313
314
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
314
315
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -338,14 +339,14 @@ class PrivateLocation(pulumi.CustomResource):
338
339
  def get(resource_name: str,
339
340
  id: pulumi.Input[str],
340
341
  opts: Optional[pulumi.ResourceOptions] = None,
341
- account_id: Optional[pulumi.Input[str]] = None,
342
- description: Optional[pulumi.Input[str]] = None,
343
- domain_id: Optional[pulumi.Input[str]] = None,
344
- guid: Optional[pulumi.Input[str]] = None,
345
- key: Optional[pulumi.Input[str]] = None,
346
- location_id: Optional[pulumi.Input[str]] = None,
347
- name: Optional[pulumi.Input[str]] = None,
348
- verified_script_execution: Optional[pulumi.Input[bool]] = None) -> 'PrivateLocation':
342
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
343
+ description: Optional[pulumi.Input[_builtins.str]] = None,
344
+ domain_id: Optional[pulumi.Input[_builtins.str]] = None,
345
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
346
+ key: Optional[pulumi.Input[_builtins.str]] = None,
347
+ location_id: Optional[pulumi.Input[_builtins.str]] = None,
348
+ name: Optional[pulumi.Input[_builtins.str]] = None,
349
+ verified_script_execution: Optional[pulumi.Input[_builtins.bool]] = None) -> 'PrivateLocation':
349
350
  """
350
351
  Get an existing PrivateLocation resource's state with the given name, id, and optional extra
351
352
  properties used to qualify the lookup.
@@ -353,14 +354,14 @@ class PrivateLocation(pulumi.CustomResource):
353
354
  :param str resource_name: The unique name of the resulting resource.
354
355
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
355
356
  :param pulumi.ResourceOptions opts: Options for the resource.
356
- :param pulumi.Input[str] account_id: The account in which the private location will be created.
357
- :param pulumi.Input[str] description: The private location description.
358
- :param pulumi.Input[str] domain_id: The private location globally unique identifier.
359
- :param pulumi.Input[str] guid: The unique client identifier for the private location in New Relic. Same as `id`.
360
- :param pulumi.Input[str] key: The private locations key.
361
- :param pulumi.Input[str] location_id: An alternate identifier based on name.
362
- :param pulumi.Input[str] name: The name of the private location.
363
- :param pulumi.Input[bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
357
+ :param pulumi.Input[_builtins.str] account_id: The account in which the private location will be created.
358
+ :param pulumi.Input[_builtins.str] description: The private location description.
359
+ :param pulumi.Input[_builtins.str] domain_id: The private location globally unique identifier.
360
+ :param pulumi.Input[_builtins.str] guid: The unique client identifier for the private location in New Relic. Same as `id`.
361
+ :param pulumi.Input[_builtins.str] key: The private locations key.
362
+ :param pulumi.Input[_builtins.str] location_id: An alternate identifier based on name.
363
+ :param pulumi.Input[_builtins.str] name: The name of the private location.
364
+ :param pulumi.Input[_builtins.bool] verified_script_execution: The private location requires a password to edit if value is true. Defaults to `false`
364
365
  """
365
366
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
366
367
 
@@ -376,65 +377,65 @@ class PrivateLocation(pulumi.CustomResource):
376
377
  __props__.__dict__["verified_script_execution"] = verified_script_execution
377
378
  return PrivateLocation(resource_name, opts=opts, __props__=__props__)
378
379
 
379
- @property
380
+ @_builtins.property
380
381
  @pulumi.getter(name="accountId")
381
- def account_id(self) -> pulumi.Output[str]:
382
+ def account_id(self) -> pulumi.Output[_builtins.str]:
382
383
  """
383
384
  The account in which the private location will be created.
384
385
  """
385
386
  return pulumi.get(self, "account_id")
386
387
 
387
- @property
388
+ @_builtins.property
388
389
  @pulumi.getter
389
- def description(self) -> pulumi.Output[str]:
390
+ def description(self) -> pulumi.Output[_builtins.str]:
390
391
  """
391
392
  The private location description.
392
393
  """
393
394
  return pulumi.get(self, "description")
394
395
 
395
- @property
396
+ @_builtins.property
396
397
  @pulumi.getter(name="domainId")
397
- def domain_id(self) -> pulumi.Output[str]:
398
+ def domain_id(self) -> pulumi.Output[_builtins.str]:
398
399
  """
399
400
  The private location globally unique identifier.
400
401
  """
401
402
  return pulumi.get(self, "domain_id")
402
403
 
403
- @property
404
+ @_builtins.property
404
405
  @pulumi.getter
405
- def guid(self) -> pulumi.Output[str]:
406
+ def guid(self) -> pulumi.Output[_builtins.str]:
406
407
  """
407
408
  The unique client identifier for the private location in New Relic. Same as `id`.
408
409
  """
409
410
  return pulumi.get(self, "guid")
410
411
 
411
- @property
412
+ @_builtins.property
412
413
  @pulumi.getter
413
- def key(self) -> pulumi.Output[str]:
414
+ def key(self) -> pulumi.Output[_builtins.str]:
414
415
  """
415
416
  The private locations key.
416
417
  """
417
418
  return pulumi.get(self, "key")
418
419
 
419
- @property
420
+ @_builtins.property
420
421
  @pulumi.getter(name="locationId")
421
- def location_id(self) -> pulumi.Output[str]:
422
+ def location_id(self) -> pulumi.Output[_builtins.str]:
422
423
  """
423
424
  An alternate identifier based on name.
424
425
  """
425
426
  return pulumi.get(self, "location_id")
426
427
 
427
- @property
428
+ @_builtins.property
428
429
  @pulumi.getter
429
- def name(self) -> pulumi.Output[str]:
430
+ def name(self) -> pulumi.Output[_builtins.str]:
430
431
  """
431
432
  The name of the private location.
432
433
  """
433
434
  return pulumi.get(self, "name")
434
435
 
435
- @property
436
+ @_builtins.property
436
437
  @pulumi.getter(name="verifiedScriptExecution")
437
- def verified_script_execution(self) -> pulumi.Output[Optional[bool]]:
438
+ def verified_script_execution(self) -> pulumi.Output[Optional[_builtins.bool]]:
438
439
  """
439
440
  The private location requires a password to edit if value is true. Defaults to `false`
440
441
  """