pulumi-newrelic 5.48.0a1753156041__py3-none-any.whl → 5.49.0a1753398082__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.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.49.0a1753398082.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.48.0a1753156041.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.48.0a1753156041.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/top_level.txt +0 -0
@@ -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
@@ -41,30 +40,30 @@ class GetPrivateLocationResult:
41
40
  raise TypeError("Expected argument 'name' to be a str")
42
41
  pulumi.set(__self__, "name", name)
43
42
 
44
- @property
43
+ @_builtins.property
45
44
  @pulumi.getter(name="accountId")
46
- def account_id(self) -> Optional[builtins.str]:
45
+ def account_id(self) -> Optional[_builtins.str]:
47
46
  return pulumi.get(self, "account_id")
48
47
 
49
- @property
48
+ @_builtins.property
50
49
  @pulumi.getter
51
- def id(self) -> builtins.str:
50
+ def id(self) -> _builtins.str:
52
51
  """
53
52
  The provider-assigned unique ID for this managed resource.
54
53
  """
55
54
  return pulumi.get(self, "id")
56
55
 
57
- @property
56
+ @_builtins.property
58
57
  @pulumi.getter
59
- def keys(self) -> Sequence[builtins.str]:
58
+ def keys(self) -> Sequence[_builtins.str]:
60
59
  """
61
60
  The key of the private location.
62
61
  """
63
62
  return pulumi.get(self, "keys")
64
63
 
65
- @property
64
+ @_builtins.property
66
65
  @pulumi.getter
67
- def name(self) -> builtins.str:
66
+ def name(self) -> _builtins.str:
68
67
  return pulumi.get(self, "name")
69
68
 
70
69
 
@@ -80,9 +79,9 @@ class AwaitableGetPrivateLocationResult(GetPrivateLocationResult):
80
79
  name=self.name)
81
80
 
82
81
 
83
- def get_private_location(account_id: Optional[builtins.str] = None,
84
- keys: Optional[Sequence[builtins.str]] = None,
85
- name: Optional[builtins.str] = None,
82
+ def get_private_location(account_id: Optional[_builtins.str] = None,
83
+ keys: Optional[Sequence[_builtins.str]] = None,
84
+ name: Optional[_builtins.str] = None,
86
85
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateLocationResult:
87
86
  """
88
87
  Use this data source to get information about a specific Synthetics monitor private location in New Relic that already exists.
@@ -110,9 +109,9 @@ def get_private_location(account_id: Optional[builtins.str] = None,
110
109
  ```
111
110
 
112
111
 
113
- :param builtins.str account_id: The New Relic account ID of the associated private location. If left empty will default to account ID specified in provider level configuration.
114
- :param Sequence[builtins.str] keys: The key of the private location.
115
- :param builtins.str name: The name of the Synthetics monitor private location.
112
+ :param _builtins.str account_id: The New Relic account ID of the associated private location. If left empty will default to account ID specified in provider level configuration.
113
+ :param Sequence[_builtins.str] keys: The key of the private location.
114
+ :param _builtins.str name: The name of the Synthetics monitor private location.
116
115
  """
117
116
  __args__ = dict()
118
117
  __args__['accountId'] = account_id
@@ -126,9 +125,9 @@ def get_private_location(account_id: Optional[builtins.str] = None,
126
125
  id=pulumi.get(__ret__, 'id'),
127
126
  keys=pulumi.get(__ret__, 'keys'),
128
127
  name=pulumi.get(__ret__, 'name'))
129
- def get_private_location_output(account_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
130
- keys: Optional[pulumi.Input[Optional[Sequence[builtins.str]]]] = None,
131
- name: Optional[pulumi.Input[builtins.str]] = None,
128
+ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
129
+ keys: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
130
+ name: Optional[pulumi.Input[_builtins.str]] = None,
132
131
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPrivateLocationResult]:
133
132
  """
134
133
  Use this data source to get information about a specific Synthetics monitor private location in New Relic that already exists.
@@ -156,9 +155,9 @@ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[built
156
155
  ```
157
156
 
158
157
 
159
- :param builtins.str account_id: The New Relic account ID of the associated private location. If left empty will default to account ID specified in provider level configuration.
160
- :param Sequence[builtins.str] keys: The key of the private location.
161
- :param builtins.str name: The name of the Synthetics monitor private location.
158
+ :param _builtins.str account_id: The New Relic account ID of the associated private location. If left empty will default to account ID specified in provider level configuration.
159
+ :param Sequence[_builtins.str] keys: The key of the private location.
160
+ :param _builtins.str name: The name of the Synthetics monitor private location.
162
161
  """
163
162
  __args__ = dict()
164
163
  __args__['accountId'] = account_id
@@ -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
@@ -44,35 +43,35 @@ class GetSecureCredentialResult:
44
43
  raise TypeError("Expected argument 'last_updated' to be a str")
45
44
  pulumi.set(__self__, "last_updated", last_updated)
46
45
 
47
- @property
46
+ @_builtins.property
48
47
  @pulumi.getter(name="accountId")
49
- def account_id(self) -> builtins.str:
48
+ def account_id(self) -> _builtins.str:
50
49
  return pulumi.get(self, "account_id")
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  @pulumi.getter
54
- def description(self) -> builtins.str:
53
+ def description(self) -> _builtins.str:
55
54
  """
56
55
  The secure credential's description.
57
56
  """
58
57
  return pulumi.get(self, "description")
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter
62
- def id(self) -> builtins.str:
61
+ def id(self) -> _builtins.str:
63
62
  """
64
63
  The provider-assigned unique ID for this managed resource.
65
64
  """
66
65
  return pulumi.get(self, "id")
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter
70
- def key(self) -> builtins.str:
69
+ def key(self) -> _builtins.str:
71
70
  return pulumi.get(self, "key")
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  @pulumi.getter(name="lastUpdated")
75
- def last_updated(self) -> builtins.str:
74
+ def last_updated(self) -> _builtins.str:
76
75
  """
77
76
  The time the secure credential was last updated.
78
77
  """
@@ -92,8 +91,8 @@ class AwaitableGetSecureCredentialResult(GetSecureCredentialResult):
92
91
  last_updated=self.last_updated)
93
92
 
94
93
 
95
- def get_secure_credential(account_id: Optional[builtins.str] = None,
96
- key: Optional[builtins.str] = None,
94
+ def get_secure_credential(account_id: Optional[_builtins.str] = None,
95
+ key: Optional[_builtins.str] = None,
97
96
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecureCredentialResult:
98
97
  """
99
98
  Use this data source to get information about a specific Synthetics secure credential in New Relic that already exists.
@@ -110,8 +109,8 @@ def get_secure_credential(account_id: Optional[builtins.str] = None,
110
109
  ```
111
110
 
112
111
 
113
- :param builtins.str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
114
- :param builtins.str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
112
+ :param _builtins.str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
113
+ :param _builtins.str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
115
114
  """
116
115
  __args__ = dict()
117
116
  __args__['accountId'] = account_id
@@ -125,8 +124,8 @@ def get_secure_credential(account_id: Optional[builtins.str] = None,
125
124
  id=pulumi.get(__ret__, 'id'),
126
125
  key=pulumi.get(__ret__, 'key'),
127
126
  last_updated=pulumi.get(__ret__, 'last_updated'))
128
- def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
129
- key: Optional[pulumi.Input[builtins.str]] = None,
127
+ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
128
+ key: Optional[pulumi.Input[_builtins.str]] = None,
130
129
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecureCredentialResult]:
131
130
  """
132
131
  Use this data source to get information about a specific Synthetics secure credential in New Relic that already exists.
@@ -143,8 +142,8 @@ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[buil
143
142
  ```
144
143
 
145
144
 
146
- :param builtins.str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
147
- :param builtins.str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
145
+ :param _builtins.str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
146
+ :param _builtins.str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
148
147
  """
149
148
  __args__ = dict()
150
149
  __args__['accountId'] = account_id