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