pulumi-newrelic 5.49.0a1753337775__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.49.0a1753337775.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.49.0a1753337775.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.49.0a1753337775.dist-info → pulumi_newrelic-5.49.0a1753398082.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.49.0a1753337775.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
@@ -20,16 +19,16 @@ __all__ = ['AwsLinkAccountArgs', 'AwsLinkAccount']
20
19
  @pulumi.input_type
21
20
  class AwsLinkAccountArgs:
22
21
  def __init__(__self__, *,
23
- arn: pulumi.Input[builtins.str],
24
- account_id: Optional[pulumi.Input[builtins.str]] = None,
25
- metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
26
- name: Optional[pulumi.Input[builtins.str]] = None):
22
+ arn: pulumi.Input[_builtins.str],
23
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
24
+ metric_collection_mode: Optional[pulumi.Input[_builtins.str]] = None,
25
+ name: Optional[pulumi.Input[_builtins.str]] = None):
27
26
  """
28
27
  The set of arguments for constructing a AwsLinkAccount resource.
29
- :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
30
- :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
31
- :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
32
- :param pulumi.Input[builtins.str] name: The name of the linked account.
28
+ :param pulumi.Input[_builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
29
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
30
+ :param pulumi.Input[_builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
31
+ :param pulumi.Input[_builtins.str] name: The name of the linked account.
33
32
  """
34
33
  pulumi.set(__self__, "arn", arn)
35
34
  if account_id is not None:
@@ -39,68 +38,68 @@ class AwsLinkAccountArgs:
39
38
  if name is not None:
40
39
  pulumi.set(__self__, "name", name)
41
40
 
42
- @property
41
+ @_builtins.property
43
42
  @pulumi.getter
44
- def arn(self) -> pulumi.Input[builtins.str]:
43
+ def arn(self) -> pulumi.Input[_builtins.str]:
45
44
  """
46
45
  The Amazon Resource Name (ARN) of the IAM role.
47
46
  """
48
47
  return pulumi.get(self, "arn")
49
48
 
50
49
  @arn.setter
51
- def arn(self, value: pulumi.Input[builtins.str]):
50
+ def arn(self, value: pulumi.Input[_builtins.str]):
52
51
  pulumi.set(self, "arn", value)
53
52
 
54
- @property
53
+ @_builtins.property
55
54
  @pulumi.getter(name="accountId")
56
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
55
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
57
56
  """
58
57
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
59
58
  """
60
59
  return pulumi.get(self, "account_id")
61
60
 
62
61
  @account_id.setter
63
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
62
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
64
63
  pulumi.set(self, "account_id", value)
65
64
 
66
- @property
65
+ @_builtins.property
67
66
  @pulumi.getter(name="metricCollectionMode")
68
- def metric_collection_mode(self) -> Optional[pulumi.Input[builtins.str]]:
67
+ def metric_collection_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
69
68
  """
70
69
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
71
70
  """
72
71
  return pulumi.get(self, "metric_collection_mode")
73
72
 
74
73
  @metric_collection_mode.setter
75
- def metric_collection_mode(self, value: Optional[pulumi.Input[builtins.str]]):
74
+ def metric_collection_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
76
75
  pulumi.set(self, "metric_collection_mode", value)
77
76
 
78
- @property
77
+ @_builtins.property
79
78
  @pulumi.getter
80
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
79
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
81
80
  """
82
81
  The name of the linked account.
83
82
  """
84
83
  return pulumi.get(self, "name")
85
84
 
86
85
  @name.setter
87
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
86
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
88
87
  pulumi.set(self, "name", value)
89
88
 
90
89
 
91
90
  @pulumi.input_type
92
91
  class _AwsLinkAccountState:
93
92
  def __init__(__self__, *,
94
- account_id: Optional[pulumi.Input[builtins.str]] = None,
95
- arn: Optional[pulumi.Input[builtins.str]] = None,
96
- metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
97
- name: Optional[pulumi.Input[builtins.str]] = None):
93
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
94
+ arn: Optional[pulumi.Input[_builtins.str]] = None,
95
+ metric_collection_mode: Optional[pulumi.Input[_builtins.str]] = None,
96
+ name: Optional[pulumi.Input[_builtins.str]] = None):
98
97
  """
99
98
  Input properties used for looking up and filtering AwsLinkAccount resources.
100
- :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
101
- :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
102
- :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
103
- :param pulumi.Input[builtins.str] name: The name of the linked account.
99
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
100
+ :param pulumi.Input[_builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
101
+ :param pulumi.Input[_builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
102
+ :param pulumi.Input[_builtins.str] name: The name of the linked account.
104
103
  """
105
104
  if account_id is not None:
106
105
  pulumi.set(__self__, "account_id", account_id)
@@ -111,52 +110,52 @@ class _AwsLinkAccountState:
111
110
  if name is not None:
112
111
  pulumi.set(__self__, "name", name)
113
112
 
114
- @property
113
+ @_builtins.property
115
114
  @pulumi.getter(name="accountId")
116
- def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
115
+ def account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
117
116
  """
118
117
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
119
118
  """
120
119
  return pulumi.get(self, "account_id")
121
120
 
122
121
  @account_id.setter
123
- def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
122
+ def account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
124
123
  pulumi.set(self, "account_id", value)
125
124
 
126
- @property
125
+ @_builtins.property
127
126
  @pulumi.getter
128
- def arn(self) -> Optional[pulumi.Input[builtins.str]]:
127
+ def arn(self) -> Optional[pulumi.Input[_builtins.str]]:
129
128
  """
130
129
  The Amazon Resource Name (ARN) of the IAM role.
131
130
  """
132
131
  return pulumi.get(self, "arn")
133
132
 
134
133
  @arn.setter
135
- def arn(self, value: Optional[pulumi.Input[builtins.str]]):
134
+ def arn(self, value: Optional[pulumi.Input[_builtins.str]]):
136
135
  pulumi.set(self, "arn", value)
137
136
 
138
- @property
137
+ @_builtins.property
139
138
  @pulumi.getter(name="metricCollectionMode")
140
- def metric_collection_mode(self) -> Optional[pulumi.Input[builtins.str]]:
139
+ def metric_collection_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
141
140
  """
142
141
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
143
142
  """
144
143
  return pulumi.get(self, "metric_collection_mode")
145
144
 
146
145
  @metric_collection_mode.setter
147
- def metric_collection_mode(self, value: Optional[pulumi.Input[builtins.str]]):
146
+ def metric_collection_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
148
147
  pulumi.set(self, "metric_collection_mode", value)
149
148
 
150
- @property
149
+ @_builtins.property
151
150
  @pulumi.getter
152
- def name(self) -> Optional[pulumi.Input[builtins.str]]:
151
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
153
152
  """
154
153
  The name of the linked account.
155
154
  """
156
155
  return pulumi.get(self, "name")
157
156
 
158
157
  @name.setter
159
- def name(self, value: Optional[pulumi.Input[builtins.str]]):
158
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
160
159
  pulumi.set(self, "name", value)
161
160
 
162
161
 
@@ -166,10 +165,10 @@ class AwsLinkAccount(pulumi.CustomResource):
166
165
  def __init__(__self__,
167
166
  resource_name: str,
168
167
  opts: Optional[pulumi.ResourceOptions] = None,
169
- account_id: Optional[pulumi.Input[builtins.str]] = None,
170
- arn: Optional[pulumi.Input[builtins.str]] = None,
171
- metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
172
- name: Optional[pulumi.Input[builtins.str]] = None,
168
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
169
+ arn: Optional[pulumi.Input[_builtins.str]] = None,
170
+ metric_collection_mode: Optional[pulumi.Input[_builtins.str]] = None,
171
+ name: Optional[pulumi.Input[_builtins.str]] = None,
173
172
  __props__=None):
174
173
  """
175
174
  Use this resource to link an AWS account to New Relic.
@@ -208,10 +207,10 @@ class AwsLinkAccount(pulumi.CustomResource):
208
207
 
209
208
  :param str resource_name: The name of the resource.
210
209
  :param pulumi.ResourceOptions opts: Options for the resource.
211
- :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
212
- :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
213
- :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
214
- :param pulumi.Input[builtins.str] name: The name of the linked account.
210
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
211
+ :param pulumi.Input[_builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
212
+ :param pulumi.Input[_builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
213
+ :param pulumi.Input[_builtins.str] name: The name of the linked account.
215
214
  """
216
215
  ...
217
216
  @overload
@@ -269,10 +268,10 @@ class AwsLinkAccount(pulumi.CustomResource):
269
268
  def _internal_init(__self__,
270
269
  resource_name: str,
271
270
  opts: Optional[pulumi.ResourceOptions] = None,
272
- account_id: Optional[pulumi.Input[builtins.str]] = None,
273
- arn: Optional[pulumi.Input[builtins.str]] = None,
274
- metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
275
- name: Optional[pulumi.Input[builtins.str]] = None,
271
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
272
+ arn: Optional[pulumi.Input[_builtins.str]] = None,
273
+ metric_collection_mode: Optional[pulumi.Input[_builtins.str]] = None,
274
+ name: Optional[pulumi.Input[_builtins.str]] = None,
276
275
  __props__=None):
277
276
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
278
277
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -298,10 +297,10 @@ class AwsLinkAccount(pulumi.CustomResource):
298
297
  def get(resource_name: str,
299
298
  id: pulumi.Input[str],
300
299
  opts: Optional[pulumi.ResourceOptions] = None,
301
- account_id: Optional[pulumi.Input[builtins.str]] = None,
302
- arn: Optional[pulumi.Input[builtins.str]] = None,
303
- metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
304
- name: Optional[pulumi.Input[builtins.str]] = None) -> 'AwsLinkAccount':
300
+ account_id: Optional[pulumi.Input[_builtins.str]] = None,
301
+ arn: Optional[pulumi.Input[_builtins.str]] = None,
302
+ metric_collection_mode: Optional[pulumi.Input[_builtins.str]] = None,
303
+ name: Optional[pulumi.Input[_builtins.str]] = None) -> 'AwsLinkAccount':
305
304
  """
306
305
  Get an existing AwsLinkAccount resource's state with the given name, id, and optional extra
307
306
  properties used to qualify the lookup.
@@ -309,10 +308,10 @@ class AwsLinkAccount(pulumi.CustomResource):
309
308
  :param str resource_name: The unique name of the resulting resource.
310
309
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
311
310
  :param pulumi.ResourceOptions opts: Options for the resource.
312
- :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
313
- :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
314
- :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
315
- :param pulumi.Input[builtins.str] name: The name of the linked account.
311
+ :param pulumi.Input[_builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
312
+ :param pulumi.Input[_builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
313
+ :param pulumi.Input[_builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
314
+ :param pulumi.Input[_builtins.str] name: The name of the linked account.
316
315
  """
317
316
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
318
317
 
@@ -324,33 +323,33 @@ class AwsLinkAccount(pulumi.CustomResource):
324
323
  __props__.__dict__["name"] = name
325
324
  return AwsLinkAccount(resource_name, opts=opts, __props__=__props__)
326
325
 
327
- @property
326
+ @_builtins.property
328
327
  @pulumi.getter(name="accountId")
329
- def account_id(self) -> pulumi.Output[builtins.str]:
328
+ def account_id(self) -> pulumi.Output[_builtins.str]:
330
329
  """
331
330
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
332
331
  """
333
332
  return pulumi.get(self, "account_id")
334
333
 
335
- @property
334
+ @_builtins.property
336
335
  @pulumi.getter
337
- def arn(self) -> pulumi.Output[builtins.str]:
336
+ def arn(self) -> pulumi.Output[_builtins.str]:
338
337
  """
339
338
  The Amazon Resource Name (ARN) of the IAM role.
340
339
  """
341
340
  return pulumi.get(self, "arn")
342
341
 
343
- @property
342
+ @_builtins.property
344
343
  @pulumi.getter(name="metricCollectionMode")
345
- def metric_collection_mode(self) -> pulumi.Output[Optional[builtins.str]]:
344
+ def metric_collection_mode(self) -> pulumi.Output[Optional[_builtins.str]]:
346
345
  """
347
346
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
348
347
  """
349
348
  return pulumi.get(self, "metric_collection_mode")
350
349
 
351
- @property
350
+ @_builtins.property
352
351
  @pulumi.getter
353
- def name(self) -> pulumi.Output[builtins.str]:
352
+ def name(self) -> pulumi.Output[_builtins.str]:
354
353
  """
355
354
  The name of the linked account.
356
355
  """