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
@@ -22,18 +22,18 @@ __all__ = ['OneDashboardArgs', 'OneDashboard']
22
22
  class OneDashboardArgs:
23
23
  def __init__(__self__, *,
24
24
  pages: pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]],
25
- account_id: Optional[pulumi.Input[str]] = None,
26
- description: Optional[pulumi.Input[str]] = None,
27
- name: Optional[pulumi.Input[str]] = None,
28
- permissions: Optional[pulumi.Input[str]] = None,
25
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
26
+ description: Optional[pulumi.Input[_builtins.str]] = None,
27
+ name: Optional[pulumi.Input[_builtins.str]] = None,
28
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
29
29
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]] = None):
30
30
  """
31
31
  The set of arguments for constructing a OneDashboard resource.
32
32
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
33
- :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
34
- :param pulumi.Input[str] description: Brief text describing the dashboard.
35
- :param pulumi.Input[str] name: The title of the dashboard.
36
- :param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
33
+ :param pulumi.Input[_builtins.str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
34
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
35
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
36
+ :param pulumi.Input[_builtins.str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
37
37
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
38
38
  """
39
39
  pulumi.set(__self__, "pages", pages)
@@ -48,7 +48,7 @@ class OneDashboardArgs:
48
48
  if variables is not None:
49
49
  pulumi.set(__self__, "variables", variables)
50
50
 
51
- @property
51
+ @_builtins.property
52
52
  @pulumi.getter
53
53
  def pages(self) -> pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]:
54
54
  """
@@ -60,55 +60,55 @@ class OneDashboardArgs:
60
60
  def pages(self, value: pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]):
61
61
  pulumi.set(self, "pages", value)
62
62
 
63
- @property
63
+ @_builtins.property
64
64
  @pulumi.getter(name="accountId")
65
- def account_id(self) -> Optional[pulumi.Input[str]]:
65
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
66
66
  """
67
67
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
68
68
  """
69
69
  return pulumi.get(self, "account_id")
70
70
 
71
71
  @account_id.setter
72
- def account_id(self, value: Optional[pulumi.Input[str]]):
72
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
73
73
  pulumi.set(self, "account_id", value)
74
74
 
75
- @property
75
+ @_builtins.property
76
76
  @pulumi.getter
77
- def description(self) -> Optional[pulumi.Input[str]]:
77
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
78
78
  """
79
79
  Brief text describing the dashboard.
80
80
  """
81
81
  return pulumi.get(self, "description")
82
82
 
83
83
  @description.setter
84
- def description(self, value: Optional[pulumi.Input[str]]):
84
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
85
85
  pulumi.set(self, "description", value)
86
86
 
87
- @property
87
+ @_builtins.property
88
88
  @pulumi.getter
89
- def name(self) -> Optional[pulumi.Input[str]]:
89
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
90
90
  """
91
91
  The title of the dashboard.
92
92
  """
93
93
  return pulumi.get(self, "name")
94
94
 
95
95
  @name.setter
96
- def name(self, value: Optional[pulumi.Input[str]]):
96
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
97
97
  pulumi.set(self, "name", value)
98
98
 
99
- @property
99
+ @_builtins.property
100
100
  @pulumi.getter
101
- def permissions(self) -> Optional[pulumi.Input[str]]:
101
+ def permissions(self) -> Optional[pulumi.Input[_builtins.str]]:
102
102
  """
103
103
  Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
104
104
  """
105
105
  return pulumi.get(self, "permissions")
106
106
 
107
107
  @permissions.setter
108
- def permissions(self, value: Optional[pulumi.Input[str]]):
108
+ def permissions(self, value: Optional[pulumi.Input[_builtins.str]]):
109
109
  pulumi.set(self, "permissions", value)
110
110
 
111
- @property
111
+ @_builtins.property
112
112
  @pulumi.getter
113
113
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]]:
114
114
  """
@@ -124,23 +124,23 @@ class OneDashboardArgs:
124
124
  @pulumi.input_type
125
125
  class _OneDashboardState:
126
126
  def __init__(__self__, *,
127
- account_id: Optional[pulumi.Input[str]] = None,
128
- description: Optional[pulumi.Input[str]] = None,
129
- guid: Optional[pulumi.Input[str]] = None,
130
- name: Optional[pulumi.Input[str]] = None,
127
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
128
+ description: Optional[pulumi.Input[_builtins.str]] = None,
129
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
130
+ name: Optional[pulumi.Input[_builtins.str]] = None,
131
131
  pages: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]] = None,
132
- permalink: Optional[pulumi.Input[str]] = None,
133
- permissions: Optional[pulumi.Input[str]] = None,
132
+ permalink: Optional[pulumi.Input[_builtins.str]] = None,
133
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
134
134
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]] = None):
135
135
  """
136
136
  Input properties used for looking up and filtering OneDashboard resources.
137
- :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
138
- :param pulumi.Input[str] description: Brief text describing the dashboard.
139
- :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
140
- :param pulumi.Input[str] name: The title of the dashboard.
137
+ :param pulumi.Input[_builtins.str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
138
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
139
+ :param pulumi.Input[_builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
140
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
141
141
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
142
- :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
143
- :param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
142
+ :param pulumi.Input[_builtins.str] permalink: The URL for viewing the dashboard.
143
+ :param pulumi.Input[_builtins.str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
144
144
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
145
145
  """
146
146
  if account_id is not None:
@@ -160,55 +160,55 @@ class _OneDashboardState:
160
160
  if variables is not None:
161
161
  pulumi.set(__self__, "variables", variables)
162
162
 
163
- @property
163
+ @_builtins.property
164
164
  @pulumi.getter(name="accountId")
165
- def account_id(self) -> Optional[pulumi.Input[str]]:
165
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
166
166
  """
167
167
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
168
168
  """
169
169
  return pulumi.get(self, "account_id")
170
170
 
171
171
  @account_id.setter
172
- def account_id(self, value: Optional[pulumi.Input[str]]):
172
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
173
173
  pulumi.set(self, "account_id", value)
174
174
 
175
- @property
175
+ @_builtins.property
176
176
  @pulumi.getter
177
- def description(self) -> Optional[pulumi.Input[str]]:
177
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
178
178
  """
179
179
  Brief text describing the dashboard.
180
180
  """
181
181
  return pulumi.get(self, "description")
182
182
 
183
183
  @description.setter
184
- def description(self, value: Optional[pulumi.Input[str]]):
184
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
185
185
  pulumi.set(self, "description", value)
186
186
 
187
- @property
187
+ @_builtins.property
188
188
  @pulumi.getter
189
- def guid(self) -> Optional[pulumi.Input[str]]:
189
+ def guid(self) -> Optional[pulumi.Input[_builtins.str]]:
190
190
  """
191
191
  The unique entity identifier of the dashboard page in New Relic.
192
192
  """
193
193
  return pulumi.get(self, "guid")
194
194
 
195
195
  @guid.setter
196
- def guid(self, value: Optional[pulumi.Input[str]]):
196
+ def guid(self, value: Optional[pulumi.Input[_builtins.str]]):
197
197
  pulumi.set(self, "guid", value)
198
198
 
199
- @property
199
+ @_builtins.property
200
200
  @pulumi.getter
201
- def name(self) -> Optional[pulumi.Input[str]]:
201
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
202
202
  """
203
203
  The title of the dashboard.
204
204
  """
205
205
  return pulumi.get(self, "name")
206
206
 
207
207
  @name.setter
208
- def name(self, value: Optional[pulumi.Input[str]]):
208
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
209
209
  pulumi.set(self, "name", value)
210
210
 
211
- @property
211
+ @_builtins.property
212
212
  @pulumi.getter
213
213
  def pages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]]:
214
214
  """
@@ -220,31 +220,31 @@ class _OneDashboardState:
220
220
  def pages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]]):
221
221
  pulumi.set(self, "pages", value)
222
222
 
223
- @property
223
+ @_builtins.property
224
224
  @pulumi.getter
225
- def permalink(self) -> Optional[pulumi.Input[str]]:
225
+ def permalink(self) -> Optional[pulumi.Input[_builtins.str]]:
226
226
  """
227
227
  The URL for viewing the dashboard.
228
228
  """
229
229
  return pulumi.get(self, "permalink")
230
230
 
231
231
  @permalink.setter
232
- def permalink(self, value: Optional[pulumi.Input[str]]):
232
+ def permalink(self, value: Optional[pulumi.Input[_builtins.str]]):
233
233
  pulumi.set(self, "permalink", value)
234
234
 
235
- @property
235
+ @_builtins.property
236
236
  @pulumi.getter
237
- def permissions(self) -> Optional[pulumi.Input[str]]:
237
+ def permissions(self) -> Optional[pulumi.Input[_builtins.str]]:
238
238
  """
239
239
  Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
240
240
  """
241
241
  return pulumi.get(self, "permissions")
242
242
 
243
243
  @permissions.setter
244
- def permissions(self, value: Optional[pulumi.Input[str]]):
244
+ def permissions(self, value: Optional[pulumi.Input[_builtins.str]]):
245
245
  pulumi.set(self, "permissions", value)
246
246
 
247
- @property
247
+ @_builtins.property
248
248
  @pulumi.getter
249
249
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]]:
250
250
  """
@@ -257,16 +257,17 @@ class _OneDashboardState:
257
257
  pulumi.set(self, "variables", value)
258
258
 
259
259
 
260
+ @pulumi.type_token("newrelic:index/oneDashboard:OneDashboard")
260
261
  class OneDashboard(pulumi.CustomResource):
261
262
  @overload
262
263
  def __init__(__self__,
263
264
  resource_name: str,
264
265
  opts: Optional[pulumi.ResourceOptions] = None,
265
- account_id: Optional[pulumi.Input[str]] = None,
266
- description: Optional[pulumi.Input[str]] = None,
267
- name: Optional[pulumi.Input[str]] = None,
266
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
267
+ description: Optional[pulumi.Input[_builtins.str]] = None,
268
+ name: Optional[pulumi.Input[_builtins.str]] = None,
268
269
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardPageArgs', 'OneDashboardPageArgsDict']]]]] = None,
269
- permissions: Optional[pulumi.Input[str]] = None,
270
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
270
271
  variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardVariableArgs', 'OneDashboardVariableArgsDict']]]]] = None,
271
272
  __props__=None):
272
273
  """
@@ -282,11 +283,11 @@ class OneDashboard(pulumi.CustomResource):
282
283
 
283
284
  :param str resource_name: The name of the resource.
284
285
  :param pulumi.ResourceOptions opts: Options for the resource.
285
- :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
286
- :param pulumi.Input[str] description: Brief text describing the dashboard.
287
- :param pulumi.Input[str] name: The title of the dashboard.
286
+ :param pulumi.Input[_builtins.str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
287
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
288
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
288
289
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardPageArgs', 'OneDashboardPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
289
- :param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
290
+ :param pulumi.Input[_builtins.str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
290
291
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardVariableArgs', 'OneDashboardVariableArgsDict']]]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
291
292
  """
292
293
  ...
@@ -321,11 +322,11 @@ class OneDashboard(pulumi.CustomResource):
321
322
  def _internal_init(__self__,
322
323
  resource_name: str,
323
324
  opts: Optional[pulumi.ResourceOptions] = None,
324
- account_id: Optional[pulumi.Input[str]] = None,
325
- description: Optional[pulumi.Input[str]] = None,
326
- name: Optional[pulumi.Input[str]] = None,
325
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
326
+ description: Optional[pulumi.Input[_builtins.str]] = None,
327
+ name: Optional[pulumi.Input[_builtins.str]] = None,
327
328
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardPageArgs', 'OneDashboardPageArgsDict']]]]] = None,
328
- permissions: Optional[pulumi.Input[str]] = None,
329
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
329
330
  variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardVariableArgs', 'OneDashboardVariableArgsDict']]]]] = None,
330
331
  __props__=None):
331
332
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -356,13 +357,13 @@ class OneDashboard(pulumi.CustomResource):
356
357
  def get(resource_name: str,
357
358
  id: pulumi.Input[str],
358
359
  opts: Optional[pulumi.ResourceOptions] = None,
359
- account_id: Optional[pulumi.Input[str]] = None,
360
- description: Optional[pulumi.Input[str]] = None,
361
- guid: Optional[pulumi.Input[str]] = None,
362
- name: Optional[pulumi.Input[str]] = None,
360
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
361
+ description: Optional[pulumi.Input[_builtins.str]] = None,
362
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
363
+ name: Optional[pulumi.Input[_builtins.str]] = None,
363
364
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardPageArgs', 'OneDashboardPageArgsDict']]]]] = None,
364
- permalink: Optional[pulumi.Input[str]] = None,
365
- permissions: Optional[pulumi.Input[str]] = None,
365
+ permalink: Optional[pulumi.Input[_builtins.str]] = None,
366
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
366
367
  variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardVariableArgs', 'OneDashboardVariableArgsDict']]]]] = None) -> 'OneDashboard':
367
368
  """
368
369
  Get an existing OneDashboard resource's state with the given name, id, and optional extra
@@ -371,13 +372,13 @@ class OneDashboard(pulumi.CustomResource):
371
372
  :param str resource_name: The unique name of the resulting resource.
372
373
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
373
374
  :param pulumi.ResourceOptions opts: Options for the resource.
374
- :param pulumi.Input[str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
375
- :param pulumi.Input[str] description: Brief text describing the dashboard.
376
- :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
377
- :param pulumi.Input[str] name: The title of the dashboard.
375
+ :param pulumi.Input[_builtins.str] account_id: Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
376
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
377
+ :param pulumi.Input[_builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
378
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
378
379
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardPageArgs', 'OneDashboardPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
379
- :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
380
- :param pulumi.Input[str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
380
+ :param pulumi.Input[_builtins.str] permalink: The URL for viewing the dashboard.
381
+ :param pulumi.Input[_builtins.str] permissions: Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
381
382
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardVariableArgs', 'OneDashboardVariableArgsDict']]]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
382
383
  """
383
384
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -394,39 +395,39 @@ class OneDashboard(pulumi.CustomResource):
394
395
  __props__.__dict__["variables"] = variables
395
396
  return OneDashboard(resource_name, opts=opts, __props__=__props__)
396
397
 
397
- @property
398
+ @_builtins.property
398
399
  @pulumi.getter(name="accountId")
399
- def account_id(self) -> pulumi.Output[str]:
400
+ def account_id(self) -> pulumi.Output[_builtins.str]:
400
401
  """
401
402
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
402
403
  """
403
404
  return pulumi.get(self, "account_id")
404
405
 
405
- @property
406
+ @_builtins.property
406
407
  @pulumi.getter
407
- def description(self) -> pulumi.Output[Optional[str]]:
408
+ def description(self) -> pulumi.Output[Optional[_builtins.str]]:
408
409
  """
409
410
  Brief text describing the dashboard.
410
411
  """
411
412
  return pulumi.get(self, "description")
412
413
 
413
- @property
414
+ @_builtins.property
414
415
  @pulumi.getter
415
- def guid(self) -> pulumi.Output[str]:
416
+ def guid(self) -> pulumi.Output[_builtins.str]:
416
417
  """
417
418
  The unique entity identifier of the dashboard page in New Relic.
418
419
  """
419
420
  return pulumi.get(self, "guid")
420
421
 
421
- @property
422
+ @_builtins.property
422
423
  @pulumi.getter
423
- def name(self) -> pulumi.Output[str]:
424
+ def name(self) -> pulumi.Output[_builtins.str]:
424
425
  """
425
426
  The title of the dashboard.
426
427
  """
427
428
  return pulumi.get(self, "name")
428
429
 
429
- @property
430
+ @_builtins.property
430
431
  @pulumi.getter
431
432
  def pages(self) -> pulumi.Output[Sequence['outputs.OneDashboardPage']]:
432
433
  """
@@ -434,23 +435,23 @@ class OneDashboard(pulumi.CustomResource):
434
435
  """
435
436
  return pulumi.get(self, "pages")
436
437
 
437
- @property
438
+ @_builtins.property
438
439
  @pulumi.getter
439
- def permalink(self) -> pulumi.Output[str]:
440
+ def permalink(self) -> pulumi.Output[_builtins.str]:
440
441
  """
441
442
  The URL for viewing the dashboard.
442
443
  """
443
444
  return pulumi.get(self, "permalink")
444
445
 
445
- @property
446
+ @_builtins.property
446
447
  @pulumi.getter
447
- def permissions(self) -> pulumi.Output[Optional[str]]:
448
+ def permissions(self) -> pulumi.Output[Optional[_builtins.str]]:
448
449
  """
449
450
  Determines who can see the dashboard in an account. Valid values are `private`, `public_read_only`, or `public_read_write`. Defaults to `public_read_only`.
450
451
  """
451
452
  return pulumi.get(self, "permissions")
452
453
 
453
- @property
454
+ @_builtins.property
454
455
  @pulumi.getter
455
456
  def variables(self) -> pulumi.Output[Optional[Sequence['outputs.OneDashboardVariable']]]:
456
457
  """