pulumi-newrelic 5.25.0__py3-none-any.whl → 5.25.0a1715760714__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 (33) hide show
  1. pulumi_newrelic/_inputs.py +43 -449
  2. pulumi_newrelic/account_management.py +14 -14
  3. pulumi_newrelic/alert_channel.py +28 -28
  4. pulumi_newrelic/alert_condition.py +84 -125
  5. pulumi_newrelic/alert_muting_rule.py +21 -21
  6. pulumi_newrelic/alert_policy.py +21 -27
  7. pulumi_newrelic/entity_tags.py +7 -7
  8. pulumi_newrelic/get_alert_policy.py +0 -9
  9. pulumi_newrelic/get_service_level_alert_helper.py +0 -18
  10. pulumi_newrelic/infra_alert_condition.py +126 -105
  11. pulumi_newrelic/insights/event.py +0 -13
  12. pulumi_newrelic/notification_destination.py +10 -14
  13. pulumi_newrelic/nrql_drop_rule.py +28 -28
  14. pulumi_newrelic/one_dashboard.py +42 -48
  15. pulumi_newrelic/outputs.py +43 -448
  16. pulumi_newrelic/plugins/_inputs.py +8 -8
  17. pulumi_newrelic/plugins/outputs.py +8 -8
  18. pulumi_newrelic/plugins/workload.py +28 -28
  19. pulumi_newrelic/pulumi-plugin.json +1 -1
  20. pulumi_newrelic/service_level.py +0 -79
  21. pulumi_newrelic/synthetics/alert_condition.py +14 -42
  22. pulumi_newrelic/synthetics/broken_links_monitor.py +0 -18
  23. pulumi_newrelic/synthetics/cert_check_monitor.py +0 -18
  24. pulumi_newrelic/synthetics/get_secure_credential.py +0 -8
  25. pulumi_newrelic/synthetics/monitor.py +0 -4
  26. pulumi_newrelic/synthetics/multi_location_alert_condition.py +49 -63
  27. pulumi_newrelic/synthetics/script_monitor.py +0 -4
  28. pulumi_newrelic/synthetics/secure_credential.py +21 -14
  29. pulumi_newrelic/synthetics/step_monitor.py +0 -18
  30. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/METADATA +1 -1
  31. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/RECORD +33 -33
  32. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/WHEEL +0 -0
  33. {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/top_level.txt +0 -0
@@ -385,8 +385,6 @@ class NotificationDestination(pulumi.CustomResource):
385
385
  """
386
386
  ## Import
387
387
 
388
- ~> **WARNING:** Slack-based destinations can only be imported and destroyed; this resource **does not** support creating and updating Slack-based destinations, owing to the reasons stated above, under the **Slack** section.
389
-
390
388
  Destination id can be found in the Destinations page -> three dots at the right of the chosen destination -> copy destination id to clipboard.
391
389
 
392
390
  This example is especially useful for slack destinations which *must* be imported.
@@ -404,16 +402,16 @@ class NotificationDestination(pulumi.CustomResource):
404
402
  ```
405
403
 
406
404
  3. Run the following command after the import successfully done and copy the information to your resource:
407
-
408
- `terraform state show newrelic_notification_destination.foo`
409
405
 
410
- 4. Add `ignore_changes` attribute on `all` in your imported resource:
406
+ `terraform state show newrelic_notification_destination.foo`
407
+
408
+ 4. Add `ignore_changes` attribute on `auth_token` in your imported resource:
411
409
 
412
410
  terraform
413
411
 
414
412
  lifecycle {
415
413
 
416
- ignore_changes = all
414
+ ignore_changes = [auth_token]
417
415
 
418
416
  }
419
417
 
@@ -425,7 +423,7 @@ class NotificationDestination(pulumi.CustomResource):
425
423
 
426
424
  lifecycle {
427
425
 
428
- ignore_changes = all
426
+ ignore_changes = [auth_token]
429
427
 
430
428
  }
431
429
 
@@ -473,8 +471,6 @@ class NotificationDestination(pulumi.CustomResource):
473
471
  """
474
472
  ## Import
475
473
 
476
- ~> **WARNING:** Slack-based destinations can only be imported and destroyed; this resource **does not** support creating and updating Slack-based destinations, owing to the reasons stated above, under the **Slack** section.
477
-
478
474
  Destination id can be found in the Destinations page -> three dots at the right of the chosen destination -> copy destination id to clipboard.
479
475
 
480
476
  This example is especially useful for slack destinations which *must* be imported.
@@ -492,16 +488,16 @@ class NotificationDestination(pulumi.CustomResource):
492
488
  ```
493
489
 
494
490
  3. Run the following command after the import successfully done and copy the information to your resource:
495
-
496
- `terraform state show newrelic_notification_destination.foo`
497
491
 
498
- 4. Add `ignore_changes` attribute on `all` in your imported resource:
492
+ `terraform state show newrelic_notification_destination.foo`
493
+
494
+ 4. Add `ignore_changes` attribute on `auth_token` in your imported resource:
499
495
 
500
496
  terraform
501
497
 
502
498
  lifecycle {
503
499
 
504
- ignore_changes = all
500
+ ignore_changes = [auth_token]
505
501
 
506
502
  }
507
503
 
@@ -513,7 +509,7 @@ class NotificationDestination(pulumi.CustomResource):
513
509
 
514
510
  lifecycle {
515
511
 
516
- ignore_changes = all
512
+ ignore_changes = [auth_token]
517
513
 
518
514
  }
519
515
 
@@ -20,10 +20,10 @@ class NrqlDropRuleArgs:
20
20
  description: Optional[pulumi.Input[str]] = None):
21
21
  """
22
22
  The set of arguments for constructing a NrqlDropRule resource.
23
- :param pulumi.Input[str] action: An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
24
- :param pulumi.Input[str] nrql: A NRQL string that specifies what data types to drop.
25
- :param pulumi.Input[str] account_id: Account where the drop rule will be put. Defaults to the account associated with the API key used.
26
- :param pulumi.Input[str] description: The description of the drop rule.
23
+ :param pulumi.Input[str] action: The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
24
+ :param pulumi.Input[str] nrql: Explains which data to apply the drop rule to.
25
+ :param pulumi.Input[str] account_id: Account with the NRQL drop rule will be put.
26
+ :param pulumi.Input[str] description: Provides additional information about the rule.
27
27
  """
28
28
  pulumi.set(__self__, "action", action)
29
29
  pulumi.set(__self__, "nrql", nrql)
@@ -36,7 +36,7 @@ class NrqlDropRuleArgs:
36
36
  @pulumi.getter
37
37
  def action(self) -> pulumi.Input[str]:
38
38
  """
39
- An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
39
+ The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
40
40
  """
41
41
  return pulumi.get(self, "action")
42
42
 
@@ -48,7 +48,7 @@ class NrqlDropRuleArgs:
48
48
  @pulumi.getter
49
49
  def nrql(self) -> pulumi.Input[str]:
50
50
  """
51
- A NRQL string that specifies what data types to drop.
51
+ Explains which data to apply the drop rule to.
52
52
  """
53
53
  return pulumi.get(self, "nrql")
54
54
 
@@ -60,7 +60,7 @@ class NrqlDropRuleArgs:
60
60
  @pulumi.getter(name="accountId")
61
61
  def account_id(self) -> Optional[pulumi.Input[str]]:
62
62
  """
63
- Account where the drop rule will be put. Defaults to the account associated with the API key used.
63
+ Account with the NRQL drop rule will be put.
64
64
  """
65
65
  return pulumi.get(self, "account_id")
66
66
 
@@ -72,7 +72,7 @@ class NrqlDropRuleArgs:
72
72
  @pulumi.getter
73
73
  def description(self) -> Optional[pulumi.Input[str]]:
74
74
  """
75
- The description of the drop rule.
75
+ Provides additional information about the rule.
76
76
  """
77
77
  return pulumi.get(self, "description")
78
78
 
@@ -91,10 +91,10 @@ class _NrqlDropRuleState:
91
91
  rule_id: Optional[pulumi.Input[str]] = None):
92
92
  """
93
93
  Input properties used for looking up and filtering NrqlDropRule resources.
94
- :param pulumi.Input[str] account_id: Account where the drop rule will be put. Defaults to the account associated with the API key used.
95
- :param pulumi.Input[str] action: An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
96
- :param pulumi.Input[str] description: The description of the drop rule.
97
- :param pulumi.Input[str] nrql: A NRQL string that specifies what data types to drop.
94
+ :param pulumi.Input[str] account_id: Account with the NRQL drop rule will be put.
95
+ :param pulumi.Input[str] action: The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
96
+ :param pulumi.Input[str] description: Provides additional information about the rule.
97
+ :param pulumi.Input[str] nrql: Explains which data to apply the drop rule to.
98
98
  :param pulumi.Input[str] rule_id: The id, uniquely identifying the rule.
99
99
  """
100
100
  if account_id is not None:
@@ -112,7 +112,7 @@ class _NrqlDropRuleState:
112
112
  @pulumi.getter(name="accountId")
113
113
  def account_id(self) -> Optional[pulumi.Input[str]]:
114
114
  """
115
- Account where the drop rule will be put. Defaults to the account associated with the API key used.
115
+ Account with the NRQL drop rule will be put.
116
116
  """
117
117
  return pulumi.get(self, "account_id")
118
118
 
@@ -124,7 +124,7 @@ class _NrqlDropRuleState:
124
124
  @pulumi.getter
125
125
  def action(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
- An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
127
+ The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
128
128
  """
129
129
  return pulumi.get(self, "action")
130
130
 
@@ -136,7 +136,7 @@ class _NrqlDropRuleState:
136
136
  @pulumi.getter
137
137
  def description(self) -> Optional[pulumi.Input[str]]:
138
138
  """
139
- The description of the drop rule.
139
+ Provides additional information about the rule.
140
140
  """
141
141
  return pulumi.get(self, "description")
142
142
 
@@ -148,7 +148,7 @@ class _NrqlDropRuleState:
148
148
  @pulumi.getter
149
149
  def nrql(self) -> Optional[pulumi.Input[str]]:
150
150
  """
151
- A NRQL string that specifies what data types to drop.
151
+ Explains which data to apply the drop rule to.
152
152
  """
153
153
  return pulumi.get(self, "nrql")
154
154
 
@@ -228,10 +228,10 @@ class NrqlDropRule(pulumi.CustomResource):
228
228
 
229
229
  :param str resource_name: The name of the resource.
230
230
  :param pulumi.ResourceOptions opts: Options for the resource.
231
- :param pulumi.Input[str] account_id: Account where the drop rule will be put. Defaults to the account associated with the API key used.
232
- :param pulumi.Input[str] action: An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
233
- :param pulumi.Input[str] description: The description of the drop rule.
234
- :param pulumi.Input[str] nrql: A NRQL string that specifies what data types to drop.
231
+ :param pulumi.Input[str] account_id: Account with the NRQL drop rule will be put.
232
+ :param pulumi.Input[str] action: The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
233
+ :param pulumi.Input[str] description: Provides additional information about the rule.
234
+ :param pulumi.Input[str] nrql: Explains which data to apply the drop rule to.
235
235
  """
236
236
  ...
237
237
  @overload
@@ -345,10 +345,10 @@ class NrqlDropRule(pulumi.CustomResource):
345
345
  :param str resource_name: The unique name of the resulting resource.
346
346
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
347
347
  :param pulumi.ResourceOptions opts: Options for the resource.
348
- :param pulumi.Input[str] account_id: Account where the drop rule will be put. Defaults to the account associated with the API key used.
349
- :param pulumi.Input[str] action: An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
350
- :param pulumi.Input[str] description: The description of the drop rule.
351
- :param pulumi.Input[str] nrql: A NRQL string that specifies what data types to drop.
348
+ :param pulumi.Input[str] account_id: Account with the NRQL drop rule will be put.
349
+ :param pulumi.Input[str] action: The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
350
+ :param pulumi.Input[str] description: Provides additional information about the rule.
351
+ :param pulumi.Input[str] nrql: Explains which data to apply the drop rule to.
352
352
  :param pulumi.Input[str] rule_id: The id, uniquely identifying the rule.
353
353
  """
354
354
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -366,7 +366,7 @@ class NrqlDropRule(pulumi.CustomResource):
366
366
  @pulumi.getter(name="accountId")
367
367
  def account_id(self) -> pulumi.Output[str]:
368
368
  """
369
- Account where the drop rule will be put. Defaults to the account associated with the API key used.
369
+ Account with the NRQL drop rule will be put.
370
370
  """
371
371
  return pulumi.get(self, "account_id")
372
372
 
@@ -374,7 +374,7 @@ class NrqlDropRule(pulumi.CustomResource):
374
374
  @pulumi.getter
375
375
  def action(self) -> pulumi.Output[str]:
376
376
  """
377
- An action type specifying how to apply the NRQL string (either `drop_data`, `drop_attributes`, or ` drop_attributes_from_metric_aggregates`).
377
+ The drop rule action (drop_data, drop_attributes, or drop_attributes_from_metric_aggregates).
378
378
  """
379
379
  return pulumi.get(self, "action")
380
380
 
@@ -382,7 +382,7 @@ class NrqlDropRule(pulumi.CustomResource):
382
382
  @pulumi.getter
383
383
  def description(self) -> pulumi.Output[Optional[str]]:
384
384
  """
385
- The description of the drop rule.
385
+ Provides additional information about the rule.
386
386
  """
387
387
  return pulumi.get(self, "description")
388
388
 
@@ -390,7 +390,7 @@ class NrqlDropRule(pulumi.CustomResource):
390
390
  @pulumi.getter
391
391
  def nrql(self) -> pulumi.Output[str]:
392
392
  """
393
- A NRQL string that specifies what data types to drop.
393
+ Explains which data to apply the drop rule to.
394
394
  """
395
395
  return pulumi.get(self, "nrql")
396
396
 
@@ -24,12 +24,12 @@ class OneDashboardArgs:
24
24
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]] = None):
25
25
  """
26
26
  The set of arguments for constructing a OneDashboard resource.
27
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
28
- :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.
29
- :param pulumi.Input[str] description: Brief text describing the dashboard.
30
- :param pulumi.Input[str] name: The title of the dashboard.
31
- :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`.
32
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
27
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the dashboard.
28
+ :param pulumi.Input[str] description: (Optional) Brief text describing the page.
29
+ :param pulumi.Input[str] name: (Required) The variable identifier.
30
+ :param pulumi.Input[str] permissions: Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
31
+ public_read_only.
32
+ :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: Dashboard-local variable definitions.
33
33
  """
34
34
  pulumi.set(__self__, "pages", pages)
35
35
  if account_id is not None:
@@ -46,9 +46,6 @@ class OneDashboardArgs:
46
46
  @property
47
47
  @pulumi.getter
48
48
  def pages(self) -> pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]:
49
- """
50
- A nested block that describes a page. See Nested page blocks below for details.
51
- """
52
49
  return pulumi.get(self, "pages")
53
50
 
54
51
  @pages.setter
@@ -59,7 +56,7 @@ class OneDashboardArgs:
59
56
  @pulumi.getter(name="accountId")
60
57
  def account_id(self) -> Optional[pulumi.Input[str]]:
61
58
  """
62
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
59
+ The New Relic account ID where you want to create the dashboard.
63
60
  """
64
61
  return pulumi.get(self, "account_id")
65
62
 
@@ -71,7 +68,7 @@ class OneDashboardArgs:
71
68
  @pulumi.getter
72
69
  def description(self) -> Optional[pulumi.Input[str]]:
73
70
  """
74
- Brief text describing the dashboard.
71
+ (Optional) Brief text describing the page.
75
72
  """
76
73
  return pulumi.get(self, "description")
77
74
 
@@ -83,7 +80,7 @@ class OneDashboardArgs:
83
80
  @pulumi.getter
84
81
  def name(self) -> Optional[pulumi.Input[str]]:
85
82
  """
86
- The title of the dashboard.
83
+ (Required) The variable identifier.
87
84
  """
88
85
  return pulumi.get(self, "name")
89
86
 
@@ -95,7 +92,8 @@ class OneDashboardArgs:
95
92
  @pulumi.getter
96
93
  def permissions(self) -> Optional[pulumi.Input[str]]:
97
94
  """
98
- 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`.
95
+ Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
96
+ public_read_only.
99
97
  """
100
98
  return pulumi.get(self, "permissions")
101
99
 
@@ -107,7 +105,7 @@ class OneDashboardArgs:
107
105
  @pulumi.getter
108
106
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]]:
109
107
  """
110
- A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
108
+ Dashboard-local variable definitions.
111
109
  """
112
110
  return pulumi.get(self, "variables")
113
111
 
@@ -129,14 +127,14 @@ class _OneDashboardState:
129
127
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]] = None):
130
128
  """
131
129
  Input properties used for looking up and filtering OneDashboard resources.
132
- :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.
133
- :param pulumi.Input[str] description: Brief text describing the dashboard.
130
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the dashboard.
131
+ :param pulumi.Input[str] description: (Optional) Brief text describing the page.
134
132
  :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
135
- :param pulumi.Input[str] name: The title of the dashboard.
136
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
133
+ :param pulumi.Input[str] name: (Required) The variable identifier.
137
134
  :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
138
- :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`.
139
- :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
135
+ :param pulumi.Input[str] permissions: Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
136
+ public_read_only.
137
+ :param pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]] variables: Dashboard-local variable definitions.
140
138
  """
141
139
  if account_id is not None:
142
140
  pulumi.set(__self__, "account_id", account_id)
@@ -159,7 +157,7 @@ class _OneDashboardState:
159
157
  @pulumi.getter(name="accountId")
160
158
  def account_id(self) -> Optional[pulumi.Input[str]]:
161
159
  """
162
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
160
+ The New Relic account ID where you want to create the dashboard.
163
161
  """
164
162
  return pulumi.get(self, "account_id")
165
163
 
@@ -171,7 +169,7 @@ class _OneDashboardState:
171
169
  @pulumi.getter
172
170
  def description(self) -> Optional[pulumi.Input[str]]:
173
171
  """
174
- Brief text describing the dashboard.
172
+ (Optional) Brief text describing the page.
175
173
  """
176
174
  return pulumi.get(self, "description")
177
175
 
@@ -195,7 +193,7 @@ class _OneDashboardState:
195
193
  @pulumi.getter
196
194
  def name(self) -> Optional[pulumi.Input[str]]:
197
195
  """
198
- The title of the dashboard.
196
+ (Required) The variable identifier.
199
197
  """
200
198
  return pulumi.get(self, "name")
201
199
 
@@ -206,9 +204,6 @@ class _OneDashboardState:
206
204
  @property
207
205
  @pulumi.getter
208
206
  def pages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageArgs']]]]:
209
- """
210
- A nested block that describes a page. See Nested page blocks below for details.
211
- """
212
207
  return pulumi.get(self, "pages")
213
208
 
214
209
  @pages.setter
@@ -231,7 +226,8 @@ class _OneDashboardState:
231
226
  @pulumi.getter
232
227
  def permissions(self) -> Optional[pulumi.Input[str]]:
233
228
  """
234
- 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`.
229
+ Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
230
+ public_read_only.
235
231
  """
236
232
  return pulumi.get(self, "permissions")
237
233
 
@@ -243,7 +239,7 @@ class _OneDashboardState:
243
239
  @pulumi.getter
244
240
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardVariableArgs']]]]:
245
241
  """
246
- A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
242
+ Dashboard-local variable definitions.
247
243
  """
248
244
  return pulumi.get(self, "variables")
249
245
 
@@ -277,12 +273,12 @@ class OneDashboard(pulumi.CustomResource):
277
273
 
278
274
  :param str resource_name: The name of the resource.
279
275
  :param pulumi.ResourceOptions opts: Options for the resource.
280
- :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.
281
- :param pulumi.Input[str] description: Brief text describing the dashboard.
282
- :param pulumi.Input[str] name: The title of the dashboard.
283
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardPageArgs']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
284
- :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`.
285
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardVariableArgs']]]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
276
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the dashboard.
277
+ :param pulumi.Input[str] description: (Optional) Brief text describing the page.
278
+ :param pulumi.Input[str] name: (Required) The variable identifier.
279
+ :param pulumi.Input[str] permissions: Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
280
+ public_read_only.
281
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardVariableArgs']]]] variables: Dashboard-local variable definitions.
286
282
  """
287
283
  ...
288
284
  @overload
@@ -366,14 +362,14 @@ class OneDashboard(pulumi.CustomResource):
366
362
  :param str resource_name: The unique name of the resulting resource.
367
363
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
368
364
  :param pulumi.ResourceOptions opts: Options for the resource.
369
- :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.
370
- :param pulumi.Input[str] description: Brief text describing the dashboard.
365
+ :param pulumi.Input[str] account_id: The New Relic account ID where you want to create the dashboard.
366
+ :param pulumi.Input[str] description: (Optional) Brief text describing the page.
371
367
  :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
372
- :param pulumi.Input[str] name: The title of the dashboard.
373
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardPageArgs']]]] pages: A nested block that describes a page. See Nested page blocks below for details.
368
+ :param pulumi.Input[str] name: (Required) The variable identifier.
374
369
  :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
375
- :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`.
376
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardVariableArgs']]]] variables: A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
370
+ :param pulumi.Input[str] permissions: Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
371
+ public_read_only.
372
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OneDashboardVariableArgs']]]] variables: Dashboard-local variable definitions.
377
373
  """
378
374
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
379
375
 
@@ -393,7 +389,7 @@ class OneDashboard(pulumi.CustomResource):
393
389
  @pulumi.getter(name="accountId")
394
390
  def account_id(self) -> pulumi.Output[str]:
395
391
  """
396
- Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
392
+ The New Relic account ID where you want to create the dashboard.
397
393
  """
398
394
  return pulumi.get(self, "account_id")
399
395
 
@@ -401,7 +397,7 @@ class OneDashboard(pulumi.CustomResource):
401
397
  @pulumi.getter
402
398
  def description(self) -> pulumi.Output[Optional[str]]:
403
399
  """
404
- Brief text describing the dashboard.
400
+ (Optional) Brief text describing the page.
405
401
  """
406
402
  return pulumi.get(self, "description")
407
403
 
@@ -417,16 +413,13 @@ class OneDashboard(pulumi.CustomResource):
417
413
  @pulumi.getter
418
414
  def name(self) -> pulumi.Output[str]:
419
415
  """
420
- The title of the dashboard.
416
+ (Required) The variable identifier.
421
417
  """
422
418
  return pulumi.get(self, "name")
423
419
 
424
420
  @property
425
421
  @pulumi.getter
426
422
  def pages(self) -> pulumi.Output[Sequence['outputs.OneDashboardPage']]:
427
- """
428
- A nested block that describes a page. See Nested page blocks below for details.
429
- """
430
423
  return pulumi.get(self, "pages")
431
424
 
432
425
  @property
@@ -441,7 +434,8 @@ class OneDashboard(pulumi.CustomResource):
441
434
  @pulumi.getter
442
435
  def permissions(self) -> pulumi.Output[Optional[str]]:
443
436
  """
444
- 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`.
437
+ Determines who can see or edit the dashboard. Valid values are private, public_read_only, public_read_write. Defaults to
438
+ public_read_only.
445
439
  """
446
440
  return pulumi.get(self, "permissions")
447
441
 
@@ -449,7 +443,7 @@ class OneDashboard(pulumi.CustomResource):
449
443
  @pulumi.getter
450
444
  def variables(self) -> pulumi.Output[Optional[Sequence['outputs.OneDashboardVariable']]]:
451
445
  """
452
- A nested block that describes a dashboard-local variable. See Nested variable blocks below for details.
446
+ Dashboard-local variable definitions.
453
447
  """
454
448
  return pulumi.get(self, "variables")
455
449