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
@@ -48,12 +47,12 @@ class GetAlertChannelResult:
48
47
  raise TypeError("Expected argument 'type' to be a str")
49
48
  pulumi.set(__self__, "type", type)
50
49
 
51
- @property
50
+ @_builtins.property
52
51
  @pulumi.getter(name="accountId")
53
- def account_id(self) -> builtins.str:
52
+ def account_id(self) -> _builtins.str:
54
53
  return pulumi.get(self, "account_id")
55
54
 
56
- @property
55
+ @_builtins.property
57
56
  @pulumi.getter
58
57
  def config(self) -> 'outputs.GetAlertChannelConfigResult':
59
58
  """
@@ -61,30 +60,30 @@ class GetAlertChannelResult:
61
60
  """
62
61
  return pulumi.get(self, "config")
63
62
 
64
- @property
63
+ @_builtins.property
65
64
  @pulumi.getter
66
- def id(self) -> builtins.str:
65
+ def id(self) -> _builtins.str:
67
66
  """
68
67
  The provider-assigned unique ID for this managed resource.
69
68
  """
70
69
  return pulumi.get(self, "id")
71
70
 
72
- @property
71
+ @_builtins.property
73
72
  @pulumi.getter
74
- def name(self) -> builtins.str:
73
+ def name(self) -> _builtins.str:
75
74
  return pulumi.get(self, "name")
76
75
 
77
- @property
76
+ @_builtins.property
78
77
  @pulumi.getter(name="policyIds")
79
- def policy_ids(self) -> Sequence[builtins.str]:
78
+ def policy_ids(self) -> Sequence[_builtins.str]:
80
79
  """
81
80
  A list of policy IDs associated with the alert channel.
82
81
  """
83
82
  return pulumi.get(self, "policy_ids")
84
83
 
85
- @property
84
+ @_builtins.property
86
85
  @pulumi.getter
87
- def type(self) -> builtins.str:
86
+ def type(self) -> _builtins.str:
88
87
  """
89
88
  Alert channel type, either: `email`, `opsgenie`, `pagerduty`, `slack`, `victorops`, or `webhook`.
90
89
  """
@@ -105,8 +104,8 @@ class AwaitableGetAlertChannelResult(GetAlertChannelResult):
105
104
  type=self.type)
106
105
 
107
106
 
108
- def get_alert_channel(account_id: Optional[builtins.str] = None,
109
- name: Optional[builtins.str] = None,
107
+ def get_alert_channel(account_id: Optional[_builtins.str] = None,
108
+ name: Optional[_builtins.str] = None,
110
109
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlertChannelResult:
111
110
  """
112
111
  Use this data source to get information about a specific alert channel in New Relic that already exists.
@@ -114,8 +113,8 @@ def get_alert_channel(account_id: Optional[builtins.str] = None,
114
113
  > **WARNING:** The `AlertChannel` data source is deprecated and will be removed in the next major release.
115
114
 
116
115
 
117
- :param builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
118
- :param builtins.str name: The name of the alert channel in New Relic.
116
+ :param _builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
117
+ :param _builtins.str name: The name of the alert channel in New Relic.
119
118
  """
120
119
  __args__ = dict()
121
120
  __args__['accountId'] = account_id
@@ -130,8 +129,8 @@ def get_alert_channel(account_id: Optional[builtins.str] = None,
130
129
  name=pulumi.get(__ret__, 'name'),
131
130
  policy_ids=pulumi.get(__ret__, 'policy_ids'),
132
131
  type=pulumi.get(__ret__, 'type'))
133
- def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
134
- name: Optional[pulumi.Input[builtins.str]] = None,
132
+ def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
133
+ name: Optional[pulumi.Input[_builtins.str]] = None,
135
134
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertChannelResult]:
136
135
  """
137
136
  Use this data source to get information about a specific alert channel in New Relic that already exists.
@@ -139,8 +138,8 @@ def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[builtins
139
138
  > **WARNING:** The `AlertChannel` data source is deprecated and will be removed in the next major release.
140
139
 
141
140
 
142
- :param builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
143
- :param builtins.str name: The name of the alert channel in New Relic.
141
+ :param _builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
142
+ :param _builtins.str name: The name of the alert channel in New Relic.
144
143
  """
145
144
  __args__ = dict()
146
145
  __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
@@ -47,30 +46,30 @@ class GetAlertPolicyResult:
47
46
  raise TypeError("Expected argument 'updated_at' to be a str")
48
47
  pulumi.set(__self__, "updated_at", updated_at)
49
48
 
50
- @property
49
+ @_builtins.property
51
50
  @pulumi.getter(name="accountId")
52
- def account_id(self) -> builtins.str:
51
+ def account_id(self) -> _builtins.str:
53
52
  return pulumi.get(self, "account_id")
54
53
 
55
- @property
54
+ @_builtins.property
56
55
  @pulumi.getter(name="createdAt")
57
- def created_at(self) -> builtins.str:
56
+ def created_at(self) -> _builtins.str:
58
57
  """
59
58
  The time the policy was created.
60
59
  """
61
60
  return pulumi.get(self, "created_at")
62
61
 
63
- @property
62
+ @_builtins.property
64
63
  @pulumi.getter
65
- def id(self) -> builtins.str:
64
+ def id(self) -> _builtins.str:
66
65
  """
67
66
  The provider-assigned unique ID for this managed resource.
68
67
  """
69
68
  return pulumi.get(self, "id")
70
69
 
71
- @property
70
+ @_builtins.property
72
71
  @pulumi.getter(name="incidentPreference")
73
- def incident_preference(self) -> Optional[builtins.str]:
72
+ def incident_preference(self) -> Optional[_builtins.str]:
74
73
  """
75
74
  The rollup strategy for the policy, which can have one of the following values:
76
75
  * `PER_POLICY` - Represents the incident grouping preference **One issue per policy**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-policy) for more details on this incident grouping preference.
@@ -79,14 +78,14 @@ class GetAlertPolicyResult:
79
78
  """
80
79
  return pulumi.get(self, "incident_preference")
81
80
 
82
- @property
81
+ @_builtins.property
83
82
  @pulumi.getter
84
- def name(self) -> builtins.str:
83
+ def name(self) -> _builtins.str:
85
84
  return pulumi.get(self, "name")
86
85
 
87
- @property
86
+ @_builtins.property
88
87
  @pulumi.getter(name="updatedAt")
89
- def updated_at(self) -> builtins.str:
88
+ def updated_at(self) -> _builtins.str:
90
89
  """
91
90
  The time the policy was last updated.
92
91
  """
@@ -107,20 +106,20 @@ class AwaitableGetAlertPolicyResult(GetAlertPolicyResult):
107
106
  updated_at=self.updated_at)
108
107
 
109
108
 
110
- def get_alert_policy(account_id: Optional[builtins.str] = None,
111
- incident_preference: Optional[builtins.str] = None,
112
- name: Optional[builtins.str] = None,
109
+ def get_alert_policy(account_id: Optional[_builtins.str] = None,
110
+ incident_preference: Optional[_builtins.str] = None,
111
+ name: Optional[_builtins.str] = None,
113
112
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAlertPolicyResult:
114
113
  """
115
114
  Use this data source to get information about a specific alert policy in New Relic that already exists.
116
115
 
117
116
 
118
- :param builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
119
- :param builtins.str incident_preference: The rollup strategy for the policy, which can have one of the following values:
117
+ :param _builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
118
+ :param _builtins.str incident_preference: The rollup strategy for the policy, which can have one of the following values:
120
119
  * `PER_POLICY` - Represents the incident grouping preference **One issue per policy**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-policy) for more details on this incident grouping preference.
121
120
  * `PER_CONDITION` - Represents the incident grouping preference **One issue per condition**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-condition) for more details on this incident grouping preference.
122
121
  * `PER_CONDITION_AND_TARGET` - Represents the incident grouping preference **One issue per condition and signal**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-signal) for more details on this incident grouping preference.
123
- :param builtins.str name: The name of the alert policy in New Relic.
122
+ :param _builtins.str name: The name of the alert policy in New Relic.
124
123
  """
125
124
  __args__ = dict()
126
125
  __args__['accountId'] = account_id
@@ -136,20 +135,20 @@ def get_alert_policy(account_id: Optional[builtins.str] = None,
136
135
  incident_preference=pulumi.get(__ret__, 'incident_preference'),
137
136
  name=pulumi.get(__ret__, 'name'),
138
137
  updated_at=pulumi.get(__ret__, 'updated_at'))
139
- def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
140
- incident_preference: Optional[pulumi.Input[Optional[builtins.str]]] = None,
141
- name: Optional[pulumi.Input[builtins.str]] = None,
138
+ def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
139
+ incident_preference: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
140
+ name: Optional[pulumi.Input[_builtins.str]] = None,
142
141
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertPolicyResult]:
143
142
  """
144
143
  Use this data source to get information about a specific alert policy in New Relic that already exists.
145
144
 
146
145
 
147
- :param builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
148
- :param builtins.str incident_preference: The rollup strategy for the policy, which can have one of the following values:
146
+ :param _builtins.str account_id: The New Relic account ID to operate on. This allows you to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
147
+ :param _builtins.str incident_preference: The rollup strategy for the policy, which can have one of the following values:
149
148
  * `PER_POLICY` - Represents the incident grouping preference **One issue per policy**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-policy) for more details on this incident grouping preference.
150
149
  * `PER_CONDITION` - Represents the incident grouping preference **One issue per condition**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-condition) for more details on this incident grouping preference.
151
150
  * `PER_CONDITION_AND_TARGET` - Represents the incident grouping preference **One issue per condition and signal**. Refer to [this page](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/alert-policies/specify-when-alerts-create-incidents/#preference-signal) for more details on this incident grouping preference.
152
- :param builtins.str name: The name of the alert policy in New Relic.
151
+ :param _builtins.str name: The name of the alert policy in New Relic.
153
152
  """
154
153
  __args__ = dict()
155
154
  __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
@@ -41,33 +40,33 @@ class GetApplicationResult:
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="hostIds")
46
- def host_ids(self) -> Sequence[builtins.str]:
45
+ def host_ids(self) -> Sequence[_builtins.str]:
47
46
  """
48
47
  A list of host IDs associated with the application.
49
48
  """
50
49
  return pulumi.get(self, "host_ids")
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  @pulumi.getter
54
- def id(self) -> builtins.str:
53
+ def id(self) -> _builtins.str:
55
54
  """
56
55
  The provider-assigned unique ID for this managed resource.
57
56
  """
58
57
  return pulumi.get(self, "id")
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter(name="instanceIds")
62
- def instance_ids(self) -> Sequence[builtins.str]:
61
+ def instance_ids(self) -> Sequence[_builtins.str]:
63
62
  """
64
63
  A list of instance IDs associated with the application.
65
64
  """
66
65
  return pulumi.get(self, "instance_ids")
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter
70
- def name(self) -> builtins.str:
69
+ def name(self) -> _builtins.str:
71
70
  return pulumi.get(self, "name")
72
71
 
73
72
 
@@ -83,7 +82,7 @@ class AwaitableGetApplicationResult(GetApplicationResult):
83
82
  name=self.name)
84
83
 
85
84
 
86
- def get_application(name: Optional[builtins.str] = None,
85
+ def get_application(name: Optional[_builtins.str] = None,
87
86
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApplicationResult:
88
87
  """
89
88
  #### DEPRECATED! Use at your own risk. Use the `get_entity` data source instead. This feature may be removed in the next major release
@@ -115,7 +114,7 @@ def get_application(name: Optional[builtins.str] = None,
115
114
  ```
116
115
 
117
116
 
118
- :param builtins.str name: The name of the application in New Relic.
117
+ :param _builtins.str name: The name of the application in New Relic.
119
118
  """
120
119
  __args__ = dict()
121
120
  __args__['name'] = name
@@ -127,7 +126,7 @@ def get_application(name: Optional[builtins.str] = None,
127
126
  id=pulumi.get(__ret__, 'id'),
128
127
  instance_ids=pulumi.get(__ret__, 'instance_ids'),
129
128
  name=pulumi.get(__ret__, 'name'))
130
- def get_application_output(name: Optional[pulumi.Input[builtins.str]] = None,
129
+ def get_application_output(name: Optional[pulumi.Input[_builtins.str]] = None,
131
130
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApplicationResult]:
132
131
  """
133
132
  #### DEPRECATED! Use at your own risk. Use the `get_entity` data source instead. This feature may be removed in the next major release
@@ -159,7 +158,7 @@ def get_application_output(name: Optional[pulumi.Input[builtins.str]] = None,
159
158
  ```
160
159
 
161
160
 
162
- :param builtins.str name: The name of the application in New Relic.
161
+ :param _builtins.str name: The name of the application in New Relic.
163
162
  """
164
163
  __args__ = dict()
165
164
  __args__['name'] = name
@@ -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
@@ -35,17 +34,17 @@ class GetAuthenticationDomainResult:
35
34
  raise TypeError("Expected argument 'name' to be a str")
36
35
  pulumi.set(__self__, "name", name)
37
36
 
38
- @property
37
+ @_builtins.property
39
38
  @pulumi.getter
40
- def id(self) -> builtins.str:
39
+ def id(self) -> _builtins.str:
41
40
  """
42
41
  The ID of the matching authentication domain fetched.
43
42
  """
44
43
  return pulumi.get(self, "id")
45
44
 
46
- @property
45
+ @_builtins.property
47
46
  @pulumi.getter
48
- def name(self) -> builtins.str:
47
+ def name(self) -> _builtins.str:
49
48
  return pulumi.get(self, "name")
50
49
 
51
50
 
@@ -59,7 +58,7 @@ class AwaitableGetAuthenticationDomainResult(GetAuthenticationDomainResult):
59
58
  name=self.name)
60
59
 
61
60
 
62
- def get_authentication_domain(name: Optional[builtins.str] = None,
61
+ def get_authentication_domain(name: Optional[_builtins.str] = None,
63
62
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthenticationDomainResult:
64
63
  """
65
64
  Use this data source to fetch the ID of an authentication domain belonging to your account, matching the specified name.
@@ -75,7 +74,7 @@ def get_authentication_domain(name: Optional[builtins.str] = None,
75
74
  ```
76
75
 
77
76
 
78
- :param builtins.str name: The name of the authentication domain to be searched for. An error is thrown, if no authentication domain is found with the specified name.
77
+ :param _builtins.str name: The name of the authentication domain to be searched for. An error is thrown, if no authentication domain is found with the specified name.
79
78
  """
80
79
  __args__ = dict()
81
80
  __args__['name'] = name
@@ -85,7 +84,7 @@ def get_authentication_domain(name: Optional[builtins.str] = None,
85
84
  return AwaitableGetAuthenticationDomainResult(
86
85
  id=pulumi.get(__ret__, 'id'),
87
86
  name=pulumi.get(__ret__, 'name'))
88
- def get_authentication_domain_output(name: Optional[pulumi.Input[builtins.str]] = None,
87
+ def get_authentication_domain_output(name: Optional[pulumi.Input[_builtins.str]] = None,
89
88
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthenticationDomainResult]:
90
89
  """
91
90
  Use this data source to fetch the ID of an authentication domain belonging to your account, matching the specified name.
@@ -101,7 +100,7 @@ def get_authentication_domain_output(name: Optional[pulumi.Input[builtins.str]]
101
100
  ```
102
101
 
103
102
 
104
- :param builtins.str name: The name of the authentication domain to be searched for. An error is thrown, if no authentication domain is found with the specified name.
103
+ :param _builtins.str name: The name of the authentication domain to be searched for. An error is thrown, if no authentication domain is found with the specified name.
105
104
  """
106
105
  __args__ = dict()
107
106
  __args__['name'] = name
@@ -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,27 +40,27 @@ class GetCloudAccountResult:
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(name="cloudProvider")
51
- def cloud_provider(self) -> builtins.str:
50
+ def cloud_provider(self) -> _builtins.str:
52
51
  return pulumi.get(self, "cloud_provider")
53
52
 
54
- @property
53
+ @_builtins.property
55
54
  @pulumi.getter
56
- def id(self) -> builtins.str:
55
+ def id(self) -> _builtins.str:
57
56
  """
58
57
  The provider-assigned unique ID for this managed resource.
59
58
  """
60
59
  return pulumi.get(self, "id")
61
60
 
62
- @property
61
+ @_builtins.property
63
62
  @pulumi.getter
64
- def name(self) -> builtins.str:
63
+ def name(self) -> _builtins.str:
65
64
  return pulumi.get(self, "name")
66
65
 
67
66
 
@@ -77,9 +76,9 @@ class AwaitableGetCloudAccountResult(GetCloudAccountResult):
77
76
  name=self.name)
78
77
 
79
78
 
80
- def get_cloud_account(account_id: Optional[builtins.str] = None,
81
- cloud_provider: Optional[builtins.str] = None,
82
- name: Optional[builtins.str] = None,
79
+ def get_cloud_account(account_id: Optional[_builtins.str] = None,
80
+ cloud_provider: Optional[_builtins.str] = None,
81
+ name: Optional[_builtins.str] = None,
83
82
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCloudAccountResult:
84
83
  """
85
84
  Use this data source to get information about a specific cloud account linked to New Relic.
@@ -97,9 +96,9 @@ def get_cloud_account(account_id: Optional[builtins.str] = None,
97
96
  ```
98
97
 
99
98
 
100
- :param builtins.str account_id: The account ID in New Relic.
101
- :param builtins.str cloud_provider: The cloud provider of the account (aws, gcp, azure, etc)
102
- :param builtins.str name: The cloud account name in New Relic.
99
+ :param _builtins.str account_id: The account ID in New Relic.
100
+ :param _builtins.str cloud_provider: The cloud provider of the account (aws, gcp, azure, etc)
101
+ :param _builtins.str name: The cloud account name in New Relic.
103
102
  """
104
103
  __args__ = dict()
105
104
  __args__['accountId'] = account_id
@@ -113,9 +112,9 @@ def get_cloud_account(account_id: Optional[builtins.str] = None,
113
112
  cloud_provider=pulumi.get(__ret__, 'cloud_provider'),
114
113
  id=pulumi.get(__ret__, 'id'),
115
114
  name=pulumi.get(__ret__, 'name'))
116
- def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
117
- cloud_provider: Optional[pulumi.Input[builtins.str]] = None,
118
- name: Optional[pulumi.Input[builtins.str]] = None,
115
+ def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
116
+ cloud_provider: Optional[pulumi.Input[_builtins.str]] = None,
117
+ name: Optional[pulumi.Input[_builtins.str]] = None,
119
118
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudAccountResult]:
120
119
  """
121
120
  Use this data source to get information about a specific cloud account linked to New Relic.
@@ -133,9 +132,9 @@ def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[builtins
133
132
  ```
134
133
 
135
134
 
136
- :param builtins.str account_id: The account ID in New Relic.
137
- :param builtins.str cloud_provider: The cloud provider of the account (aws, gcp, azure, etc)
138
- :param builtins.str name: The cloud account name in New Relic.
135
+ :param _builtins.str account_id: The account ID in New Relic.
136
+ :param _builtins.str cloud_provider: The cloud provider of the account (aws, gcp, azure, etc)
137
+ :param _builtins.str name: The cloud account name in New Relic.
139
138
  """
140
139
  __args__ = dict()
141
140
  __args__['accountId'] = account_id