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,18 +20,18 @@ __all__ = ['SecureCredentialArgs', 'SecureCredential']
19
20
  @pulumi.input_type
20
21
  class SecureCredentialArgs:
21
22
  def __init__(__self__, *,
22
- key: pulumi.Input[str],
23
- value: pulumi.Input[str],
24
- account_id: Optional[pulumi.Input[str]] = None,
25
- description: Optional[pulumi.Input[str]] = None,
26
- last_updated: Optional[pulumi.Input[str]] = None):
23
+ key: pulumi.Input[builtins.str],
24
+ value: pulumi.Input[builtins.str],
25
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
26
+ description: Optional[pulumi.Input[builtins.str]] = None,
27
+ last_updated: Optional[pulumi.Input[builtins.str]] = None):
27
28
  """
28
29
  The set of arguments for constructing a SecureCredential resource.
29
- :param pulumi.Input[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.
30
- :param pulumi.Input[str] value: The secure credential's value.
31
- :param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
32
- :param pulumi.Input[str] description: The secure credential's description.
33
- :param pulumi.Input[str] last_updated: The time the secure credential was last updated.
30
+ :param pulumi.Input[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.
31
+ :param pulumi.Input[builtins.str] value: The secure credential's value.
32
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
33
+ :param pulumi.Input[builtins.str] description: The secure credential's description.
34
+ :param pulumi.Input[builtins.str] last_updated: The time the secure credential was last updated.
34
35
  """
35
36
  pulumi.set(__self__, "key", key)
36
37
  pulumi.set(__self__, "value", value)
@@ -43,80 +44,80 @@ class SecureCredentialArgs:
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def key(self) -> pulumi.Input[str]:
47
+ def key(self) -> pulumi.Input[builtins.str]:
47
48
  """
48
49
  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.
49
50
  """
50
51
  return pulumi.get(self, "key")
51
52
 
52
53
  @key.setter
53
- def key(self, value: pulumi.Input[str]):
54
+ def key(self, value: pulumi.Input[builtins.str]):
54
55
  pulumi.set(self, "key", value)
55
56
 
56
57
  @property
57
58
  @pulumi.getter
58
- def value(self) -> pulumi.Input[str]:
59
+ def value(self) -> pulumi.Input[builtins.str]:
59
60
  """
60
61
  The secure credential's value.
61
62
  """
62
63
  return pulumi.get(self, "value")
63
64
 
64
65
  @value.setter
65
- def value(self, value: pulumi.Input[str]):
66
+ def value(self, value: pulumi.Input[builtins.str]):
66
67
  pulumi.set(self, "value", value)
67
68
 
68
69
  @property
69
70
  @pulumi.getter(name="accountId")
70
- def account_id(self) -> Optional[pulumi.Input[str]]:
71
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
71
72
  """
72
73
  Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
73
74
  """
74
75
  return pulumi.get(self, "account_id")
75
76
 
76
77
  @account_id.setter
77
- def account_id(self, value: Optional[pulumi.Input[str]]):
78
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
78
79
  pulumi.set(self, "account_id", value)
79
80
 
80
81
  @property
81
82
  @pulumi.getter
82
- def description(self) -> Optional[pulumi.Input[str]]:
83
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
83
84
  """
84
85
  The secure credential's description.
85
86
  """
86
87
  return pulumi.get(self, "description")
87
88
 
88
89
  @description.setter
89
- def description(self, value: Optional[pulumi.Input[str]]):
90
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
90
91
  pulumi.set(self, "description", value)
91
92
 
92
93
  @property
93
94
  @pulumi.getter(name="lastUpdated")
94
- def last_updated(self) -> Optional[pulumi.Input[str]]:
95
+ def last_updated(self) -> Optional[pulumi.Input[builtins.str]]:
95
96
  """
96
97
  The time the secure credential was last updated.
97
98
  """
98
99
  return pulumi.get(self, "last_updated")
99
100
 
100
101
  @last_updated.setter
101
- def last_updated(self, value: Optional[pulumi.Input[str]]):
102
+ def last_updated(self, value: Optional[pulumi.Input[builtins.str]]):
102
103
  pulumi.set(self, "last_updated", value)
103
104
 
104
105
 
105
106
  @pulumi.input_type
106
107
  class _SecureCredentialState:
107
108
  def __init__(__self__, *,
108
- account_id: Optional[pulumi.Input[str]] = None,
109
- description: Optional[pulumi.Input[str]] = None,
110
- key: Optional[pulumi.Input[str]] = None,
111
- last_updated: Optional[pulumi.Input[str]] = None,
112
- value: Optional[pulumi.Input[str]] = None):
109
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
110
+ description: Optional[pulumi.Input[builtins.str]] = None,
111
+ key: Optional[pulumi.Input[builtins.str]] = None,
112
+ last_updated: Optional[pulumi.Input[builtins.str]] = None,
113
+ value: Optional[pulumi.Input[builtins.str]] = None):
113
114
  """
114
115
  Input properties used for looking up and filtering SecureCredential resources.
115
- :param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
116
- :param pulumi.Input[str] description: The secure credential's description.
117
- :param pulumi.Input[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.
118
- :param pulumi.Input[str] last_updated: The time the secure credential was last updated.
119
- :param pulumi.Input[str] value: The secure credential's value.
116
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
117
+ :param pulumi.Input[builtins.str] description: The secure credential's description.
118
+ :param pulumi.Input[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.
119
+ :param pulumi.Input[builtins.str] last_updated: The time the secure credential was last updated.
120
+ :param pulumi.Input[builtins.str] value: The secure credential's value.
120
121
  """
121
122
  if account_id is not None:
122
123
  pulumi.set(__self__, "account_id", account_id)
@@ -131,62 +132,62 @@ class _SecureCredentialState:
131
132
 
132
133
  @property
133
134
  @pulumi.getter(name="accountId")
134
- def account_id(self) -> Optional[pulumi.Input[str]]:
135
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
135
136
  """
136
137
  Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
137
138
  """
138
139
  return pulumi.get(self, "account_id")
139
140
 
140
141
  @account_id.setter
141
- def account_id(self, value: Optional[pulumi.Input[str]]):
142
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
142
143
  pulumi.set(self, "account_id", value)
143
144
 
144
145
  @property
145
146
  @pulumi.getter
146
- def description(self) -> Optional[pulumi.Input[str]]:
147
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
147
148
  """
148
149
  The secure credential's description.
149
150
  """
150
151
  return pulumi.get(self, "description")
151
152
 
152
153
  @description.setter
153
- def description(self, value: Optional[pulumi.Input[str]]):
154
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
154
155
  pulumi.set(self, "description", value)
155
156
 
156
157
  @property
157
158
  @pulumi.getter
158
- def key(self) -> Optional[pulumi.Input[str]]:
159
+ def key(self) -> Optional[pulumi.Input[builtins.str]]:
159
160
  """
160
161
  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.
161
162
  """
162
163
  return pulumi.get(self, "key")
163
164
 
164
165
  @key.setter
165
- def key(self, value: Optional[pulumi.Input[str]]):
166
+ def key(self, value: Optional[pulumi.Input[builtins.str]]):
166
167
  pulumi.set(self, "key", value)
167
168
 
168
169
  @property
169
170
  @pulumi.getter(name="lastUpdated")
170
- def last_updated(self) -> Optional[pulumi.Input[str]]:
171
+ def last_updated(self) -> Optional[pulumi.Input[builtins.str]]:
171
172
  """
172
173
  The time the secure credential was last updated.
173
174
  """
174
175
  return pulumi.get(self, "last_updated")
175
176
 
176
177
  @last_updated.setter
177
- def last_updated(self, value: Optional[pulumi.Input[str]]):
178
+ def last_updated(self, value: Optional[pulumi.Input[builtins.str]]):
178
179
  pulumi.set(self, "last_updated", value)
179
180
 
180
181
  @property
181
182
  @pulumi.getter
182
- def value(self) -> Optional[pulumi.Input[str]]:
183
+ def value(self) -> Optional[pulumi.Input[builtins.str]]:
183
184
  """
184
185
  The secure credential's value.
185
186
  """
186
187
  return pulumi.get(self, "value")
187
188
 
188
189
  @value.setter
189
- def value(self, value: Optional[pulumi.Input[str]]):
190
+ def value(self, value: Optional[pulumi.Input[builtins.str]]):
190
191
  pulumi.set(self, "value", value)
191
192
 
192
193
 
@@ -195,11 +196,11 @@ class SecureCredential(pulumi.CustomResource):
195
196
  def __init__(__self__,
196
197
  resource_name: str,
197
198
  opts: Optional[pulumi.ResourceOptions] = None,
198
- account_id: Optional[pulumi.Input[str]] = None,
199
- description: Optional[pulumi.Input[str]] = None,
200
- key: Optional[pulumi.Input[str]] = None,
201
- last_updated: Optional[pulumi.Input[str]] = None,
202
- value: Optional[pulumi.Input[str]] = None,
199
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
200
+ description: Optional[pulumi.Input[builtins.str]] = None,
201
+ key: Optional[pulumi.Input[builtins.str]] = None,
202
+ last_updated: Optional[pulumi.Input[builtins.str]] = None,
203
+ value: Optional[pulumi.Input[builtins.str]] = None,
203
204
  __props__=None):
204
205
  """
205
206
  Use this resource to create and manage New Relic Synthetic secure credentials.
@@ -226,11 +227,11 @@ class SecureCredential(pulumi.CustomResource):
226
227
 
227
228
  :param str resource_name: The name of the resource.
228
229
  :param pulumi.ResourceOptions opts: Options for the resource.
229
- :param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
230
- :param pulumi.Input[str] description: The secure credential's description.
231
- :param pulumi.Input[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.
232
- :param pulumi.Input[str] last_updated: The time the secure credential was last updated.
233
- :param pulumi.Input[str] value: The secure credential's value.
230
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
231
+ :param pulumi.Input[builtins.str] description: The secure credential's description.
232
+ :param pulumi.Input[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.
233
+ :param pulumi.Input[builtins.str] last_updated: The time the secure credential was last updated.
234
+ :param pulumi.Input[builtins.str] value: The secure credential's value.
234
235
  """
235
236
  ...
236
237
  @overload
@@ -276,11 +277,11 @@ class SecureCredential(pulumi.CustomResource):
276
277
  def _internal_init(__self__,
277
278
  resource_name: str,
278
279
  opts: Optional[pulumi.ResourceOptions] = None,
279
- account_id: Optional[pulumi.Input[str]] = None,
280
- description: Optional[pulumi.Input[str]] = None,
281
- key: Optional[pulumi.Input[str]] = None,
282
- last_updated: Optional[pulumi.Input[str]] = None,
283
- value: Optional[pulumi.Input[str]] = None,
280
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
281
+ description: Optional[pulumi.Input[builtins.str]] = None,
282
+ key: Optional[pulumi.Input[builtins.str]] = None,
283
+ last_updated: Optional[pulumi.Input[builtins.str]] = None,
284
+ value: Optional[pulumi.Input[builtins.str]] = None,
284
285
  __props__=None):
285
286
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
286
287
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -311,11 +312,11 @@ class SecureCredential(pulumi.CustomResource):
311
312
  def get(resource_name: str,
312
313
  id: pulumi.Input[str],
313
314
  opts: Optional[pulumi.ResourceOptions] = None,
314
- account_id: Optional[pulumi.Input[str]] = None,
315
- description: Optional[pulumi.Input[str]] = None,
316
- key: Optional[pulumi.Input[str]] = None,
317
- last_updated: Optional[pulumi.Input[str]] = None,
318
- value: Optional[pulumi.Input[str]] = None) -> 'SecureCredential':
315
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
316
+ description: Optional[pulumi.Input[builtins.str]] = None,
317
+ key: Optional[pulumi.Input[builtins.str]] = None,
318
+ last_updated: Optional[pulumi.Input[builtins.str]] = None,
319
+ value: Optional[pulumi.Input[builtins.str]] = None) -> 'SecureCredential':
319
320
  """
320
321
  Get an existing SecureCredential resource's state with the given name, id, and optional extra
321
322
  properties used to qualify the lookup.
@@ -323,11 +324,11 @@ class SecureCredential(pulumi.CustomResource):
323
324
  :param str resource_name: The unique name of the resulting resource.
324
325
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
325
326
  :param pulumi.ResourceOptions opts: Options for the resource.
326
- :param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
327
- :param pulumi.Input[str] description: The secure credential's description.
328
- :param pulumi.Input[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.
329
- :param pulumi.Input[str] last_updated: The time the secure credential was last updated.
330
- :param pulumi.Input[str] value: The secure credential's value.
327
+ :param pulumi.Input[builtins.str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
328
+ :param pulumi.Input[builtins.str] description: The secure credential's description.
329
+ :param pulumi.Input[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.
330
+ :param pulumi.Input[builtins.str] last_updated: The time the secure credential was last updated.
331
+ :param pulumi.Input[builtins.str] value: The secure credential's value.
331
332
  """
332
333
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
333
334
 
@@ -342,7 +343,7 @@ class SecureCredential(pulumi.CustomResource):
342
343
 
343
344
  @property
344
345
  @pulumi.getter(name="accountId")
345
- def account_id(self) -> pulumi.Output[str]:
346
+ def account_id(self) -> pulumi.Output[builtins.str]:
346
347
  """
347
348
  Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
348
349
  """
@@ -350,7 +351,7 @@ class SecureCredential(pulumi.CustomResource):
350
351
 
351
352
  @property
352
353
  @pulumi.getter
353
- def description(self) -> pulumi.Output[Optional[str]]:
354
+ def description(self) -> pulumi.Output[Optional[builtins.str]]:
354
355
  """
355
356
  The secure credential's description.
356
357
  """
@@ -358,7 +359,7 @@ class SecureCredential(pulumi.CustomResource):
358
359
 
359
360
  @property
360
361
  @pulumi.getter
361
- def key(self) -> pulumi.Output[str]:
362
+ def key(self) -> pulumi.Output[builtins.str]:
362
363
  """
363
364
  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.
364
365
  """
@@ -366,7 +367,7 @@ class SecureCredential(pulumi.CustomResource):
366
367
 
367
368
  @property
368
369
  @pulumi.getter(name="lastUpdated")
369
- def last_updated(self) -> pulumi.Output[str]:
370
+ def last_updated(self) -> pulumi.Output[builtins.str]:
370
371
  """
371
372
  The time the secure credential was last updated.
372
373
  """
@@ -374,7 +375,7 @@ class SecureCredential(pulumi.CustomResource):
374
375
 
375
376
  @property
376
377
  @pulumi.getter
377
- def value(self) -> pulumi.Output[str]:
378
+ def value(self) -> pulumi.Output[builtins.str]:
378
379
  """
379
380
  The secure credential's value.
380
381
  """