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,7 +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
5
+ import builtins as _builtins
6
6
  from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
@@ -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
@@ -30,11 +29,11 @@ if not MYPY:
30
29
  """
31
30
  An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
32
31
  """
33
- type: pulumi.Input[builtins.str]
32
+ type: pulumi.Input[_builtins.str]
34
33
  """
35
34
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
36
35
  """
37
- timestamp: NotRequired[pulumi.Input[builtins.int]]
36
+ timestamp: NotRequired[pulumi.Input[_builtins.int]]
38
37
  """
39
38
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
40
39
  """
@@ -45,19 +44,19 @@ elif False:
45
44
  class EventEventArgs:
46
45
  def __init__(__self__, *,
47
46
  attributes: pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]],
48
- type: pulumi.Input[builtins.str],
49
- timestamp: Optional[pulumi.Input[builtins.int]] = None):
47
+ type: pulumi.Input[_builtins.str],
48
+ timestamp: Optional[pulumi.Input[_builtins.int]] = None):
50
49
  """
51
50
  :param pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]] attributes: An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
52
- :param pulumi.Input[builtins.str] type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
53
- :param pulumi.Input[builtins.int] timestamp: Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
51
+ :param pulumi.Input[_builtins.str] type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
52
+ :param pulumi.Input[_builtins.int] timestamp: Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
54
53
  """
55
54
  pulumi.set(__self__, "attributes", attributes)
56
55
  pulumi.set(__self__, "type", type)
57
56
  if timestamp is not None:
58
57
  pulumi.set(__self__, "timestamp", timestamp)
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter
62
61
  def attributes(self) -> pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]]:
63
62
  """
@@ -69,42 +68,42 @@ class EventEventArgs:
69
68
  def attributes(self, value: pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]]):
70
69
  pulumi.set(self, "attributes", value)
71
70
 
72
- @property
71
+ @_builtins.property
73
72
  @pulumi.getter
74
- def type(self) -> pulumi.Input[builtins.str]:
73
+ def type(self) -> pulumi.Input[_builtins.str]:
75
74
  """
76
75
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
77
76
  """
78
77
  return pulumi.get(self, "type")
79
78
 
80
79
  @type.setter
81
- def type(self, value: pulumi.Input[builtins.str]):
80
+ def type(self, value: pulumi.Input[_builtins.str]):
82
81
  pulumi.set(self, "type", value)
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter
86
- def timestamp(self) -> Optional[pulumi.Input[builtins.int]]:
85
+ def timestamp(self) -> Optional[pulumi.Input[_builtins.int]]:
87
86
  """
88
87
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
89
88
  """
90
89
  return pulumi.get(self, "timestamp")
91
90
 
92
91
  @timestamp.setter
93
- def timestamp(self, value: Optional[pulumi.Input[builtins.int]]):
92
+ def timestamp(self, value: Optional[pulumi.Input[_builtins.int]]):
94
93
  pulumi.set(self, "timestamp", value)
95
94
 
96
95
 
97
96
  if not MYPY:
98
97
  class EventEventAttributeArgsDict(TypedDict):
99
- key: pulumi.Input[builtins.str]
98
+ key: pulumi.Input[_builtins.str]
100
99
  """
101
100
  The name of the attribute.
102
101
  """
103
- value: pulumi.Input[builtins.str]
102
+ value: pulumi.Input[_builtins.str]
104
103
  """
105
104
  The value of the attribute.
106
105
  """
107
- type: NotRequired[pulumi.Input[builtins.str]]
106
+ type: NotRequired[pulumi.Input[_builtins.str]]
108
107
  """
109
108
  Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
110
109
  """
@@ -114,53 +113,53 @@ elif False:
114
113
  @pulumi.input_type
115
114
  class EventEventAttributeArgs:
116
115
  def __init__(__self__, *,
117
- key: pulumi.Input[builtins.str],
118
- value: pulumi.Input[builtins.str],
119
- type: Optional[pulumi.Input[builtins.str]] = None):
116
+ key: pulumi.Input[_builtins.str],
117
+ value: pulumi.Input[_builtins.str],
118
+ type: Optional[pulumi.Input[_builtins.str]] = None):
120
119
  """
121
- :param pulumi.Input[builtins.str] key: The name of the attribute.
122
- :param pulumi.Input[builtins.str] value: The value of the attribute.
123
- :param pulumi.Input[builtins.str] type: Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
120
+ :param pulumi.Input[_builtins.str] key: The name of the attribute.
121
+ :param pulumi.Input[_builtins.str] value: The value of the attribute.
122
+ :param pulumi.Input[_builtins.str] type: Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
124
123
  """
125
124
  pulumi.set(__self__, "key", key)
126
125
  pulumi.set(__self__, "value", value)
127
126
  if type is not None:
128
127
  pulumi.set(__self__, "type", type)
129
128
 
130
- @property
129
+ @_builtins.property
131
130
  @pulumi.getter
132
- def key(self) -> pulumi.Input[builtins.str]:
131
+ def key(self) -> pulumi.Input[_builtins.str]:
133
132
  """
134
133
  The name of the attribute.
135
134
  """
136
135
  return pulumi.get(self, "key")
137
136
 
138
137
  @key.setter
139
- def key(self, value: pulumi.Input[builtins.str]):
138
+ def key(self, value: pulumi.Input[_builtins.str]):
140
139
  pulumi.set(self, "key", value)
141
140
 
142
- @property
141
+ @_builtins.property
143
142
  @pulumi.getter
144
- def value(self) -> pulumi.Input[builtins.str]:
143
+ def value(self) -> pulumi.Input[_builtins.str]:
145
144
  """
146
145
  The value of the attribute.
147
146
  """
148
147
  return pulumi.get(self, "value")
149
148
 
150
149
  @value.setter
151
- def value(self, value: pulumi.Input[builtins.str]):
150
+ def value(self, value: pulumi.Input[_builtins.str]):
152
151
  pulumi.set(self, "value", value)
153
152
 
154
- @property
153
+ @_builtins.property
155
154
  @pulumi.getter
156
- def type(self) -> Optional[pulumi.Input[builtins.str]]:
155
+ def type(self) -> Optional[pulumi.Input[_builtins.str]]:
157
156
  """
158
157
  Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
159
158
  """
160
159
  return pulumi.get(self, "type")
161
160
 
162
161
  @type.setter
163
- def type(self, value: Optional[pulumi.Input[builtins.str]]):
162
+ def type(self, value: Optional[pulumi.Input[_builtins.str]]):
164
163
  pulumi.set(self, "type", value)
165
164
 
166
165
 
@@ -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
@@ -29,7 +28,7 @@ class EventArgs:
29
28
  """
30
29
  pulumi.set(__self__, "events", events)
31
30
 
32
- @property
31
+ @_builtins.property
33
32
  @pulumi.getter
34
33
  def events(self) -> pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]:
35
34
  """
@@ -53,7 +52,7 @@ class _EventState:
53
52
  if events is not None:
54
53
  pulumi.set(__self__, "events", events)
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter
58
57
  def events(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]]:
59
58
  """
@@ -233,7 +232,7 @@ class Event(pulumi.CustomResource):
233
232
  __props__.__dict__["events"] = events
234
233
  return Event(resource_name, opts=opts, __props__=__props__)
235
234
 
236
- @property
235
+ @_builtins.property
237
236
  @pulumi.getter
238
237
  def events(self) -> pulumi.Output[Sequence['outputs.EventEvent']]:
239
238
  """
@@ -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
@@ -25,19 +24,19 @@ __all__ = [
25
24
  class EventEvent(dict):
26
25
  def __init__(__self__, *,
27
26
  attributes: Sequence['outputs.EventEventAttribute'],
28
- type: builtins.str,
29
- timestamp: Optional[builtins.int] = None):
27
+ type: _builtins.str,
28
+ timestamp: Optional[_builtins.int] = None):
30
29
  """
31
30
  :param Sequence['EventEventAttributeArgs'] attributes: An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
32
- :param builtins.str type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
33
- :param builtins.int timestamp: Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
31
+ :param _builtins.str type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
32
+ :param _builtins.int timestamp: Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
34
33
  """
35
34
  pulumi.set(__self__, "attributes", attributes)
36
35
  pulumi.set(__self__, "type", type)
37
36
  if timestamp is not None:
38
37
  pulumi.set(__self__, "timestamp", timestamp)
39
38
 
40
- @property
39
+ @_builtins.property
41
40
  @pulumi.getter
42
41
  def attributes(self) -> Sequence['outputs.EventEventAttribute']:
43
42
  """
@@ -45,17 +44,17 @@ class EventEvent(dict):
45
44
  """
46
45
  return pulumi.get(self, "attributes")
47
46
 
48
- @property
47
+ @_builtins.property
49
48
  @pulumi.getter
50
- def type(self) -> builtins.str:
49
+ def type(self) -> _builtins.str:
51
50
  """
52
51
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
53
52
  """
54
53
  return pulumi.get(self, "type")
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter
58
- def timestamp(self) -> Optional[builtins.int]:
57
+ def timestamp(self) -> Optional[_builtins.int]:
59
58
  """
60
59
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
61
60
  """
@@ -65,38 +64,38 @@ class EventEvent(dict):
65
64
  @pulumi.output_type
66
65
  class EventEventAttribute(dict):
67
66
  def __init__(__self__, *,
68
- key: builtins.str,
69
- value: builtins.str,
70
- type: Optional[builtins.str] = None):
67
+ key: _builtins.str,
68
+ value: _builtins.str,
69
+ type: Optional[_builtins.str] = None):
71
70
  """
72
- :param builtins.str key: The name of the attribute.
73
- :param builtins.str value: The value of the attribute.
74
- :param builtins.str type: Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
71
+ :param _builtins.str key: The name of the attribute.
72
+ :param _builtins.str value: The value of the attribute.
73
+ :param _builtins.str type: Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
75
74
  """
76
75
  pulumi.set(__self__, "key", key)
77
76
  pulumi.set(__self__, "value", value)
78
77
  if type is not None:
79
78
  pulumi.set(__self__, "type", type)
80
79
 
81
- @property
80
+ @_builtins.property
82
81
  @pulumi.getter
83
- def key(self) -> builtins.str:
82
+ def key(self) -> _builtins.str:
84
83
  """
85
84
  The name of the attribute.
86
85
  """
87
86
  return pulumi.get(self, "key")
88
87
 
89
- @property
88
+ @_builtins.property
90
89
  @pulumi.getter
91
- def value(self) -> builtins.str:
90
+ def value(self) -> _builtins.str:
92
91
  """
93
92
  The value of the attribute.
94
93
  """
95
94
  return pulumi.get(self, "value")
96
95
 
97
- @property
96
+ @_builtins.property
98
97
  @pulumi.getter
99
- def type(self) -> Optional[builtins.str]:
98
+ def type(self) -> Optional[_builtins.str]:
100
99
  """
101
100
  Specify the type for the attribute value. This is useful when passing integer or float values to Insights. Allowed values are string, int, or float. Defaults to string.
102
101
  """