pulumi-newrelic 5.45.0a1743574084__py3-none-any.whl → 5.45.0a1744183332__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 (89) hide show
  1. pulumi_newrelic/__init__.py +1 -0
  2. pulumi_newrelic/_inputs.py +2961 -2960
  3. pulumi_newrelic/account_management.py +29 -28
  4. pulumi_newrelic/alert_channel.py +43 -42
  5. pulumi_newrelic/alert_condition.py +176 -175
  6. pulumi_newrelic/alert_muting_rule.py +71 -70
  7. pulumi_newrelic/alert_policy.py +57 -56
  8. pulumi_newrelic/alert_policy_channel.py +43 -42
  9. pulumi_newrelic/api_access_key.py +92 -91
  10. pulumi_newrelic/browser_application.py +92 -91
  11. pulumi_newrelic/cloud/__init__.py +1 -0
  12. pulumi_newrelic/cloud/_inputs.py +1765 -1764
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +29 -28
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +57 -56
  15. pulumi_newrelic/cloud/aws_integrations.py +29 -28
  16. pulumi_newrelic/cloud/aws_link_account.py +57 -56
  17. pulumi_newrelic/cloud/azure_integrations.py +29 -28
  18. pulumi_newrelic/cloud/azure_link_account.py +85 -84
  19. pulumi_newrelic/cloud/gcp_integrations.py +29 -28
  20. pulumi_newrelic/cloud/gcp_link_account.py +45 -44
  21. pulumi_newrelic/cloud/outputs.py +1057 -1056
  22. pulumi_newrelic/config/__init__.py +1 -0
  23. pulumi_newrelic/config/__init__.pyi +1 -0
  24. pulumi_newrelic/config/vars.py +1 -0
  25. pulumi_newrelic/data_partition_rule.py +92 -91
  26. pulumi_newrelic/entity_tags.py +15 -14
  27. pulumi_newrelic/events_to_metrics_rule.py +78 -77
  28. pulumi_newrelic/get_account.py +17 -16
  29. pulumi_newrelic/get_alert_channel.py +14 -13
  30. pulumi_newrelic/get_alert_policy.py +19 -18
  31. pulumi_newrelic/get_application.py +9 -8
  32. pulumi_newrelic/get_authentication_domain.py +7 -6
  33. pulumi_newrelic/get_cloud_account.py +17 -16
  34. pulumi_newrelic/get_entity.py +40 -39
  35. pulumi_newrelic/get_group.py +13 -12
  36. pulumi_newrelic/get_key_transaction.py +19 -18
  37. pulumi_newrelic/get_notification_destination.py +20 -19
  38. pulumi_newrelic/get_obfuscation_expression.py +12 -11
  39. pulumi_newrelic/get_service_level_alert_helper.py +41 -40
  40. pulumi_newrelic/get_test_grok_pattern.py +17 -16
  41. pulumi_newrelic/get_user.py +17 -16
  42. pulumi_newrelic/group.py +43 -42
  43. pulumi_newrelic/infra_alert_condition.py +204 -203
  44. pulumi_newrelic/insights/__init__.py +1 -0
  45. pulumi_newrelic/insights/_inputs.py +26 -25
  46. pulumi_newrelic/insights/event.py +1 -0
  47. pulumi_newrelic/insights/outputs.py +16 -15
  48. pulumi_newrelic/key_transaction.py +85 -84
  49. pulumi_newrelic/log_parsing_rule.py +120 -119
  50. pulumi_newrelic/monitor_downtime.py +113 -112
  51. pulumi_newrelic/notification_channel.py +92 -91
  52. pulumi_newrelic/notification_destination.py +78 -77
  53. pulumi_newrelic/nrql_alert_condition.py +330 -329
  54. pulumi_newrelic/nrql_drop_rule.py +64 -63
  55. pulumi_newrelic/obfuscation_expression.py +57 -56
  56. pulumi_newrelic/obfuscation_rule.py +71 -70
  57. pulumi_newrelic/one_dashboard.py +71 -70
  58. pulumi_newrelic/one_dashboard_json.py +50 -49
  59. pulumi_newrelic/one_dashboard_raw.py +71 -70
  60. pulumi_newrelic/outputs.py +1831 -1830
  61. pulumi_newrelic/plugins/__init__.py +1 -0
  62. pulumi_newrelic/plugins/_inputs.py +126 -125
  63. pulumi_newrelic/plugins/application_settings.py +132 -131
  64. pulumi_newrelic/plugins/outputs.py +76 -75
  65. pulumi_newrelic/plugins/workload.py +99 -98
  66. pulumi_newrelic/provider.py +80 -79
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +57 -56
  69. pulumi_newrelic/synthetics/__init__.py +1 -0
  70. pulumi_newrelic/synthetics/_inputs.py +106 -105
  71. pulumi_newrelic/synthetics/alert_condition.py +78 -77
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +151 -150
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +158 -157
  74. pulumi_newrelic/synthetics/get_private_location.py +17 -16
  75. pulumi_newrelic/synthetics/get_secure_credential.py +14 -13
  76. pulumi_newrelic/synthetics/monitor.py +298 -297
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +92 -91
  78. pulumi_newrelic/synthetics/outputs.py +64 -63
  79. pulumi_newrelic/synthetics/private_location.py +85 -84
  80. pulumi_newrelic/synthetics/script_monitor.py +235 -234
  81. pulumi_newrelic/synthetics/secure_credential.py +71 -70
  82. pulumi_newrelic/synthetics/step_monitor.py +165 -164
  83. pulumi_newrelic/user.py +57 -56
  84. pulumi_newrelic/workflow.py +106 -105
  85. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.45.0a1744183332.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.45.0a1743574084.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -22,17 +23,17 @@ __all__ = ['OneDashboardRawArgs', 'OneDashboardRaw']
22
23
  class OneDashboardRawArgs:
23
24
  def __init__(__self__, *,
24
25
  pages: pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]],
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):
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):
29
30
  """
30
31
  The set of arguments for constructing a OneDashboardRaw resource.
31
32
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
32
- :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.
33
- :param pulumi.Input[str] description: Brief text describing the dashboard.
34
- :param pulumi.Input[str] name: The title of the dashboard.
35
- :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`.
36
37
  """
37
38
  pulumi.set(__self__, "pages", pages)
38
39
  if account_id is not None:
@@ -58,72 +59,72 @@ class OneDashboardRawArgs:
58
59
 
59
60
  @property
60
61
  @pulumi.getter(name="accountId")
61
- def account_id(self) -> Optional[pulumi.Input[str]]:
62
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
62
63
  """
63
64
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
64
65
  """
65
66
  return pulumi.get(self, "account_id")
66
67
 
67
68
  @account_id.setter
68
- def account_id(self, value: Optional[pulumi.Input[str]]):
69
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
69
70
  pulumi.set(self, "account_id", value)
70
71
 
71
72
  @property
72
73
  @pulumi.getter
73
- def description(self) -> Optional[pulumi.Input[str]]:
74
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
74
75
  """
75
76
  Brief text describing the dashboard.
76
77
  """
77
78
  return pulumi.get(self, "description")
78
79
 
79
80
  @description.setter
80
- def description(self, value: Optional[pulumi.Input[str]]):
81
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
81
82
  pulumi.set(self, "description", value)
82
83
 
83
84
  @property
84
85
  @pulumi.getter
85
- def name(self) -> Optional[pulumi.Input[str]]:
86
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
86
87
  """
87
88
  The title of the dashboard.
88
89
  """
89
90
  return pulumi.get(self, "name")
90
91
 
91
92
  @name.setter
92
- def name(self, value: Optional[pulumi.Input[str]]):
93
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
93
94
  pulumi.set(self, "name", value)
94
95
 
95
96
  @property
96
97
  @pulumi.getter
97
- def permissions(self) -> Optional[pulumi.Input[str]]:
98
+ def permissions(self) -> Optional[pulumi.Input[builtins.str]]:
98
99
  """
99
100
  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`.
100
101
  """
101
102
  return pulumi.get(self, "permissions")
102
103
 
103
104
  @permissions.setter
104
- def permissions(self, value: Optional[pulumi.Input[str]]):
105
+ def permissions(self, value: Optional[pulumi.Input[builtins.str]]):
105
106
  pulumi.set(self, "permissions", value)
106
107
 
107
108
 
108
109
  @pulumi.input_type
109
110
  class _OneDashboardRawState:
110
111
  def __init__(__self__, *,
111
- account_id: Optional[pulumi.Input[str]] = None,
112
- description: Optional[pulumi.Input[str]] = None,
113
- guid: Optional[pulumi.Input[str]] = None,
114
- name: Optional[pulumi.Input[str]] = None,
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,
115
116
  pages: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]]] = None,
116
- permalink: Optional[pulumi.Input[str]] = None,
117
- permissions: Optional[pulumi.Input[str]] = None):
117
+ permalink: Optional[pulumi.Input[builtins.str]] = None,
118
+ permissions: Optional[pulumi.Input[builtins.str]] = None):
118
119
  """
119
120
  Input properties used for looking up and filtering OneDashboardRaw resources.
120
- :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.
121
- :param pulumi.Input[str] description: Brief text describing the dashboard.
122
- :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
123
- :param pulumi.Input[str] name: The title of the dashboard.
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.
124
125
  :param pulumi.Input[Sequence[pulumi.Input['OneDashboardRawPageArgs']]] pages: A nested block that describes a page. See Nested page blocks below for details.
125
- :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
126
- :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`.
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`.
127
128
  """
128
129
  if account_id is not None:
129
130
  pulumi.set(__self__, "account_id", account_id)
@@ -142,50 +143,50 @@ class _OneDashboardRawState:
142
143
 
143
144
  @property
144
145
  @pulumi.getter(name="accountId")
145
- def account_id(self) -> Optional[pulumi.Input[str]]:
146
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
146
147
  """
147
148
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
148
149
  """
149
150
  return pulumi.get(self, "account_id")
150
151
 
151
152
  @account_id.setter
152
- def account_id(self, value: Optional[pulumi.Input[str]]):
153
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
153
154
  pulumi.set(self, "account_id", value)
154
155
 
155
156
  @property
156
157
  @pulumi.getter
157
- def description(self) -> Optional[pulumi.Input[str]]:
158
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
158
159
  """
159
160
  Brief text describing the dashboard.
160
161
  """
161
162
  return pulumi.get(self, "description")
162
163
 
163
164
  @description.setter
164
- def description(self, value: Optional[pulumi.Input[str]]):
165
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
165
166
  pulumi.set(self, "description", value)
166
167
 
167
168
  @property
168
169
  @pulumi.getter
169
- def guid(self) -> Optional[pulumi.Input[str]]:
170
+ def guid(self) -> Optional[pulumi.Input[builtins.str]]:
170
171
  """
171
172
  The unique entity identifier of the dashboard page in New Relic.
172
173
  """
173
174
  return pulumi.get(self, "guid")
174
175
 
175
176
  @guid.setter
176
- def guid(self, value: Optional[pulumi.Input[str]]):
177
+ def guid(self, value: Optional[pulumi.Input[builtins.str]]):
177
178
  pulumi.set(self, "guid", value)
178
179
 
179
180
  @property
180
181
  @pulumi.getter
181
- def name(self) -> Optional[pulumi.Input[str]]:
182
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
182
183
  """
183
184
  The title of the dashboard.
184
185
  """
185
186
  return pulumi.get(self, "name")
186
187
 
187
188
  @name.setter
188
- def name(self, value: Optional[pulumi.Input[str]]):
189
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
189
190
  pulumi.set(self, "name", value)
190
191
 
191
192
  @property
@@ -202,26 +203,26 @@ class _OneDashboardRawState:
202
203
 
203
204
  @property
204
205
  @pulumi.getter
205
- def permalink(self) -> Optional[pulumi.Input[str]]:
206
+ def permalink(self) -> Optional[pulumi.Input[builtins.str]]:
206
207
  """
207
208
  The URL for viewing the dashboard.
208
209
  """
209
210
  return pulumi.get(self, "permalink")
210
211
 
211
212
  @permalink.setter
212
- def permalink(self, value: Optional[pulumi.Input[str]]):
213
+ def permalink(self, value: Optional[pulumi.Input[builtins.str]]):
213
214
  pulumi.set(self, "permalink", value)
214
215
 
215
216
  @property
216
217
  @pulumi.getter
217
- def permissions(self) -> Optional[pulumi.Input[str]]:
218
+ def permissions(self) -> Optional[pulumi.Input[builtins.str]]:
218
219
  """
219
220
  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`.
220
221
  """
221
222
  return pulumi.get(self, "permissions")
222
223
 
223
224
  @permissions.setter
224
- def permissions(self, value: Optional[pulumi.Input[str]]):
225
+ def permissions(self, value: Optional[pulumi.Input[builtins.str]]):
225
226
  pulumi.set(self, "permissions", value)
226
227
 
227
228
 
@@ -230,11 +231,11 @@ class OneDashboardRaw(pulumi.CustomResource):
230
231
  def __init__(__self__,
231
232
  resource_name: str,
232
233
  opts: Optional[pulumi.ResourceOptions] = None,
233
- account_id: Optional[pulumi.Input[str]] = None,
234
- description: Optional[pulumi.Input[str]] = None,
235
- name: Optional[pulumi.Input[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,
236
237
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
237
- permissions: Optional[pulumi.Input[str]] = None,
238
+ permissions: Optional[pulumi.Input[builtins.str]] = None,
238
239
  __props__=None):
239
240
  """
240
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.
@@ -319,11 +320,11 @@ class OneDashboardRaw(pulumi.CustomResource):
319
320
 
320
321
  :param str resource_name: The name of the resource.
321
322
  :param pulumi.ResourceOptions opts: Options for the resource.
322
- :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.
323
- :param pulumi.Input[str] description: Brief text describing the dashboard.
324
- :param pulumi.Input[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.
325
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.
326
- :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`.
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`.
327
328
  """
328
329
  ...
329
330
  @overload
@@ -427,11 +428,11 @@ class OneDashboardRaw(pulumi.CustomResource):
427
428
  def _internal_init(__self__,
428
429
  resource_name: str,
429
430
  opts: Optional[pulumi.ResourceOptions] = None,
430
- account_id: Optional[pulumi.Input[str]] = None,
431
- description: Optional[pulumi.Input[str]] = None,
432
- name: Optional[pulumi.Input[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,
433
434
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
434
- permissions: Optional[pulumi.Input[str]] = None,
435
+ permissions: Optional[pulumi.Input[builtins.str]] = None,
435
436
  __props__=None):
436
437
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
437
438
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -460,13 +461,13 @@ class OneDashboardRaw(pulumi.CustomResource):
460
461
  def get(resource_name: str,
461
462
  id: pulumi.Input[str],
462
463
  opts: Optional[pulumi.ResourceOptions] = None,
463
- account_id: Optional[pulumi.Input[str]] = None,
464
- description: Optional[pulumi.Input[str]] = None,
465
- guid: Optional[pulumi.Input[str]] = None,
466
- name: Optional[pulumi.Input[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,
467
468
  pages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OneDashboardRawPageArgs', 'OneDashboardRawPageArgsDict']]]]] = None,
468
- permalink: Optional[pulumi.Input[str]] = None,
469
- permissions: Optional[pulumi.Input[str]] = None) -> 'OneDashboardRaw':
469
+ permalink: Optional[pulumi.Input[builtins.str]] = None,
470
+ permissions: Optional[pulumi.Input[builtins.str]] = None) -> 'OneDashboardRaw':
470
471
  """
471
472
  Get an existing OneDashboardRaw resource's state with the given name, id, and optional extra
472
473
  properties used to qualify the lookup.
@@ -474,13 +475,13 @@ class OneDashboardRaw(pulumi.CustomResource):
474
475
  :param str resource_name: The unique name of the resulting resource.
475
476
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
476
477
  :param pulumi.ResourceOptions opts: Options for the resource.
477
- :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.
478
- :param pulumi.Input[str] description: Brief text describing the dashboard.
479
- :param pulumi.Input[str] guid: The unique entity identifier of the dashboard page in New Relic.
480
- :param pulumi.Input[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.
481
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.
482
- :param pulumi.Input[str] permalink: The URL for viewing the dashboard.
483
- :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`.
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`.
484
485
  """
485
486
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
486
487
 
@@ -497,7 +498,7 @@ class OneDashboardRaw(pulumi.CustomResource):
497
498
 
498
499
  @property
499
500
  @pulumi.getter(name="accountId")
500
- def account_id(self) -> pulumi.Output[str]:
501
+ def account_id(self) -> pulumi.Output[builtins.str]:
501
502
  """
502
503
  Determines the New Relic account where the dashboard will be created. Defaults to the account associated with the API key used.
503
504
  """
@@ -505,7 +506,7 @@ class OneDashboardRaw(pulumi.CustomResource):
505
506
 
506
507
  @property
507
508
  @pulumi.getter
508
- def description(self) -> pulumi.Output[Optional[str]]:
509
+ def description(self) -> pulumi.Output[Optional[builtins.str]]:
509
510
  """
510
511
  Brief text describing the dashboard.
511
512
  """
@@ -513,7 +514,7 @@ class OneDashboardRaw(pulumi.CustomResource):
513
514
 
514
515
  @property
515
516
  @pulumi.getter
516
- def guid(self) -> pulumi.Output[str]:
517
+ def guid(self) -> pulumi.Output[builtins.str]:
517
518
  """
518
519
  The unique entity identifier of the dashboard page in New Relic.
519
520
  """
@@ -521,7 +522,7 @@ class OneDashboardRaw(pulumi.CustomResource):
521
522
 
522
523
  @property
523
524
  @pulumi.getter
524
- def name(self) -> pulumi.Output[str]:
525
+ def name(self) -> pulumi.Output[builtins.str]:
525
526
  """
526
527
  The title of the dashboard.
527
528
  """
@@ -537,7 +538,7 @@ class OneDashboardRaw(pulumi.CustomResource):
537
538
 
538
539
  @property
539
540
  @pulumi.getter
540
- def permalink(self) -> pulumi.Output[str]:
541
+ def permalink(self) -> pulumi.Output[builtins.str]:
541
542
  """
542
543
  The URL for viewing the dashboard.
543
544
  """
@@ -545,7 +546,7 @@ class OneDashboardRaw(pulumi.CustomResource):
545
546
 
546
547
  @property
547
548
  @pulumi.getter
548
- def permissions(self) -> pulumi.Output[Optional[str]]:
549
+ def permissions(self) -> pulumi.Output[Optional[builtins.str]]:
549
550
  """
550
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`.
551
552
  """