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
pulumi_newrelic/group.py CHANGED
@@ -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
@@ -20,14 +19,14 @@ __all__ = ['GroupArgs', 'Group']
20
19
  @pulumi.input_type
21
20
  class GroupArgs:
22
21
  def __init__(__self__, *,
23
- authentication_domain_id: pulumi.Input[builtins.str],
24
- name: Optional[pulumi.Input[builtins.str]] = None,
25
- user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
22
+ authentication_domain_id: pulumi.Input[_builtins.str],
23
+ name: Optional[pulumi.Input[_builtins.str]] = None,
24
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
26
25
  """
27
26
  The set of arguments for constructing a Group resource.
28
- :param pulumi.Input[builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
29
- :param pulumi.Input[builtins.str] name: The name of the group to be created.
30
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
27
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
28
+ :param pulumi.Input[_builtins.str] name: The name of the group to be created.
29
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
31
30
 
32
31
  > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
33
32
 
@@ -39,33 +38,33 @@ class GroupArgs:
39
38
  if user_ids is not None:
40
39
  pulumi.set(__self__, "user_ids", user_ids)
41
40
 
42
- @property
41
+ @_builtins.property
43
42
  @pulumi.getter(name="authenticationDomainId")
44
- def authentication_domain_id(self) -> pulumi.Input[builtins.str]:
43
+ def authentication_domain_id(self) -> pulumi.Input[_builtins.str]:
45
44
  """
46
45
  The ID of the authentication domain to which the group to be created would belong.
47
46
  """
48
47
  return pulumi.get(self, "authentication_domain_id")
49
48
 
50
49
  @authentication_domain_id.setter
51
- def authentication_domain_id(self, value: pulumi.Input[builtins.str]):
50
+ def authentication_domain_id(self, value: pulumi.Input[_builtins.str]):
52
51
  pulumi.set(self, "authentication_domain_id", value)
53
52
 
54
- @property
53
+ @_builtins.property
55
54
  @pulumi.getter
56
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
55
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
57
56
  """
58
57
  The name of the group to be created.
59
58
  """
60
59
  return pulumi.get(self, "name")
61
60
 
62
61
  @name.setter
63
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
62
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
64
63
  pulumi.set(self, "name", value)
65
64
 
66
- @property
65
+ @_builtins.property
67
66
  @pulumi.getter(name="userIds")
68
- def user_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
67
+ def user_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
69
68
  """
70
69
  A list of IDs of users to be included in the group to be created.
71
70
 
@@ -76,21 +75,21 @@ class GroupArgs:
76
75
  return pulumi.get(self, "user_ids")
77
76
 
78
77
  @user_ids.setter
79
- def user_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
78
+ def user_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
80
79
  pulumi.set(self, "user_ids", value)
81
80
 
82
81
 
83
82
  @pulumi.input_type
84
83
  class _GroupState:
85
84
  def __init__(__self__, *,
86
- authentication_domain_id: Optional[pulumi.Input[builtins.str]] = None,
87
- name: Optional[pulumi.Input[builtins.str]] = None,
88
- user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
85
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
86
+ name: Optional[pulumi.Input[_builtins.str]] = None,
87
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
89
88
  """
90
89
  Input properties used for looking up and filtering Group resources.
91
- :param pulumi.Input[builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
92
- :param pulumi.Input[builtins.str] name: The name of the group to be created.
93
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
90
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
91
+ :param pulumi.Input[_builtins.str] name: The name of the group to be created.
92
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
94
93
 
95
94
  > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
96
95
 
@@ -103,33 +102,33 @@ class _GroupState:
103
102
  if user_ids is not None:
104
103
  pulumi.set(__self__, "user_ids", user_ids)
105
104
 
106
- @property
105
+ @_builtins.property
107
106
  @pulumi.getter(name="authenticationDomainId")
108
- def authentication_domain_id(self) -> Optional[pulumi.Input[builtins.str]]:
107
+ def authentication_domain_id(self) -> Optional[pulumi.Input[_builtins.str]]:
109
108
  """
110
109
  The ID of the authentication domain to which the group to be created would belong.
111
110
  """
112
111
  return pulumi.get(self, "authentication_domain_id")
113
112
 
114
113
  @authentication_domain_id.setter
115
- def authentication_domain_id(self, value: Optional[pulumi.Input[builtins.str]]):
114
+ def authentication_domain_id(self, value: Optional[pulumi.Input[_builtins.str]]):
116
115
  pulumi.set(self, "authentication_domain_id", value)
117
116
 
118
- @property
117
+ @_builtins.property
119
118
  @pulumi.getter
120
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
119
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
121
120
  """
122
121
  The name of the group to be created.
123
122
  """
124
123
  return pulumi.get(self, "name")
125
124
 
126
125
  @name.setter
127
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
126
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
128
127
  pulumi.set(self, "name", value)
129
128
 
130
- @property
129
+ @_builtins.property
131
130
  @pulumi.getter(name="userIds")
132
- def user_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
131
+ def user_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
133
132
  """
134
133
  A list of IDs of users to be included in the group to be created.
135
134
 
@@ -140,7 +139,7 @@ class _GroupState:
140
139
  return pulumi.get(self, "user_ids")
141
140
 
142
141
  @user_ids.setter
143
- def user_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
142
+ def user_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
144
143
  pulumi.set(self, "user_ids", value)
145
144
 
146
145
 
@@ -150,9 +149,9 @@ class Group(pulumi.CustomResource):
150
149
  def __init__(__self__,
151
150
  resource_name: str,
152
151
  opts: Optional[pulumi.ResourceOptions] = None,
153
- authentication_domain_id: Optional[pulumi.Input[builtins.str]] = None,
154
- name: Optional[pulumi.Input[builtins.str]] = None,
155
- user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
152
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
153
+ name: Optional[pulumi.Input[_builtins.str]] = None,
154
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
156
155
  __props__=None):
157
156
  """
158
157
  ## Import
@@ -165,9 +164,9 @@ class Group(pulumi.CustomResource):
165
164
 
166
165
  :param str resource_name: The name of the resource.
167
166
  :param pulumi.ResourceOptions opts: Options for the resource.
168
- :param pulumi.Input[builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
169
- :param pulumi.Input[builtins.str] name: The name of the group to be created.
170
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
167
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
168
+ :param pulumi.Input[_builtins.str] name: The name of the group to be created.
169
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
171
170
 
172
171
  > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
173
172
 
@@ -203,9 +202,9 @@ class Group(pulumi.CustomResource):
203
202
  def _internal_init(__self__,
204
203
  resource_name: str,
205
204
  opts: Optional[pulumi.ResourceOptions] = None,
206
- authentication_domain_id: Optional[pulumi.Input[builtins.str]] = None,
207
- name: Optional[pulumi.Input[builtins.str]] = None,
208
- user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
205
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
206
+ name: Optional[pulumi.Input[_builtins.str]] = None,
207
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
209
208
  __props__=None):
210
209
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
211
210
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -230,9 +229,9 @@ class Group(pulumi.CustomResource):
230
229
  def get(resource_name: str,
231
230
  id: pulumi.Input[str],
232
231
  opts: Optional[pulumi.ResourceOptions] = None,
233
- authentication_domain_id: Optional[pulumi.Input[builtins.str]] = None,
234
- name: Optional[pulumi.Input[builtins.str]] = None,
235
- user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None) -> 'Group':
232
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
233
+ name: Optional[pulumi.Input[_builtins.str]] = None,
234
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None) -> 'Group':
236
235
  """
237
236
  Get an existing Group resource's state with the given name, id, and optional extra
238
237
  properties used to qualify the lookup.
@@ -240,9 +239,9 @@ class Group(pulumi.CustomResource):
240
239
  :param str resource_name: The unique name of the resulting resource.
241
240
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
242
241
  :param pulumi.ResourceOptions opts: Options for the resource.
243
- :param pulumi.Input[builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
244
- :param pulumi.Input[builtins.str] name: The name of the group to be created.
245
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
242
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the group to be created would belong.
243
+ :param pulumi.Input[_builtins.str] name: The name of the group to be created.
244
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] user_ids: A list of IDs of users to be included in the group to be created.
246
245
 
247
246
  > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
248
247
 
@@ -257,25 +256,25 @@ class Group(pulumi.CustomResource):
257
256
  __props__.__dict__["user_ids"] = user_ids
258
257
  return Group(resource_name, opts=opts, __props__=__props__)
259
258
 
260
- @property
259
+ @_builtins.property
261
260
  @pulumi.getter(name="authenticationDomainId")
262
- def authentication_domain_id(self) -> pulumi.Output[builtins.str]:
261
+ def authentication_domain_id(self) -> pulumi.Output[_builtins.str]:
263
262
  """
264
263
  The ID of the authentication domain to which the group to be created would belong.
265
264
  """
266
265
  return pulumi.get(self, "authentication_domain_id")
267
266
 
268
- @property
267
+ @_builtins.property
269
268
  @pulumi.getter
270
- def name(self) -> pulumi.Output[builtins.str]:
269
+ def name(self) -> pulumi.Output[_builtins.str]:
271
270
  """
272
271
  The name of the group to be created.
273
272
  """
274
273
  return pulumi.get(self, "name")
275
274
 
276
- @property
275
+ @_builtins.property
277
276
  @pulumi.getter(name="userIds")
278
- def user_ids(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
277
+ def user_ids(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
279
278
  """
280
279
  A list of IDs of users to be included in the group to be created.
281
280