pulumi-newrelic 5.42.1__py3-none-any.whl → 5.58.0a1766556761__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 (92) hide show
  1. pulumi_newrelic/__init__.py +19 -1
  2. pulumi_newrelic/_inputs.py +4314 -3779
  3. pulumi_newrelic/_utilities.py +1 -1
  4. pulumi_newrelic/account_management.py +37 -36
  5. pulumi_newrelic/alert_channel.py +63 -62
  6. pulumi_newrelic/alert_condition.py +219 -218
  7. pulumi_newrelic/alert_muting_rule.py +96 -95
  8. pulumi_newrelic/alert_policy.py +71 -70
  9. pulumi_newrelic/alert_policy_channel.py +54 -53
  10. pulumi_newrelic/api_access_key.py +186 -201
  11. pulumi_newrelic/browser_application.py +115 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +2226 -2118
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +101 -96
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +71 -70
  16. pulumi_newrelic/cloud/aws_integrations.py +240 -192
  17. pulumi_newrelic/cloud/aws_link_account.py +71 -70
  18. pulumi_newrelic/cloud/azure_integrations.py +180 -132
  19. pulumi_newrelic/cloud/azure_link_account.py +105 -104
  20. pulumi_newrelic/cloud/gcp_integrations.py +115 -114
  21. pulumi_newrelic/cloud/gcp_link_account.py +56 -55
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1512 -1410
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +2 -2
  26. pulumi_newrelic/config/vars.py +15 -15
  27. pulumi_newrelic/data_partition_rule.py +114 -113
  28. pulumi_newrelic/entity_tags.py +79 -22
  29. pulumi_newrelic/events_to_metrics_rule.py +97 -96
  30. pulumi_newrelic/get_account.py +22 -22
  31. pulumi_newrelic/get_alert_channel.py +53 -21
  32. pulumi_newrelic/get_alert_policy.py +52 -26
  33. pulumi_newrelic/get_application.py +14 -14
  34. pulumi_newrelic/get_authentication_domain.py +10 -10
  35. pulumi_newrelic/get_cloud_account.py +22 -22
  36. pulumi_newrelic/get_entity.py +53 -53
  37. pulumi_newrelic/get_group.py +22 -22
  38. pulumi_newrelic/get_key_transaction.py +26 -26
  39. pulumi_newrelic/get_notification_destination.py +31 -31
  40. pulumi_newrelic/get_obfuscation_expression.py +16 -16
  41. pulumi_newrelic/get_service_level_alert_helper.py +54 -54
  42. pulumi_newrelic/get_test_grok_pattern.py +23 -23
  43. pulumi_newrelic/get_user.py +22 -22
  44. pulumi_newrelic/group.py +54 -53
  45. pulumi_newrelic/infra_alert_condition.py +257 -256
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +33 -33
  48. pulumi_newrelic/insights/event.py +6 -5
  49. pulumi_newrelic/insights/outputs.py +23 -23
  50. pulumi_newrelic/key_transaction.py +106 -105
  51. pulumi_newrelic/log_parsing_rule.py +148 -147
  52. pulumi_newrelic/monitor_downtime.py +148 -154
  53. pulumi_newrelic/notification_channel.py +218 -163
  54. pulumi_newrelic/notification_destination.py +123 -136
  55. pulumi_newrelic/nrql_alert_condition.py +513 -414
  56. pulumi_newrelic/nrql_drop_rule.py +108 -147
  57. pulumi_newrelic/obfuscation_expression.py +71 -70
  58. pulumi_newrelic/obfuscation_rule.py +91 -90
  59. pulumi_newrelic/one_dashboard.py +95 -94
  60. pulumi_newrelic/one_dashboard_json.py +64 -63
  61. pulumi_newrelic/one_dashboard_raw.py +116 -115
  62. pulumi_newrelic/outputs.py +3026 -2665
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +159 -159
  66. pulumi_newrelic/plugins/application_settings.py +186 -171
  67. pulumi_newrelic/plugins/outputs.py +109 -109
  68. pulumi_newrelic/plugins/workload.py +133 -132
  69. pulumi_newrelic/provider.py +136 -116
  70. pulumi_newrelic/pulumi-plugin.json +1 -1
  71. pulumi_newrelic/service_level.py +78 -77
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +128 -128
  74. pulumi_newrelic/synthetics/alert_condition.py +97 -96
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +218 -189
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +226 -197
  77. pulumi_newrelic/synthetics/get_private_location.py +22 -22
  78. pulumi_newrelic/synthetics/get_secure_credential.py +20 -20
  79. pulumi_newrelic/synthetics/monitor.py +399 -370
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +120 -119
  81. pulumi_newrelic/synthetics/outputs.py +86 -86
  82. pulumi_newrelic/synthetics/private_location.py +107 -106
  83. pulumi_newrelic/synthetics/script_monitor.py +385 -294
  84. pulumi_newrelic/synthetics/secure_credential.py +88 -87
  85. pulumi_newrelic/synthetics/step_monitor.py +241 -212
  86. pulumi_newrelic/user.py +71 -70
  87. pulumi_newrelic/workflow.py +141 -140
  88. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/METADATA +4 -4
  89. pulumi_newrelic-5.58.0a1766556761.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.42.1.dist-info/RECORD +0 -90
  92. {pulumi_newrelic-5.42.1.dist-info → pulumi_newrelic-5.58.0a1766556761.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 as _builtins
5
6
  from .. import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -29,11 +29,11 @@ if not MYPY:
29
29
  """
30
30
  An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
31
31
  """
32
- type: pulumi.Input[str]
32
+ type: pulumi.Input[_builtins.str]
33
33
  """
34
34
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
35
35
  """
36
- timestamp: NotRequired[pulumi.Input[int]]
36
+ timestamp: NotRequired[pulumi.Input[_builtins.int]]
37
37
  """
38
38
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
39
39
  """
@@ -44,19 +44,19 @@ elif False:
44
44
  class EventEventArgs:
45
45
  def __init__(__self__, *,
46
46
  attributes: pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]],
47
- type: pulumi.Input[str],
48
- timestamp: Optional[pulumi.Input[int]] = None):
47
+ type: pulumi.Input[_builtins.str],
48
+ timestamp: Optional[pulumi.Input[_builtins.int]] = None):
49
49
  """
50
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.
51
- :param pulumi.Input[str] type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
52
- :param pulumi.Input[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.
53
53
  """
54
54
  pulumi.set(__self__, "attributes", attributes)
55
55
  pulumi.set(__self__, "type", type)
56
56
  if timestamp is not None:
57
57
  pulumi.set(__self__, "timestamp", timestamp)
58
58
 
59
- @property
59
+ @_builtins.property
60
60
  @pulumi.getter
61
61
  def attributes(self) -> pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]]:
62
62
  """
@@ -68,42 +68,42 @@ class EventEventArgs:
68
68
  def attributes(self, value: pulumi.Input[Sequence[pulumi.Input['EventEventAttributeArgs']]]):
69
69
  pulumi.set(self, "attributes", value)
70
70
 
71
- @property
71
+ @_builtins.property
72
72
  @pulumi.getter
73
- def type(self) -> pulumi.Input[str]:
73
+ def type(self) -> pulumi.Input[_builtins.str]:
74
74
  """
75
75
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
76
76
  """
77
77
  return pulumi.get(self, "type")
78
78
 
79
79
  @type.setter
80
- def type(self, value: pulumi.Input[str]):
80
+ def type(self, value: pulumi.Input[_builtins.str]):
81
81
  pulumi.set(self, "type", value)
82
82
 
83
- @property
83
+ @_builtins.property
84
84
  @pulumi.getter
85
- def timestamp(self) -> Optional[pulumi.Input[int]]:
85
+ def timestamp(self) -> Optional[pulumi.Input[_builtins.int]]:
86
86
  """
87
87
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
88
88
  """
89
89
  return pulumi.get(self, "timestamp")
90
90
 
91
91
  @timestamp.setter
92
- def timestamp(self, value: Optional[pulumi.Input[int]]):
92
+ def timestamp(self, value: Optional[pulumi.Input[_builtins.int]]):
93
93
  pulumi.set(self, "timestamp", value)
94
94
 
95
95
 
96
96
  if not MYPY:
97
97
  class EventEventAttributeArgsDict(TypedDict):
98
- key: pulumi.Input[str]
98
+ key: pulumi.Input[_builtins.str]
99
99
  """
100
100
  The name of the attribute.
101
101
  """
102
- value: pulumi.Input[str]
102
+ value: pulumi.Input[_builtins.str]
103
103
  """
104
104
  The value of the attribute.
105
105
  """
106
- type: NotRequired[pulumi.Input[str]]
106
+ type: NotRequired[pulumi.Input[_builtins.str]]
107
107
  """
108
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.
109
109
  """
@@ -113,53 +113,53 @@ elif False:
113
113
  @pulumi.input_type
114
114
  class EventEventAttributeArgs:
115
115
  def __init__(__self__, *,
116
- key: pulumi.Input[str],
117
- value: pulumi.Input[str],
118
- type: Optional[pulumi.Input[str]] = None):
116
+ key: pulumi.Input[_builtins.str],
117
+ value: pulumi.Input[_builtins.str],
118
+ type: Optional[pulumi.Input[_builtins.str]] = None):
119
119
  """
120
- :param pulumi.Input[str] key: The name of the attribute.
121
- :param pulumi.Input[str] value: The value of the attribute.
122
- :param pulumi.Input[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.
123
123
  """
124
124
  pulumi.set(__self__, "key", key)
125
125
  pulumi.set(__self__, "value", value)
126
126
  if type is not None:
127
127
  pulumi.set(__self__, "type", type)
128
128
 
129
- @property
129
+ @_builtins.property
130
130
  @pulumi.getter
131
- def key(self) -> pulumi.Input[str]:
131
+ def key(self) -> pulumi.Input[_builtins.str]:
132
132
  """
133
133
  The name of the attribute.
134
134
  """
135
135
  return pulumi.get(self, "key")
136
136
 
137
137
  @key.setter
138
- def key(self, value: pulumi.Input[str]):
138
+ def key(self, value: pulumi.Input[_builtins.str]):
139
139
  pulumi.set(self, "key", value)
140
140
 
141
- @property
141
+ @_builtins.property
142
142
  @pulumi.getter
143
- def value(self) -> pulumi.Input[str]:
143
+ def value(self) -> pulumi.Input[_builtins.str]:
144
144
  """
145
145
  The value of the attribute.
146
146
  """
147
147
  return pulumi.get(self, "value")
148
148
 
149
149
  @value.setter
150
- def value(self, value: pulumi.Input[str]):
150
+ def value(self, value: pulumi.Input[_builtins.str]):
151
151
  pulumi.set(self, "value", value)
152
152
 
153
- @property
153
+ @_builtins.property
154
154
  @pulumi.getter
155
- def type(self) -> Optional[pulumi.Input[str]]:
155
+ def type(self) -> Optional[pulumi.Input[_builtins.str]]:
156
156
  """
157
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.
158
158
  """
159
159
  return pulumi.get(self, "type")
160
160
 
161
161
  @type.setter
162
- def type(self, value: Optional[pulumi.Input[str]]):
162
+ def type(self, value: Optional[pulumi.Input[_builtins.str]]):
163
163
  pulumi.set(self, "type", value)
164
164
 
165
165
 
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -28,7 +28,7 @@ class EventArgs:
28
28
  """
29
29
  pulumi.set(__self__, "events", events)
30
30
 
31
- @property
31
+ @_builtins.property
32
32
  @pulumi.getter
33
33
  def events(self) -> pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]:
34
34
  """
@@ -52,7 +52,7 @@ class _EventState:
52
52
  if events is not None:
53
53
  pulumi.set(__self__, "events", events)
54
54
 
55
- @property
55
+ @_builtins.property
56
56
  @pulumi.getter
57
57
  def events(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EventEventArgs']]]]:
58
58
  """
@@ -65,6 +65,7 @@ class _EventState:
65
65
  pulumi.set(self, "events", value)
66
66
 
67
67
 
68
+ @pulumi.type_token("newrelic:insights/event:Event")
68
69
  class Event(pulumi.CustomResource):
69
70
  @overload
70
71
  def __init__(__self__,
@@ -231,7 +232,7 @@ class Event(pulumi.CustomResource):
231
232
  __props__.__dict__["events"] = events
232
233
  return Event(resource_name, opts=opts, __props__=__props__)
233
234
 
234
- @property
235
+ @_builtins.property
235
236
  @pulumi.getter
236
237
  def events(self) -> pulumi.Output[Sequence['outputs.EventEvent']]:
237
238
  """
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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 copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -24,19 +24,19 @@ __all__ = [
24
24
  class EventEvent(dict):
25
25
  def __init__(__self__, *,
26
26
  attributes: Sequence['outputs.EventEventAttribute'],
27
- type: str,
28
- timestamp: Optional[int] = None):
27
+ type: _builtins.str,
28
+ timestamp: Optional[_builtins.int] = None):
29
29
  """
30
30
  :param Sequence['EventEventAttributeArgs'] attributes: An attribute to include in your event payload. Multiple attribute blocks can be defined for an event.
31
- :param str type: The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
32
- :param 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.
33
33
  """
34
34
  pulumi.set(__self__, "attributes", attributes)
35
35
  pulumi.set(__self__, "type", type)
36
36
  if timestamp is not None:
37
37
  pulumi.set(__self__, "timestamp", timestamp)
38
38
 
39
- @property
39
+ @_builtins.property
40
40
  @pulumi.getter
41
41
  def attributes(self) -> Sequence['outputs.EventEventAttribute']:
42
42
  """
@@ -44,17 +44,17 @@ class EventEvent(dict):
44
44
  """
45
45
  return pulumi.get(self, "attributes")
46
46
 
47
- @property
47
+ @_builtins.property
48
48
  @pulumi.getter
49
- def type(self) -> str:
49
+ def type(self) -> _builtins.str:
50
50
  """
51
51
  The event's name. Can be a combination of alphanumeric characters, underscores, and colons.
52
52
  """
53
53
  return pulumi.get(self, "type")
54
54
 
55
- @property
55
+ @_builtins.property
56
56
  @pulumi.getter
57
- def timestamp(self) -> Optional[int]:
57
+ def timestamp(self) -> Optional[_builtins.int]:
58
58
  """
59
59
  Must be a Unix epoch timestamp. You can define timestamps either in seconds or in milliseconds.
60
60
  """
@@ -64,38 +64,38 @@ class EventEvent(dict):
64
64
  @pulumi.output_type
65
65
  class EventEventAttribute(dict):
66
66
  def __init__(__self__, *,
67
- key: str,
68
- value: str,
69
- type: Optional[str] = None):
67
+ key: _builtins.str,
68
+ value: _builtins.str,
69
+ type: Optional[_builtins.str] = None):
70
70
  """
71
- :param str key: The name of the attribute.
72
- :param str value: The value of the attribute.
73
- :param 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.
74
74
  """
75
75
  pulumi.set(__self__, "key", key)
76
76
  pulumi.set(__self__, "value", value)
77
77
  if type is not None:
78
78
  pulumi.set(__self__, "type", type)
79
79
 
80
- @property
80
+ @_builtins.property
81
81
  @pulumi.getter
82
- def key(self) -> str:
82
+ def key(self) -> _builtins.str:
83
83
  """
84
84
  The name of the attribute.
85
85
  """
86
86
  return pulumi.get(self, "key")
87
87
 
88
- @property
88
+ @_builtins.property
89
89
  @pulumi.getter
90
- def value(self) -> str:
90
+ def value(self) -> _builtins.str:
91
91
  """
92
92
  The value of the attribute.
93
93
  """
94
94
  return pulumi.get(self, "value")
95
95
 
96
- @property
96
+ @_builtins.property
97
97
  @pulumi.getter
98
- def type(self) -> Optional[str]:
98
+ def type(self) -> Optional[_builtins.str]:
99
99
  """
100
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.
101
101
  """