pulumi-newrelic 5.45.0a1743574084__py3-none-any.whl → 5.45.0a1744183332__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 (89) hide show
  1. pulumi_newrelic/__init__.py +1 -0
  2. pulumi_newrelic/_inputs.py +2961 -2960
  3. pulumi_newrelic/account_management.py +29 -28
  4. pulumi_newrelic/alert_channel.py +43 -42
  5. pulumi_newrelic/alert_condition.py +176 -175
  6. pulumi_newrelic/alert_muting_rule.py +71 -70
  7. pulumi_newrelic/alert_policy.py +57 -56
  8. pulumi_newrelic/alert_policy_channel.py +43 -42
  9. pulumi_newrelic/api_access_key.py +92 -91
  10. pulumi_newrelic/browser_application.py +92 -91
  11. pulumi_newrelic/cloud/__init__.py +1 -0
  12. pulumi_newrelic/cloud/_inputs.py +1765 -1764
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +29 -28
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +57 -56
  15. pulumi_newrelic/cloud/aws_integrations.py +29 -28
  16. pulumi_newrelic/cloud/aws_link_account.py +57 -56
  17. pulumi_newrelic/cloud/azure_integrations.py +29 -28
  18. pulumi_newrelic/cloud/azure_link_account.py +85 -84
  19. pulumi_newrelic/cloud/gcp_integrations.py +29 -28
  20. pulumi_newrelic/cloud/gcp_link_account.py +45 -44
  21. pulumi_newrelic/cloud/outputs.py +1057 -1056
  22. pulumi_newrelic/config/__init__.py +1 -0
  23. pulumi_newrelic/config/__init__.pyi +1 -0
  24. pulumi_newrelic/config/vars.py +1 -0
  25. pulumi_newrelic/data_partition_rule.py +92 -91
  26. pulumi_newrelic/entity_tags.py +15 -14
  27. pulumi_newrelic/events_to_metrics_rule.py +78 -77
  28. pulumi_newrelic/get_account.py +17 -16
  29. pulumi_newrelic/get_alert_channel.py +14 -13
  30. pulumi_newrelic/get_alert_policy.py +19 -18
  31. pulumi_newrelic/get_application.py +9 -8
  32. pulumi_newrelic/get_authentication_domain.py +7 -6
  33. pulumi_newrelic/get_cloud_account.py +17 -16
  34. pulumi_newrelic/get_entity.py +40 -39
  35. pulumi_newrelic/get_group.py +13 -12
  36. pulumi_newrelic/get_key_transaction.py +19 -18
  37. pulumi_newrelic/get_notification_destination.py +20 -19
  38. pulumi_newrelic/get_obfuscation_expression.py +12 -11
  39. pulumi_newrelic/get_service_level_alert_helper.py +41 -40
  40. pulumi_newrelic/get_test_grok_pattern.py +17 -16
  41. pulumi_newrelic/get_user.py +17 -16
  42. pulumi_newrelic/group.py +43 -42
  43. pulumi_newrelic/infra_alert_condition.py +204 -203
  44. pulumi_newrelic/insights/__init__.py +1 -0
  45. pulumi_newrelic/insights/_inputs.py +26 -25
  46. pulumi_newrelic/insights/event.py +1 -0
  47. pulumi_newrelic/insights/outputs.py +16 -15
  48. pulumi_newrelic/key_transaction.py +85 -84
  49. pulumi_newrelic/log_parsing_rule.py +120 -119
  50. pulumi_newrelic/monitor_downtime.py +113 -112
  51. pulumi_newrelic/notification_channel.py +92 -91
  52. pulumi_newrelic/notification_destination.py +78 -77
  53. pulumi_newrelic/nrql_alert_condition.py +330 -329
  54. pulumi_newrelic/nrql_drop_rule.py +64 -63
  55. pulumi_newrelic/obfuscation_expression.py +57 -56
  56. pulumi_newrelic/obfuscation_rule.py +71 -70
  57. pulumi_newrelic/one_dashboard.py +71 -70
  58. pulumi_newrelic/one_dashboard_json.py +50 -49
  59. pulumi_newrelic/one_dashboard_raw.py +71 -70
  60. pulumi_newrelic/outputs.py +1831 -1830
  61. pulumi_newrelic/plugins/__init__.py +1 -0
  62. pulumi_newrelic/plugins/_inputs.py +126 -125
  63. pulumi_newrelic/plugins/application_settings.py +132 -131
  64. pulumi_newrelic/plugins/outputs.py +76 -75
  65. pulumi_newrelic/plugins/workload.py +99 -98
  66. pulumi_newrelic/provider.py +80 -79
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +57 -56
  69. pulumi_newrelic/synthetics/__init__.py +1 -0
  70. pulumi_newrelic/synthetics/_inputs.py +106 -105
  71. pulumi_newrelic/synthetics/alert_condition.py +78 -77
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +151 -150
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +158 -157
  74. pulumi_newrelic/synthetics/get_private_location.py +17 -16
  75. pulumi_newrelic/synthetics/get_secure_credential.py +14 -13
  76. pulumi_newrelic/synthetics/monitor.py +298 -297
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +92 -91
  78. pulumi_newrelic/synthetics/outputs.py +64 -63
  79. pulumi_newrelic/synthetics/private_location.py +85 -84
  80. pulumi_newrelic/synthetics/script_monitor.py +235 -234
  81. pulumi_newrelic/synthetics/secure_credential.py +71 -70
  82. pulumi_newrelic/synthetics/step_monitor.py +165 -164
  83. pulumi_newrelic/user.py +57 -56
  84. pulumi_newrelic/workflow.py +106 -105
  85. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.45.0a1744183332.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.45.0a1743574084.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,20 +20,20 @@ __all__ = ['KeyTransactionArgs', 'KeyTransaction']
19
20
  @pulumi.input_type
20
21
  class KeyTransactionArgs:
21
22
  def __init__(__self__, *,
22
- apdex_index: pulumi.Input[float],
23
- application_guid: pulumi.Input[str],
24
- browser_apdex_target: pulumi.Input[float],
25
- metric_name: pulumi.Input[str],
26
- name: Optional[pulumi.Input[str]] = None):
23
+ apdex_index: pulumi.Input[builtins.float],
24
+ application_guid: pulumi.Input[builtins.str],
25
+ browser_apdex_target: pulumi.Input[builtins.float],
26
+ metric_name: pulumi.Input[builtins.str],
27
+ name: Optional[pulumi.Input[builtins.str]] = None):
27
28
  """
28
29
  The set of arguments for constructing a KeyTransaction resource.
29
- :param pulumi.Input[float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
30
- :param pulumi.Input[str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
31
- :param pulumi.Input[float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
30
+ :param pulumi.Input[builtins.float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
31
+ :param pulumi.Input[builtins.str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
32
+ :param pulumi.Input[builtins.float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
32
33
 
33
34
  > **NOTE:** It may be noted that the `metric_name` and `application_guid` of a Key Transaction _cannot_ be updated in a key transaction that has already been created; since this is not supported. As a consequence, altering the values of `application_guid` and/or `metric_name` of a `KeyTransaction` resource created (to try updating these values) would result in `pulumi preview` prompting a forced destruction and re-creation of the resource.
34
- :param pulumi.Input[str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
35
- :param pulumi.Input[str] name: The name of the key transaction.
35
+ :param pulumi.Input[builtins.str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
36
+ :param pulumi.Input[builtins.str] name: The name of the key transaction.
36
37
  """
37
38
  pulumi.set(__self__, "apdex_index", apdex_index)
38
39
  pulumi.set(__self__, "application_guid", application_guid)
@@ -43,31 +44,31 @@ class KeyTransactionArgs:
43
44
 
44
45
  @property
45
46
  @pulumi.getter(name="apdexIndex")
46
- def apdex_index(self) -> pulumi.Input[float]:
47
+ def apdex_index(self) -> pulumi.Input[builtins.float]:
47
48
  """
48
49
  A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
49
50
  """
50
51
  return pulumi.get(self, "apdex_index")
51
52
 
52
53
  @apdex_index.setter
53
- def apdex_index(self, value: pulumi.Input[float]):
54
+ def apdex_index(self, value: pulumi.Input[builtins.float]):
54
55
  pulumi.set(self, "apdex_index", value)
55
56
 
56
57
  @property
57
58
  @pulumi.getter(name="applicationGuid")
58
- def application_guid(self) -> pulumi.Input[str]:
59
+ def application_guid(self) -> pulumi.Input[builtins.str]:
59
60
  """
60
61
  The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
61
62
  """
62
63
  return pulumi.get(self, "application_guid")
63
64
 
64
65
  @application_guid.setter
65
- def application_guid(self, value: pulumi.Input[str]):
66
+ def application_guid(self, value: pulumi.Input[builtins.str]):
66
67
  pulumi.set(self, "application_guid", value)
67
68
 
68
69
  @property
69
70
  @pulumi.getter(name="browserApdexTarget")
70
- def browser_apdex_target(self) -> pulumi.Input[float]:
71
+ def browser_apdex_target(self) -> pulumi.Input[builtins.float]:
71
72
  """
72
73
  A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
73
74
 
@@ -76,55 +77,55 @@ class KeyTransactionArgs:
76
77
  return pulumi.get(self, "browser_apdex_target")
77
78
 
78
79
  @browser_apdex_target.setter
79
- def browser_apdex_target(self, value: pulumi.Input[float]):
80
+ def browser_apdex_target(self, value: pulumi.Input[builtins.float]):
80
81
  pulumi.set(self, "browser_apdex_target", value)
81
82
 
82
83
  @property
83
84
  @pulumi.getter(name="metricName")
84
- def metric_name(self) -> pulumi.Input[str]:
85
+ def metric_name(self) -> pulumi.Input[builtins.str]:
85
86
  """
86
87
  The name of the underlying metric monitored by the key transaction to be created.
87
88
  """
88
89
  return pulumi.get(self, "metric_name")
89
90
 
90
91
  @metric_name.setter
91
- def metric_name(self, value: pulumi.Input[str]):
92
+ def metric_name(self, value: pulumi.Input[builtins.str]):
92
93
  pulumi.set(self, "metric_name", value)
93
94
 
94
95
  @property
95
96
  @pulumi.getter
96
- def name(self) -> Optional[pulumi.Input[str]]:
97
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
97
98
  """
98
99
  The name of the key transaction.
99
100
  """
100
101
  return pulumi.get(self, "name")
101
102
 
102
103
  @name.setter
103
- def name(self, value: Optional[pulumi.Input[str]]):
104
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
104
105
  pulumi.set(self, "name", value)
105
106
 
106
107
 
107
108
  @pulumi.input_type
108
109
  class _KeyTransactionState:
109
110
  def __init__(__self__, *,
110
- apdex_index: Optional[pulumi.Input[float]] = None,
111
- application_guid: Optional[pulumi.Input[str]] = None,
112
- browser_apdex_target: Optional[pulumi.Input[float]] = None,
113
- domain: Optional[pulumi.Input[str]] = None,
114
- metric_name: Optional[pulumi.Input[str]] = None,
115
- name: Optional[pulumi.Input[str]] = None,
116
- type: Optional[pulumi.Input[str]] = None):
111
+ apdex_index: Optional[pulumi.Input[builtins.float]] = None,
112
+ application_guid: Optional[pulumi.Input[builtins.str]] = None,
113
+ browser_apdex_target: Optional[pulumi.Input[builtins.float]] = None,
114
+ domain: Optional[pulumi.Input[builtins.str]] = None,
115
+ metric_name: Optional[pulumi.Input[builtins.str]] = None,
116
+ name: Optional[pulumi.Input[builtins.str]] = None,
117
+ type: Optional[pulumi.Input[builtins.str]] = None):
117
118
  """
118
119
  Input properties used for looking up and filtering KeyTransaction resources.
119
- :param pulumi.Input[float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
120
- :param pulumi.Input[str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
121
- :param pulumi.Input[float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
120
+ :param pulumi.Input[builtins.float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
121
+ :param pulumi.Input[builtins.str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
122
+ :param pulumi.Input[builtins.float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
122
123
 
123
124
  > **NOTE:** It may be noted that the `metric_name` and `application_guid` of a Key Transaction _cannot_ be updated in a key transaction that has already been created; since this is not supported. As a consequence, altering the values of `application_guid` and/or `metric_name` of a `KeyTransaction` resource created (to try updating these values) would result in `pulumi preview` prompting a forced destruction and re-creation of the resource.
124
- :param pulumi.Input[str] domain: The domain of the entity monitored by the key transaction.
125
- :param pulumi.Input[str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
126
- :param pulumi.Input[str] name: The name of the key transaction.
127
- :param pulumi.Input[str] type: The type of the entity monitored by the key transaction.
125
+ :param pulumi.Input[builtins.str] domain: The domain of the entity monitored by the key transaction.
126
+ :param pulumi.Input[builtins.str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
127
+ :param pulumi.Input[builtins.str] name: The name of the key transaction.
128
+ :param pulumi.Input[builtins.str] type: The type of the entity monitored by the key transaction.
128
129
  """
129
130
  if apdex_index is not None:
130
131
  pulumi.set(__self__, "apdex_index", apdex_index)
@@ -143,31 +144,31 @@ class _KeyTransactionState:
143
144
 
144
145
  @property
145
146
  @pulumi.getter(name="apdexIndex")
146
- def apdex_index(self) -> Optional[pulumi.Input[float]]:
147
+ def apdex_index(self) -> Optional[pulumi.Input[builtins.float]]:
147
148
  """
148
149
  A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
149
150
  """
150
151
  return pulumi.get(self, "apdex_index")
151
152
 
152
153
  @apdex_index.setter
153
- def apdex_index(self, value: Optional[pulumi.Input[float]]):
154
+ def apdex_index(self, value: Optional[pulumi.Input[builtins.float]]):
154
155
  pulumi.set(self, "apdex_index", value)
155
156
 
156
157
  @property
157
158
  @pulumi.getter(name="applicationGuid")
158
- def application_guid(self) -> Optional[pulumi.Input[str]]:
159
+ def application_guid(self) -> Optional[pulumi.Input[builtins.str]]:
159
160
  """
160
161
  The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
161
162
  """
162
163
  return pulumi.get(self, "application_guid")
163
164
 
164
165
  @application_guid.setter
165
- def application_guid(self, value: Optional[pulumi.Input[str]]):
166
+ def application_guid(self, value: Optional[pulumi.Input[builtins.str]]):
166
167
  pulumi.set(self, "application_guid", value)
167
168
 
168
169
  @property
169
170
  @pulumi.getter(name="browserApdexTarget")
170
- def browser_apdex_target(self) -> Optional[pulumi.Input[float]]:
171
+ def browser_apdex_target(self) -> Optional[pulumi.Input[builtins.float]]:
171
172
  """
172
173
  A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
173
174
 
@@ -176,55 +177,55 @@ class _KeyTransactionState:
176
177
  return pulumi.get(self, "browser_apdex_target")
177
178
 
178
179
  @browser_apdex_target.setter
179
- def browser_apdex_target(self, value: Optional[pulumi.Input[float]]):
180
+ def browser_apdex_target(self, value: Optional[pulumi.Input[builtins.float]]):
180
181
  pulumi.set(self, "browser_apdex_target", value)
181
182
 
182
183
  @property
183
184
  @pulumi.getter
184
- def domain(self) -> Optional[pulumi.Input[str]]:
185
+ def domain(self) -> Optional[pulumi.Input[builtins.str]]:
185
186
  """
186
187
  The domain of the entity monitored by the key transaction.
187
188
  """
188
189
  return pulumi.get(self, "domain")
189
190
 
190
191
  @domain.setter
191
- def domain(self, value: Optional[pulumi.Input[str]]):
192
+ def domain(self, value: Optional[pulumi.Input[builtins.str]]):
192
193
  pulumi.set(self, "domain", value)
193
194
 
194
195
  @property
195
196
  @pulumi.getter(name="metricName")
196
- def metric_name(self) -> Optional[pulumi.Input[str]]:
197
+ def metric_name(self) -> Optional[pulumi.Input[builtins.str]]:
197
198
  """
198
199
  The name of the underlying metric monitored by the key transaction to be created.
199
200
  """
200
201
  return pulumi.get(self, "metric_name")
201
202
 
202
203
  @metric_name.setter
203
- def metric_name(self, value: Optional[pulumi.Input[str]]):
204
+ def metric_name(self, value: Optional[pulumi.Input[builtins.str]]):
204
205
  pulumi.set(self, "metric_name", value)
205
206
 
206
207
  @property
207
208
  @pulumi.getter
208
- def name(self) -> Optional[pulumi.Input[str]]:
209
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
209
210
  """
210
211
  The name of the key transaction.
211
212
  """
212
213
  return pulumi.get(self, "name")
213
214
 
214
215
  @name.setter
215
- def name(self, value: Optional[pulumi.Input[str]]):
216
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
216
217
  pulumi.set(self, "name", value)
217
218
 
218
219
  @property
219
220
  @pulumi.getter
220
- def type(self) -> Optional[pulumi.Input[str]]:
221
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
221
222
  """
222
223
  The type of the entity monitored by the key transaction.
223
224
  """
224
225
  return pulumi.get(self, "type")
225
226
 
226
227
  @type.setter
227
- def type(self, value: Optional[pulumi.Input[str]]):
228
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
228
229
  pulumi.set(self, "type", value)
229
230
 
230
231
 
@@ -233,11 +234,11 @@ class KeyTransaction(pulumi.CustomResource):
233
234
  def __init__(__self__,
234
235
  resource_name: str,
235
236
  opts: Optional[pulumi.ResourceOptions] = None,
236
- apdex_index: Optional[pulumi.Input[float]] = None,
237
- application_guid: Optional[pulumi.Input[str]] = None,
238
- browser_apdex_target: Optional[pulumi.Input[float]] = None,
239
- metric_name: Optional[pulumi.Input[str]] = None,
240
- name: Optional[pulumi.Input[str]] = None,
237
+ apdex_index: Optional[pulumi.Input[builtins.float]] = None,
238
+ application_guid: Optional[pulumi.Input[builtins.str]] = None,
239
+ browser_apdex_target: Optional[pulumi.Input[builtins.float]] = None,
240
+ metric_name: Optional[pulumi.Input[builtins.str]] = None,
241
+ name: Optional[pulumi.Input[builtins.str]] = None,
241
242
  __props__=None):
242
243
  """
243
244
  Use this resource to create a new Key Transaction in New Relic.
@@ -270,13 +271,13 @@ class KeyTransaction(pulumi.CustomResource):
270
271
 
271
272
  :param str resource_name: The name of the resource.
272
273
  :param pulumi.ResourceOptions opts: Options for the resource.
273
- :param pulumi.Input[float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
274
- :param pulumi.Input[str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
275
- :param pulumi.Input[float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
274
+ :param pulumi.Input[builtins.float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
275
+ :param pulumi.Input[builtins.str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
276
+ :param pulumi.Input[builtins.float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
276
277
 
277
278
  > **NOTE:** It may be noted that the `metric_name` and `application_guid` of a Key Transaction _cannot_ be updated in a key transaction that has already been created; since this is not supported. As a consequence, altering the values of `application_guid` and/or `metric_name` of a `KeyTransaction` resource created (to try updating these values) would result in `pulumi preview` prompting a forced destruction and re-creation of the resource.
278
- :param pulumi.Input[str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
279
- :param pulumi.Input[str] name: The name of the key transaction.
279
+ :param pulumi.Input[builtins.str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
280
+ :param pulumi.Input[builtins.str] name: The name of the key transaction.
280
281
  """
281
282
  ...
282
283
  @overload
@@ -328,11 +329,11 @@ class KeyTransaction(pulumi.CustomResource):
328
329
  def _internal_init(__self__,
329
330
  resource_name: str,
330
331
  opts: Optional[pulumi.ResourceOptions] = None,
331
- apdex_index: Optional[pulumi.Input[float]] = None,
332
- application_guid: Optional[pulumi.Input[str]] = None,
333
- browser_apdex_target: Optional[pulumi.Input[float]] = None,
334
- metric_name: Optional[pulumi.Input[str]] = None,
335
- name: Optional[pulumi.Input[str]] = None,
332
+ apdex_index: Optional[pulumi.Input[builtins.float]] = None,
333
+ application_guid: Optional[pulumi.Input[builtins.str]] = None,
334
+ browser_apdex_target: Optional[pulumi.Input[builtins.float]] = None,
335
+ metric_name: Optional[pulumi.Input[builtins.str]] = None,
336
+ name: Optional[pulumi.Input[builtins.str]] = None,
336
337
  __props__=None):
337
338
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
338
339
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -367,13 +368,13 @@ class KeyTransaction(pulumi.CustomResource):
367
368
  def get(resource_name: str,
368
369
  id: pulumi.Input[str],
369
370
  opts: Optional[pulumi.ResourceOptions] = None,
370
- apdex_index: Optional[pulumi.Input[float]] = None,
371
- application_guid: Optional[pulumi.Input[str]] = None,
372
- browser_apdex_target: Optional[pulumi.Input[float]] = None,
373
- domain: Optional[pulumi.Input[str]] = None,
374
- metric_name: Optional[pulumi.Input[str]] = None,
375
- name: Optional[pulumi.Input[str]] = None,
376
- type: Optional[pulumi.Input[str]] = None) -> 'KeyTransaction':
371
+ apdex_index: Optional[pulumi.Input[builtins.float]] = None,
372
+ application_guid: Optional[pulumi.Input[builtins.str]] = None,
373
+ browser_apdex_target: Optional[pulumi.Input[builtins.float]] = None,
374
+ domain: Optional[pulumi.Input[builtins.str]] = None,
375
+ metric_name: Optional[pulumi.Input[builtins.str]] = None,
376
+ name: Optional[pulumi.Input[builtins.str]] = None,
377
+ type: Optional[pulumi.Input[builtins.str]] = None) -> 'KeyTransaction':
377
378
  """
378
379
  Get an existing KeyTransaction resource's state with the given name, id, and optional extra
379
380
  properties used to qualify the lookup.
@@ -381,15 +382,15 @@ class KeyTransaction(pulumi.CustomResource):
381
382
  :param str resource_name: The unique name of the resulting resource.
382
383
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
383
384
  :param pulumi.ResourceOptions opts: Options for the resource.
384
- :param pulumi.Input[float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
385
- :param pulumi.Input[str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
386
- :param pulumi.Input[float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
385
+ :param pulumi.Input[builtins.float] apdex_index: A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
386
+ :param pulumi.Input[builtins.str] application_guid: The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
387
+ :param pulumi.Input[builtins.float] browser_apdex_target: A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
387
388
 
388
389
  > **NOTE:** It may be noted that the `metric_name` and `application_guid` of a Key Transaction _cannot_ be updated in a key transaction that has already been created; since this is not supported. As a consequence, altering the values of `application_guid` and/or `metric_name` of a `KeyTransaction` resource created (to try updating these values) would result in `pulumi preview` prompting a forced destruction and re-creation of the resource.
389
- :param pulumi.Input[str] domain: The domain of the entity monitored by the key transaction.
390
- :param pulumi.Input[str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
391
- :param pulumi.Input[str] name: The name of the key transaction.
392
- :param pulumi.Input[str] type: The type of the entity monitored by the key transaction.
390
+ :param pulumi.Input[builtins.str] domain: The domain of the entity monitored by the key transaction.
391
+ :param pulumi.Input[builtins.str] metric_name: The name of the underlying metric monitored by the key transaction to be created.
392
+ :param pulumi.Input[builtins.str] name: The name of the key transaction.
393
+ :param pulumi.Input[builtins.str] type: The type of the entity monitored by the key transaction.
393
394
  """
394
395
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
395
396
 
@@ -406,7 +407,7 @@ class KeyTransaction(pulumi.CustomResource):
406
407
 
407
408
  @property
408
409
  @pulumi.getter(name="apdexIndex")
409
- def apdex_index(self) -> pulumi.Output[float]:
410
+ def apdex_index(self) -> pulumi.Output[builtins.float]:
410
411
  """
411
412
  A decimal value, measuring user satisfaction with response times, ranging from 0 (frustrated) to 1 (satisfied).
412
413
  """
@@ -414,7 +415,7 @@ class KeyTransaction(pulumi.CustomResource):
414
415
 
415
416
  @property
416
417
  @pulumi.getter(name="applicationGuid")
417
- def application_guid(self) -> pulumi.Output[str]:
418
+ def application_guid(self) -> pulumi.Output[builtins.str]:
418
419
  """
419
420
  The GUID of the APM Application comprising transactions, of which one would be made a key transaction.
420
421
  """
@@ -422,7 +423,7 @@ class KeyTransaction(pulumi.CustomResource):
422
423
 
423
424
  @property
424
425
  @pulumi.getter(name="browserApdexTarget")
425
- def browser_apdex_target(self) -> pulumi.Output[float]:
426
+ def browser_apdex_target(self) -> pulumi.Output[builtins.float]:
426
427
  """
427
428
  A decimal value representing the response time threshold for satisfactory experience (e.g., 0.5 seconds).
428
429
 
@@ -432,7 +433,7 @@ class KeyTransaction(pulumi.CustomResource):
432
433
 
433
434
  @property
434
435
  @pulumi.getter
435
- def domain(self) -> pulumi.Output[str]:
436
+ def domain(self) -> pulumi.Output[builtins.str]:
436
437
  """
437
438
  The domain of the entity monitored by the key transaction.
438
439
  """
@@ -440,7 +441,7 @@ class KeyTransaction(pulumi.CustomResource):
440
441
 
441
442
  @property
442
443
  @pulumi.getter(name="metricName")
443
- def metric_name(self) -> pulumi.Output[str]:
444
+ def metric_name(self) -> pulumi.Output[builtins.str]:
444
445
  """
445
446
  The name of the underlying metric monitored by the key transaction to be created.
446
447
  """
@@ -448,7 +449,7 @@ class KeyTransaction(pulumi.CustomResource):
448
449
 
449
450
  @property
450
451
  @pulumi.getter
451
- def name(self) -> pulumi.Output[str]:
452
+ def name(self) -> pulumi.Output[builtins.str]:
452
453
  """
453
454
  The name of the key transaction.
454
455
  """
@@ -456,7 +457,7 @@ class KeyTransaction(pulumi.CustomResource):
456
457
 
457
458
  @property
458
459
  @pulumi.getter
459
- def type(self) -> pulumi.Output[str]:
460
+ def type(self) -> pulumi.Output[builtins.str]:
460
461
  """
461
462
  The type of the entity monitored by the key transaction.
462
463
  """