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
@@ -23,17 +22,17 @@ __all__ = ['OneDashboardRawArgs', 'OneDashboardRaw']
23
22
  class OneDashboardRawArgs:
24
23
  def __init__(__self__, *,
25
24
  pages: pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]],
26
- account_id: Optional[pulumi.Input[builtins.str]] = None,
27
- description: Optional[pulumi.Input[builtins.str]] = None,
28
- name: Optional[pulumi.Input[builtins.str]] = None,
29
- permissions: Optional[pulumi.Input[builtins.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):
30
29
  """
31
30
  The set of arguments for constructing a OneDashboardRaw resource.
32
31
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
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`.
32
+ :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.
33
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
34
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
35
+ :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
36
  """
38
37
  pulumi.set(__self__, "pages", pages)
39
38
  if account_id is not None:
@@ -45,7 +44,7 @@ class OneDashboardRawArgs:
45
44
  if permissions is not None:
46
45
  pulumi.set(__self__, "permissions", permissions)
47
46
 
48
- @property
47
+ @_builtins.property
49
48
  @pulumi.getter
50
49
  def pages(self) -> pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]:
51
50
  """
@@ -57,74 +56,74 @@ class OneDashboardRawArgs:
57
56
  def pages(self, value: pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]):
58
57
  pulumi.set(self, "pages", value)
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter(name="accountId")
62
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
61
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
63
62
  """
64
63
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
65
64
  """
66
65
  return pulumi.get(self, "account_id")
67
66
 
68
67
  @account_id.setter
69
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
68
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
70
69
  pulumi.set(self, "account_id", value)
71
70
 
72
- @property
71
+ @_builtins.property
73
72
  @pulumi.getter
74
- def description(self) -> Optional[pulumi.Input[builtins.str]]:
73
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
75
74
  """
76
75
  Brief text describing the dashboard.
77
76
  """
78
77
  return pulumi.get(self, "description")
79
78
 
80
79
  @description.setter
81
- def description(self, value: Optional[pulumi.Input[builtins.str]]):
80
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
82
81
  pulumi.set(self, "description", value)
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter
86
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
85
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
87
86
  """
88
87
  The title of the dashboard.
89
88
  """
90
89
  return pulumi.get(self, "name")
91
90
 
92
91
  @name.setter
93
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
92
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
94
93
  pulumi.set(self, "name", value)
95
94
 
96
- @property
95
+ @_builtins.property
97
96
  @pulumi.getter
98
- def permissions(self) -> Optional[pulumi.Input[builtins.str]]:
97
+ def permissions(self) -> Optional[pulumi.Input[_builtins.str]]:
99
98
  """
100
99
  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`.
101
100
  """
102
101
  return pulumi.get(self, "permissions")
103
102
 
104
103
  @permissions.setter
105
- def permissions(self, value: Optional[pulumi.Input[builtins.str]]):
104
+ def permissions(self, value: Optional[pulumi.Input[_builtins.str]]):
106
105
  pulumi.set(self, "permissions", value)
107
106
 
108
107
 
109
108
  @pulumi.input_type
110
109
  class _OneDashboardRawState:
111
110
  def __init__(__self__, *,
112
- account_id: Optional[pulumi.Input[builtins.str]] = None,
113
- description: Optional[pulumi.Input[builtins.str]] = None,
114
- guid: Optional[pulumi.Input[builtins.str]] = None,
115
- name: Optional[pulumi.Input[builtins.str]] = None,
111
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
112
+ description: Optional[pulumi.Input[_builtins.str]] = None,
113
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
114
+ name: Optional[pulumi.Input[_builtins.str]] = None,
116
115
  pages: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]] = None,
117
- permalink: Optional[pulumi.Input[builtins.str]] = None,
118
- permissions: Optional[pulumi.Input[builtins.str]] = None):
116
+ permalink: Optional[pulumi.Input[_builtins.str]] = None,
117
+ permissions: Optional[pulumi.Input[_builtins.str]] = None):
119
118
  """
120
119
  Input properties used for looking up and filtering OneDashboardRaw resources.
121
- :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.
122
- :param pulumi.Input[builtins.str] description: Brief text describing the dashboard.
123
- :param pulumi.Input[builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
124
- :param pulumi.Input[builtins.str] name: The title of the dashboard.
120
+ :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.
121
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
122
+ :param pulumi.Input[_builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
123
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
125
124
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
126
- :param pulumi.Input[builtins.str] permalink: The URL for viewing the dashboard.
127
- :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`.
125
+ :param pulumi.Input[_builtins.str] permalink: The URL for viewing the dashboard.
126
+ :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`.
128
127
  """
129
128
  if account_id is not None:
130
129
  pulumi.set(__self__, "account_id", account_id)
@@ -141,55 +140,55 @@ class _OneDashboardRawState:
141
140
  if permissions is not None:
142
141
  pulumi.set(__self__, "permissions", permissions)
143
142
 
144
- @property
143
+ @_builtins.property
145
144
  @pulumi.getter(name="accountId")
146
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
145
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
147
146
  """
148
147
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
149
148
  """
150
149
  return pulumi.get(self, "account_id")
151
150
 
152
151
  @account_id.setter
153
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
152
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
154
153
  pulumi.set(self, "account_id", value)
155
154
 
156
- @property
155
+ @_builtins.property
157
156
  @pulumi.getter
158
- def description(self) -> Optional[pulumi.Input[builtins.str]]:
157
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
159
158
  """
160
159
  Brief text describing the dashboard.
161
160
  """
162
161
  return pulumi.get(self, "description")
163
162
 
164
163
  @description.setter
165
- def description(self, value: Optional[pulumi.Input[builtins.str]]):
164
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
166
165
  pulumi.set(self, "description", value)
167
166
 
168
- @property
167
+ @_builtins.property
169
168
  @pulumi.getter
170
- def guid(self) -> Optional[pulumi.Input[builtins.str]]:
169
+ def guid(self) -> Optional[pulumi.Input[_builtins.str]]:
171
170
  """
172
171
  The unique entity identifier of the dashboard page in New Relic.
173
172
  """
174
173
  return pulumi.get(self, "guid")
175
174
 
176
175
  @guid.setter
177
- def guid(self, value: Optional[pulumi.Input[builtins.str]]):
176
+ def guid(self, value: Optional[pulumi.Input[_builtins.str]]):
178
177
  pulumi.set(self, "guid", value)
179
178
 
180
- @property
179
+ @_builtins.property
181
180
  @pulumi.getter
182
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
181
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
183
182
  """
184
183
  The title of the dashboard.
185
184
  """
186
185
  return pulumi.get(self, "name")
187
186
 
188
187
  @name.setter
189
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
188
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
190
189
  pulumi.set(self, "name", value)
191
190
 
192
- @property
191
+ @_builtins.property
193
192
  @pulumi.getter
194
193
  def pages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]]:
195
194
  """
@@ -201,28 +200,28 @@ class _OneDashboardRawState:
201
200
  def pages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]]):
202
201
  pulumi.set(self, "pages", value)
203
202
 
204
- @property
203
+ @_builtins.property
205
204
  @pulumi.getter
206
- def permalink(self) -> Optional[pulumi.Input[builtins.str]]:
205
+ def permalink(self) -> Optional[pulumi.Input[_builtins.str]]:
207
206
  """
208
207
  The URL for viewing the dashboard.
209
208
  """
210
209
  return pulumi.get(self, "permalink")
211
210
 
212
211
  @permalink.setter
213
- def permalink(self, value: Optional[pulumi.Input[builtins.str]]):
212
+ def permalink(self, value: Optional[pulumi.Input[_builtins.str]]):
214
213
  pulumi.set(self, "permalink", value)
215
214
 
216
- @property
215
+ @_builtins.property
217
216
  @pulumi.getter
218
- def permissions(self) -> Optional[pulumi.Input[builtins.str]]:
217
+ def permissions(self) -> Optional[pulumi.Input[_builtins.str]]:
219
218
  """
220
219
  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`.
221
220
  """
222
221
  return pulumi.get(self, "permissions")
223
222
 
224
223
  @permissions.setter
225
- def permissions(self, value: Optional[pulumi.Input[builtins.str]]):
224
+ def permissions(self, value: Optional[pulumi.Input[_builtins.str]]):
226
225
  pulumi.set(self, "permissions", value)
227
226
 
228
227
 
@@ -232,11 +231,11 @@ class OneDashboardRaw(pulumi.CustomResource):
232
231
  def __init__(__self__,
233
232
  resource_name: str,
234
233
  opts: Optional[pulumi.ResourceOptions] = None,
235
- account_id: Optional[pulumi.Input[builtins.str]] = None,
236
- description: Optional[pulumi.Input[builtins.str]] = None,
237
- name: Optional[pulumi.Input[builtins.str]] = None,
234
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
235
+ description: Optional[pulumi.Input[_builtins.str]] = None,
236
+ name: Optional[pulumi.Input[_builtins.str]] = None,
238
237
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
239
- permissions: Optional[pulumi.Input[builtins.str]] = None,
238
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
240
239
  __props__=None):
241
240
  """
242
241
  > **NOTE:** The OneDashboardJson resource is preferred for configuring dashboards in New Relic. This resource does not support the latest dashboard features and will receive less investment compared to newrelic_one_dashboard_json.
@@ -321,11 +320,11 @@ class OneDashboardRaw(pulumi.CustomResource):
321
320
 
322
321
  :param str resource_name: The name of the resource.
323
322
  :param pulumi.ResourceOptions opts: Options for the resource.
324
- :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.
325
- :param pulumi.Input[builtins.str] description: Brief text describing the dashboard.
326
- :param pulumi.Input[builtins.str] name: The title of the dashboard.
323
+ :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.
324
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
325
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
327
326
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
328
- :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`.
327
+ :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`.
329
328
  """
330
329
  ...
331
330
  @overload
@@ -429,11 +428,11 @@ class OneDashboardRaw(pulumi.CustomResource):
429
428
  def _internal_init(__self__,
430
429
  resource_name: str,
431
430
  opts: Optional[pulumi.ResourceOptions] = None,
432
- account_id: Optional[pulumi.Input[builtins.str]] = None,
433
- description: Optional[pulumi.Input[builtins.str]] = None,
434
- name: Optional[pulumi.Input[builtins.str]] = None,
431
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
432
+ description: Optional[pulumi.Input[_builtins.str]] = None,
433
+ name: Optional[pulumi.Input[_builtins.str]] = None,
435
434
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
436
- permissions: Optional[pulumi.Input[builtins.str]] = None,
435
+ permissions: Optional[pulumi.Input[_builtins.str]] = None,
437
436
  __props__=None):
438
437
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
439
438
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -462,13 +461,13 @@ class OneDashboardRaw(pulumi.CustomResource):
462
461
  def get(resource_name: str,
463
462
  id: pulumi.Input[str],
464
463
  opts: Optional[pulumi.ResourceOptions] = None,
465
- account_id: Optional[pulumi.Input[builtins.str]] = None,
466
- description: Optional[pulumi.Input[builtins.str]] = None,
467
- guid: Optional[pulumi.Input[builtins.str]] = None,
468
- name: Optional[pulumi.Input[builtins.str]] = None,
464
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
465
+ description: Optional[pulumi.Input[_builtins.str]] = None,
466
+ guid: Optional[pulumi.Input[_builtins.str]] = None,
467
+ name: Optional[pulumi.Input[_builtins.str]] = None,
469
468
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
470
- permalink: Optional[pulumi.Input[builtins.str]] = None,
471
- permissions: Optional[pulumi.Input[builtins.str]] = None) -> 'OneDashboardRaw':
469
+ permalink: Optional[pulumi.Input[_builtins.str]] = None,
470
+ permissions: Optional[pulumi.Input[_builtins.str]] = None) -> 'OneDashboardRaw':
472
471
  """
473
472
  Get an existing OneDashboardRaw resource's state with the given name, id, and optional extra
474
473
  properties used to qualify the lookup.
@@ -476,13 +475,13 @@ class OneDashboardRaw(pulumi.CustomResource):
476
475
  :param str resource_name: The unique name of the resulting resource.
477
476
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
478
477
  :param pulumi.ResourceOptions opts: Options for the resource.
479
- :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.
480
- :param pulumi.Input[builtins.str] description: Brief text describing the dashboard.
481
- :param pulumi.Input[builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
482
- :param pulumi.Input[builtins.str] name: The title of the dashboard.
478
+ :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.
479
+ :param pulumi.Input[_builtins.str] description: Brief text describing the dashboard.
480
+ :param pulumi.Input[_builtins.str] guid: The unique entity identifier of the dashboard page in New Relic.
481
+ :param pulumi.Input[_builtins.str] name: The title of the dashboard.
483
482
  :param pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
484
- :param pulumi.Input[builtins.str] permalink: The URL for viewing the dashboard.
485
- :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`.
483
+ :param pulumi.Input[_builtins.str] permalink: The URL for viewing the dashboard.
484
+ :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`.
486
485
  """
487
486
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
488
487
 
@@ -497,39 +496,39 @@ class OneDashboardRaw(pulumi.CustomResource):
497
496
  __props__.__dict__["permissions"] = permissions
498
497
  return OneDashboardRaw(resource_name, opts=opts, __props__=__props__)
499
498
 
500
- @property
499
+ @_builtins.property
501
500
  @pulumi.getter(name="accountId")
502
- def account_id(self) -> pulumi.Output[builtins.str]:
501
+ def account_id(self) -> pulumi.Output[_builtins.str]:
503
502
  """
504
503
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
505
504
  """
506
505
  return pulumi.get(self, "account_id")
507
506
 
508
- @property
507
+ @_builtins.property
509
508
  @pulumi.getter
510
- def description(self) -> pulumi.Output[Optional[builtins.str]]:
509
+ def description(self) -> pulumi.Output[Optional[_builtins.str]]:
511
510
  """
512
511
  Brief text describing the dashboard.
513
512
  """
514
513
  return pulumi.get(self, "description")
515
514
 
516
- @property
515
+ @_builtins.property
517
516
  @pulumi.getter
518
- def guid(self) -> pulumi.Output[builtins.str]:
517
+ def guid(self) -> pulumi.Output[_builtins.str]:
519
518
  """
520
519
  The unique entity identifier of the dashboard page in New Relic.
521
520
  """
522
521
  return pulumi.get(self, "guid")
523
522
 
524
- @property
523
+ @_builtins.property
525
524
  @pulumi.getter
526
- def name(self) -> pulumi.Output[builtins.str]:
525
+ def name(self) -> pulumi.Output[_builtins.str]:
527
526
  """
528
527
  The title of the dashboard.
529
528
  """
530
529
  return pulumi.get(self, "name")
531
530
 
532
- @property
531
+ @_builtins.property
533
532
  @pulumi.getter
534
533
  def pages(self) -> pulumi.Output[Sequence['outputs.OneDashboardRawPage']]:
535
534
  """
@@ -537,17 +536,17 @@ class OneDashboardRaw(pulumi.CustomResource):
537
536
  """
538
537
  return pulumi.get(self, "pages")
539
538
 
540
- @property
539
+ @_builtins.property
541
540
  @pulumi.getter
542
- def permalink(self) -> pulumi.Output[builtins.str]:
541
+ def permalink(self) -> pulumi.Output[_builtins.str]:
543
542
  """
544
543
  The URL for viewing the dashboard.
545
544
  """
546
545
  return pulumi.get(self, "permalink")
547
546
 
548
- @property
547
+ @_builtins.property
549
548
  @pulumi.getter
550
- def permissions(self) -> pulumi.Output[Optional[builtins.str]]:
549
+ def permissions(self) -> pulumi.Output[Optional[_builtins.str]]:
551
550
  """
552
551
  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`.
553
552
  """