pulumi-newrelic 5.37.0a1733394031__py3-none-any.whl → 5.38.0a1733787976__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -114,7 +114,7 @@ def get_account(account_id: Optional[str] = None,
114
114
  def get_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
115
115
  name: Optional[pulumi.Input[Optional[str]]] = None,
116
116
  scope: Optional[pulumi.Input[Optional[str]]] = None,
117
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountResult]:
117
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountResult]:
118
118
  """
119
119
  Use this data source to get information about a specific account in New Relic.
120
120
  Accounts can be located by ID or name. At most one of the two attributes can
@@ -138,7 +138,7 @@ def get_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
138
138
  __args__['accountId'] = account_id
139
139
  __args__['name'] = name
140
140
  __args__['scope'] = scope
141
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
141
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
142
142
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getAccount:getAccount', __args__, opts=opts, typ=GetAccountResult)
143
143
  return __ret__.apply(lambda __response__: GetAccountResult(
144
144
  account_id=pulumi.get(__response__, 'account_id'),
@@ -131,7 +131,7 @@ def get_alert_channel(account_id: Optional[str] = None,
131
131
  type=pulumi.get(__ret__, 'type'))
132
132
  def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
133
133
  name: Optional[pulumi.Input[str]] = None,
134
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAlertChannelResult]:
134
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertChannelResult]:
135
135
  """
136
136
  Use this data source to get information about a specific alert channel in New Relic that already exists.
137
137
 
@@ -144,7 +144,7 @@ def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[str]]] =
144
144
  __args__ = dict()
145
145
  __args__['accountId'] = account_id
146
146
  __args__['name'] = name
147
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
147
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
148
148
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getAlertChannel:getAlertChannel', __args__, opts=opts, typ=GetAlertChannelResult)
149
149
  return __ret__.apply(lambda __response__: GetAlertChannelResult(
150
150
  account_id=pulumi.get(__response__, 'account_id'),
@@ -138,7 +138,7 @@ def get_alert_policy(account_id: Optional[str] = None,
138
138
  def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
139
139
  incident_preference: Optional[pulumi.Input[Optional[str]]] = None,
140
140
  name: Optional[pulumi.Input[str]] = None,
141
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAlertPolicyResult]:
141
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertPolicyResult]:
142
142
  """
143
143
  Use this data source to get information about a specific alert policy in New Relic that already exists.
144
144
 
@@ -154,7 +154,7 @@ def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[str]]] =
154
154
  __args__['accountId'] = account_id
155
155
  __args__['incidentPreference'] = incident_preference
156
156
  __args__['name'] = name
157
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
157
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
158
158
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getAlertPolicy:getAlertPolicy', __args__, opts=opts, typ=GetAlertPolicyResult)
159
159
  return __ret__.apply(lambda __response__: GetAlertPolicyResult(
160
160
  account_id=pulumi.get(__response__, 'account_id'),
@@ -127,7 +127,7 @@ def get_application(name: Optional[str] = None,
127
127
  instance_ids=pulumi.get(__ret__, 'instance_ids'),
128
128
  name=pulumi.get(__ret__, 'name'))
129
129
  def get_application_output(name: Optional[pulumi.Input[str]] = None,
130
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetApplicationResult]:
130
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApplicationResult]:
131
131
  """
132
132
  #### DEPRECATED! Use at your own risk. Use the `get_entity` data source instead. This feature may be removed in the next major release
133
133
 
@@ -162,7 +162,7 @@ def get_application_output(name: Optional[pulumi.Input[str]] = None,
162
162
  """
163
163
  __args__ = dict()
164
164
  __args__['name'] = name
165
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
165
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
166
166
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getApplication:getApplication', __args__, opts=opts, typ=GetApplicationResult)
167
167
  return __ret__.apply(lambda __response__: GetApplicationResult(
168
168
  host_ids=pulumi.get(__response__, 'host_ids'),
@@ -85,7 +85,7 @@ def get_authentication_domain(name: Optional[str] = None,
85
85
  id=pulumi.get(__ret__, 'id'),
86
86
  name=pulumi.get(__ret__, 'name'))
87
87
  def get_authentication_domain_output(name: Optional[pulumi.Input[str]] = None,
88
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthenticationDomainResult]:
88
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthenticationDomainResult]:
89
89
  """
90
90
  Use this data source to fetch the ID of an authentication domain belonging to your account, matching the specified name.
91
91
 
@@ -104,7 +104,7 @@ def get_authentication_domain_output(name: Optional[pulumi.Input[str]] = None,
104
104
  """
105
105
  __args__ = dict()
106
106
  __args__['name'] = name
107
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
107
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
108
108
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getAuthenticationDomain:getAuthenticationDomain', __args__, opts=opts, typ=GetAuthenticationDomainResult)
109
109
  return __ret__.apply(lambda __response__: GetAuthenticationDomainResult(
110
110
  id=pulumi.get(__response__, 'id'),
@@ -115,7 +115,7 @@ def get_cloud_account(account_id: Optional[str] = None,
115
115
  def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
116
116
  cloud_provider: Optional[pulumi.Input[str]] = None,
117
117
  name: Optional[pulumi.Input[str]] = None,
118
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudAccountResult]:
118
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudAccountResult]:
119
119
  """
120
120
  Use this data source to get information about a specific cloud account linked to New Relic.
121
121
  Accounts can be located by a combination of New Relic Account ID, name and cloud provider (aws, gcp, azure, etc). Name and cloud provider are required attributes. If no account_id is specified on the resource the provider level account_id will be used.
@@ -140,7 +140,7 @@ def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[str]]] =
140
140
  __args__['accountId'] = account_id
141
141
  __args__['cloudProvider'] = cloud_provider
142
142
  __args__['name'] = name
143
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
143
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
144
144
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getCloudAccount:getCloudAccount', __args__, opts=opts, typ=GetCloudAccountResult)
145
145
  return __ret__.apply(lambda __response__: GetCloudAccountResult(
146
146
  account_id=pulumi.get(__response__, 'account_id'),
@@ -220,7 +220,7 @@ def get_entity_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
220
220
  name: Optional[pulumi.Input[str]] = None,
221
221
  tags: Optional[pulumi.Input[Optional[Sequence[Union['GetEntityTagArgs', 'GetEntityTagArgsDict']]]]] = None,
222
222
  type: Optional[pulumi.Input[Optional[str]]] = None,
223
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEntityResult]:
223
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEntityResult]:
224
224
  """
225
225
  Use this data source to access information about an existing resource.
226
226
 
@@ -245,7 +245,7 @@ def get_entity_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
245
245
  __args__['name'] = name
246
246
  __args__['tags'] = tags
247
247
  __args__['type'] = type
248
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
248
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
249
249
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getEntity:getEntity', __args__, opts=opts, typ=GetEntityResult)
250
250
  return __ret__.apply(lambda __response__: GetEntityResult(
251
251
  account_id=pulumi.get(__response__, 'account_id'),
@@ -136,7 +136,7 @@ def get_group(authentication_domain_id: Optional[str] = None,
136
136
  user_ids=pulumi.get(__ret__, 'user_ids'))
137
137
  def get_group_output(authentication_domain_id: Optional[pulumi.Input[str]] = None,
138
138
  name: Optional[pulumi.Input[str]] = None,
139
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGroupResult]:
139
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGroupResult]:
140
140
  """
141
141
  The `Group` data source helps search for a group by its name and retrieve the ID of the matching group and other associated attributes.
142
142
 
@@ -181,7 +181,7 @@ def get_group_output(authentication_domain_id: Optional[pulumi.Input[str]] = Non
181
181
  __args__ = dict()
182
182
  __args__['authenticationDomainId'] = authentication_domain_id
183
183
  __args__['name'] = name
184
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
184
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
185
185
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getGroup:getGroup', __args__, opts=opts, typ=GetGroupResult)
186
186
  return __ret__.apply(lambda __response__: GetGroupResult(
187
187
  authentication_domain_id=pulumi.get(__response__, 'authentication_domain_id'),
@@ -158,7 +158,7 @@ def get_key_transaction(account_id: Optional[str] = None,
158
158
  def get_key_transaction_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
159
159
  guid: Optional[pulumi.Input[Optional[str]]] = None,
160
160
  name: Optional[pulumi.Input[str]] = None,
161
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKeyTransactionResult]:
161
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetKeyTransactionResult]:
162
162
  """
163
163
  Use this data source to get information about a specific key transaction in New Relic that already exists.
164
164
 
@@ -197,7 +197,7 @@ def get_key_transaction_output(account_id: Optional[pulumi.Input[Optional[str]]]
197
197
  __args__['accountId'] = account_id
198
198
  __args__['guid'] = guid
199
199
  __args__['name'] = name
200
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
200
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
201
201
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getKeyTransaction:getKeyTransaction', __args__, opts=opts, typ=GetKeyTransactionResult)
202
202
  return __ret__.apply(lambda __response__: GetKeyTransactionResult(
203
203
  account_id=pulumi.get(__response__, 'account_id'),
@@ -178,7 +178,7 @@ def get_notification_destination_output(account_id: Optional[pulumi.Input[Option
178
178
  id: Optional[pulumi.Input[Optional[str]]] = None,
179
179
  name: Optional[pulumi.Input[Optional[str]]] = None,
180
180
  secure_urls: Optional[pulumi.Input[Optional[Sequence[Union['GetNotificationDestinationSecureUrlArgs', 'GetNotificationDestinationSecureUrlArgsDict']]]]] = None,
181
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetNotificationDestinationResult]:
181
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNotificationDestinationResult]:
182
182
  """
183
183
  Use this data source to access information about an existing resource.
184
184
 
@@ -194,7 +194,7 @@ def get_notification_destination_output(account_id: Optional[pulumi.Input[Option
194
194
  __args__['id'] = id
195
195
  __args__['name'] = name
196
196
  __args__['secureUrls'] = secure_urls
197
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
197
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
198
198
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getNotificationDestination:getNotificationDestination', __args__, opts=opts, typ=GetNotificationDestinationResult)
199
199
  return __ret__.apply(lambda __response__: GetNotificationDestinationResult(
200
200
  account_id=pulumi.get(__response__, 'account_id'),
@@ -109,7 +109,7 @@ def get_obfuscation_expression(account_id: Optional[str] = None,
109
109
  name=pulumi.get(__ret__, 'name'))
110
110
  def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
111
111
  name: Optional[pulumi.Input[str]] = None,
112
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
112
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
113
113
  """
114
114
  Use this data source to get information about a specific Obfuscation Expression in New Relic that already exists.
115
115
 
@@ -140,7 +140,7 @@ def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional
140
140
  __args__ = dict()
141
141
  __args__['accountId'] = account_id
142
142
  __args__['name'] = name
143
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
143
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
144
144
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getObfuscationExpression:getObfuscationExpression', __args__, opts=opts, typ=GetObfuscationExpressionResult)
145
145
  return __ret__.apply(lambda __response__: GetObfuscationExpressionResult(
146
146
  account_id=pulumi.get(__response__, 'account_id'),
@@ -320,7 +320,7 @@ def get_service_level_alert_helper_output(alert_type: Optional[pulumi.Input[str]
320
320
  sli_guid: Optional[pulumi.Input[str]] = None,
321
321
  slo_period: Optional[pulumi.Input[int]] = None,
322
322
  slo_target: Optional[pulumi.Input[float]] = None,
323
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLevelAlertHelperResult]:
323
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceLevelAlertHelperResult]:
324
324
  """
325
325
  Use this data source to obtain the necessary fields to set up alerts on your service levels. It can be used for a `custom` alert_type in order to set up an alert with custom tolerated budget consumption and custom evaluation period or for recommended ones like `fast_burn` or `slow_burn`. For more information check [the documentation](https://docs.newrelic.com/docs/service-level-management/alerts-slm/).
326
326
 
@@ -450,7 +450,7 @@ def get_service_level_alert_helper_output(alert_type: Optional[pulumi.Input[str]
450
450
  __args__['sliGuid'] = sli_guid
451
451
  __args__['sloPeriod'] = slo_period
452
452
  __args__['sloTarget'] = slo_target
453
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
453
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
454
454
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getServiceLevelAlertHelper:getServiceLevelAlertHelper', __args__, opts=opts, typ=GetServiceLevelAlertHelperResult)
455
455
  return __ret__.apply(lambda __response__: GetServiceLevelAlertHelperResult(
456
456
  alert_type=pulumi.get(__response__, 'alert_type'),
@@ -129,7 +129,7 @@ def get_test_grok_pattern(account_id: Optional[str] = None,
129
129
  def get_test_grok_pattern_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
130
130
  grok: Optional[pulumi.Input[str]] = None,
131
131
  log_lines: Optional[pulumi.Input[Sequence[str]]] = None,
132
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTestGrokPatternResult]:
132
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTestGrokPatternResult]:
133
133
  """
134
134
  ## Example Usage
135
135
 
@@ -154,7 +154,7 @@ def get_test_grok_pattern_output(account_id: Optional[pulumi.Input[Optional[str]
154
154
  __args__['accountId'] = account_id
155
155
  __args__['grok'] = grok
156
156
  __args__['logLines'] = log_lines
157
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
157
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
158
158
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getTestGrokPattern:getTestGrokPattern', __args__, opts=opts, typ=GetTestGrokPatternResult)
159
159
  return __ret__.apply(lambda __response__: GetTestGrokPatternResult(
160
160
  account_id=pulumi.get(__response__, 'account_id'),
@@ -123,7 +123,7 @@ def get_user(authentication_domain_id: Optional[str] = None,
123
123
  def get_user_output(authentication_domain_id: Optional[pulumi.Input[str]] = None,
124
124
  email_id: Optional[pulumi.Input[Optional[str]]] = None,
125
125
  name: Optional[pulumi.Input[Optional[str]]] = None,
126
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetUserResult]:
126
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUserResult]:
127
127
  """
128
128
  The `User` data source helps search for a user by their name and/or email ID, and accordingly, fetch the ID of the matching user.
129
129
 
@@ -156,7 +156,7 @@ def get_user_output(authentication_domain_id: Optional[pulumi.Input[str]] = None
156
156
  __args__['authenticationDomainId'] = authentication_domain_id
157
157
  __args__['emailId'] = email_id
158
158
  __args__['name'] = name
159
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
159
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
160
160
  __ret__ = pulumi.runtime.invoke_output('newrelic:index/getUser:getUser', __args__, opts=opts, typ=GetUserResult)
161
161
  return __ret__.apply(lambda __response__: GetUserResult(
162
162
  authentication_domain_id=pulumi.get(__response__, 'authentication_domain_id'),
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.37.0-alpha.1733394031"
4
+ "version": "5.38.0-alpha.1733787976"
5
5
  }
@@ -128,7 +128,7 @@ def get_private_location(account_id: Optional[str] = None,
128
128
  def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
129
129
  keys: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
130
130
  name: Optional[pulumi.Input[str]] = None,
131
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateLocationResult]:
131
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPrivateLocationResult]:
132
132
  """
133
133
  Use this data source to get information about a specific Synthetics monitor private location in New Relic that already exists.
134
134
 
@@ -163,7 +163,7 @@ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]
163
163
  __args__['accountId'] = account_id
164
164
  __args__['keys'] = keys
165
165
  __args__['name'] = name
166
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
166
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
167
167
  __ret__ = pulumi.runtime.invoke_output('newrelic:synthetics/getPrivateLocation:getPrivateLocation', __args__, opts=opts, typ=GetPrivateLocationResult)
168
168
  return __ret__.apply(lambda __response__: GetPrivateLocationResult(
169
169
  account_id=pulumi.get(__response__, 'account_id'),
@@ -126,7 +126,7 @@ def get_secure_credential(account_id: Optional[str] = None,
126
126
  last_updated=pulumi.get(__ret__, 'last_updated'))
127
127
  def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
128
128
  key: Optional[pulumi.Input[str]] = None,
129
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecureCredentialResult]:
129
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecureCredentialResult]:
130
130
  """
131
131
  Use this data source to get information about a specific Synthetics secure credential in New Relic that already exists.
132
132
 
@@ -148,7 +148,7 @@ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]
148
148
  __args__ = dict()
149
149
  __args__['accountId'] = account_id
150
150
  __args__['key'] = key
151
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
151
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
152
152
  __ret__ = pulumi.runtime.invoke_output('newrelic:synthetics/getSecureCredential:getSecureCredential', __args__, opts=opts, typ=GetSecureCredentialResult)
153
153
  return __ret__.apply(lambda __response__: GetSecureCredentialResult(
154
154
  account_id=pulumi.get(__response__, 'account_id'),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.37.0a1733394031
3
+ Version: 5.38.0a1733787976
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -12,20 +12,20 @@ pulumi_newrelic/browser_application.py,sha256=e2q117v-Z0jkO8IM42_FIyRoXfi3vxRmnw
12
12
  pulumi_newrelic/data_partition_rule.py,sha256=LSWS9PTDrxQT5g4MtATho2koW2NaA7ACYehXhGl2nZg,20607
13
13
  pulumi_newrelic/entity_tags.py,sha256=tQC0ZH5lGkDdRydkTh49LKC4TvVNvYRactUl80qFl7s,10291
14
14
  pulumi_newrelic/events_to_metrics_rule.py,sha256=gi1rxfZk5BkQy6YZEUCnxz7wdTuoGDU33QWW1UrkjXQ,16168
15
- pulumi_newrelic/get_account.py,sha256=Y4265vxE7wgvQqVVaOI1hSKch4F8GGKO_Ox2IyVXlBs,5364
16
- pulumi_newrelic/get_alert_channel.py,sha256=pU1QLqNmYr1oZOQC7Nwx4IfBi2ugutu4D1sxKVxlvFo,6221
17
- pulumi_newrelic/get_alert_policy.py,sha256=b0bTFDPfRHrpu4RZZbC3bOEFX-Ce0NgB-pGjUeN6CHY,9692
18
- pulumi_newrelic/get_application.py,sha256=u_BoFoxzfT4qahqRRczCQ4bItccsbdPGNmpmf7GD1bo,5908
19
- pulumi_newrelic/get_authentication_domain.py,sha256=HR_ftVD3LW4562BlfDVscJ92_uV5KBRWBjrDyK5y3WM,4072
20
- pulumi_newrelic/get_cloud_account.py,sha256=UeLJeJqwgD8-qiz9_T_i2lhufD6wNEk9mHApUMnLHAc,5953
21
- pulumi_newrelic/get_entity.py,sha256=ZpybyN7XLkbVaCwkrMUSHJuvdaMuUnOKTzJjPKE32ls,14237
22
- pulumi_newrelic/get_group.py,sha256=i6dk-r5E0PMGE1XRIhszCDm3QDHFNw3hZBcrLjdEhoM,8521
23
- pulumi_newrelic/get_key_transaction.py,sha256=BYuP0BLLl6uU-ho4X39Y5qld5-upJ88m4dH1O79Mt6c,8275
24
- pulumi_newrelic/get_notification_destination.py,sha256=vCCwdsilZwurorPv1VLbOYmWtR9Hqf8hzVuQ_191zW4,9377
25
- pulumi_newrelic/get_obfuscation_expression.py,sha256=3-avJsZDVhsRIdEJmxQW6guQFo91-Dysrx94I0a7rC0,5546
26
- pulumi_newrelic/get_service_level_alert_helper.py,sha256=04z51uiWHImFXAjUKzLfkgZMmOd__qEnIJfzCnaYwoQ,21136
27
- pulumi_newrelic/get_test_grok_pattern.py,sha256=l_Es4uNX0CMmWPL6IZpGHKAXPR-I-FTIONxngqyu4yk,6347
28
- pulumi_newrelic/get_user.py,sha256=Cf_4j_vcHv_2RZLWWcq6nRbboeWbTjrXj38c0EBbQEQ,8054
15
+ pulumi_newrelic/get_account.py,sha256=wm7Go8m38m1efFN6BYO3SDGbtRi8olePar9rmhx_k4k,5405
16
+ pulumi_newrelic/get_alert_channel.py,sha256=YLE_cKmkta59SrMWPe51PNKS2R5NCgSN0_3w-IbmUiU,6262
17
+ pulumi_newrelic/get_alert_policy.py,sha256=shGUlMajOsA8f-26ka0be1vlVX5CQMflBtO3daGHtTg,9733
18
+ pulumi_newrelic/get_application.py,sha256=tuiIu3bevT6kjlF1e-1I_O609lEBNJZXxoftHHtBl24,5949
19
+ pulumi_newrelic/get_authentication_domain.py,sha256=iRyZZwzRWcD_goSgW6HkkTnLPOU7gi6FwU2XA_Bcqnc,4113
20
+ pulumi_newrelic/get_cloud_account.py,sha256=yryx1I4IAlSCj0i7_Nv5zUlJ0kiECFP8gW9_WxKoJ6o,5994
21
+ pulumi_newrelic/get_entity.py,sha256=0sKfbUi3l6UJloV_fb8e14OFqdHno-AqZTdWuKeiXr8,14278
22
+ pulumi_newrelic/get_group.py,sha256=dgZRsoOZ9QdSmUHwIU2Y_A8oLbIYWOfoa5LvjcczmNY,8562
23
+ pulumi_newrelic/get_key_transaction.py,sha256=za4GH-Djtpubh5kw167XBFW0_7ehK44dPJpLx6A0zgk,8316
24
+ pulumi_newrelic/get_notification_destination.py,sha256=oUUVQO-1RukbyQIzjOOeJoQczxZoolofCaO8ZARlpE0,9418
25
+ pulumi_newrelic/get_obfuscation_expression.py,sha256=2yCTCtJs6YfsmjI35jz4HK6E6kjSprgowymRDKgRa_Q,5587
26
+ pulumi_newrelic/get_service_level_alert_helper.py,sha256=_Ne2qJgU5cBifZrpeEJhG693PAytcgtrYEyKhPzEByk,21177
27
+ pulumi_newrelic/get_test_grok_pattern.py,sha256=-FQz3MXiLtZTP8_WKBF_I6jlrFPUO9v-H6HTxlBbKao,6388
28
+ pulumi_newrelic/get_user.py,sha256=SKr9IMLNV2zjZDczOjbIrZgHUf3354pWHcc2ovwxx5A,8095
29
29
  pulumi_newrelic/group.py,sha256=mmXsfckBm6kZukT7eQX6UVbBSTDN-9YB69t8YuT09tc,15373
30
30
  pulumi_newrelic/infra_alert_condition.py,sha256=KicN5-yNkDvxJV8M9oCSBn6hBC0ss5_oDFqoTFInlJU,58188
31
31
  pulumi_newrelic/key_transaction.py,sha256=aNZHvMoYqe0TXLeQfqlPzBkMJNKasPcfLNdbzEqqrgQ,22875
@@ -42,7 +42,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=EZqg6akwsh-SqsRjCmQzDjgsjvbIfKsX2zt
42
42
  pulumi_newrelic/one_dashboard_raw.py,sha256=__3ZuSPVubBaC5iPa9V6q1SG7lHFcpNdVsLXQie5c7U,23668
43
43
  pulumi_newrelic/outputs.py,sha256=Mh-9t88XHsd4htBHR3sLxthqA6DQGhJORj80ZhkBZcM,576713
44
44
  pulumi_newrelic/provider.py,sha256=OjBqZT1L0Jt_1-c3zMSSGA03zIZjgif7RrThna-ojng,18493
45
- pulumi_newrelic/pulumi-plugin.json,sha256=h2J0Oc2bJslvtaSMGnZj-2T94vwuFJ8IzLlvq_s9m20,85
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=z82bkqrJ0A8SgF4ArGJj5Zr-PzEDklKJxHUAn6mrluU,85
46
46
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  pulumi_newrelic/service_level.py,sha256=Dk_AoEFTmaJAg5v8SKBN4-a4T-MGXDbPubxsnB98sFk,28980
48
48
  pulumi_newrelic/user.py,sha256=guVvPGAeuR-mQ6_bA_MvBP7GY2grEmnbdNkc_5hs1us,19116
@@ -75,8 +75,8 @@ pulumi_newrelic/synthetics/_inputs.py,sha256=t6rumXJVnRfRj093NNi1EXCh98YsXg0TvO-
75
75
  pulumi_newrelic/synthetics/alert_condition.py,sha256=aLL42c_oLJ4pGtMP3aMZVlDNqzvT3U8kaBxQmJ57O8I,21759
76
76
  pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=7jbVwvVgqaMLfU4L41069zifldHtKJiFJIOk7tj2qhk,37378
77
77
  pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=aUtMBRCcEMvimcIcvoib3Sw6UtAhVg9IXUZg4YUSdlE,39454
78
- pulumi_newrelic/synthetics/get_private_location.py,sha256=s-njRr9-VsVGeO82ma4DTMJv0mq15TAJe8Up4q6XJos,6438
79
- pulumi_newrelic/synthetics/get_secure_credential.py,sha256=pYNc31hYb-qQ2V7BT-mn4vIx7uJWhnsZh2Ibt_mVdbA,6264
78
+ pulumi_newrelic/synthetics/get_private_location.py,sha256=84JuemN2hx7YWXGIlkNDwjFc4qhJukrYkuF7UyvWSnM,6479
79
+ pulumi_newrelic/synthetics/get_secure_credential.py,sha256=2wlyV4M-AHG9ZyL0qTU3lGCXbfiFlxfLVrI9GQk_0jo,6305
80
80
  pulumi_newrelic/synthetics/monitor.py,sha256=-g3W_RUq1qz1PRsoAbdYuex53aMwLI1BG8FAeotEjy4,75202
81
81
  pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=-TcjxR-EXiwSMCZ6xVLT0cZ2HNPBvql4pCNQ2DLnInY,34834
82
82
  pulumi_newrelic/synthetics/outputs.py,sha256=pDx2GOl0gpwiGLAFlK_6TB0qOUjIWLbK3DqabZ8dLxY,11391
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=-pj6W9dg9fB-jtnrTH8wnd7o_j
84
84
  pulumi_newrelic/synthetics/script_monitor.py,sha256=fwRaviLtkQ0ViK3V1W98npxcN_qBXFevwuHgHArl3m0,66220
85
85
  pulumi_newrelic/synthetics/secure_credential.py,sha256=EilBGvvvqmADHo1VPeWfQkCdc2GYRO8Dq9-lktE7Y3M,15776
86
86
  pulumi_newrelic/synthetics/step_monitor.py,sha256=7tqzQ9InEMRdfAr9K_vpLm-OCPHyIKEH4f8CT2BxaLQ,49116
87
- pulumi_newrelic-5.37.0a1733394031.dist-info/METADATA,sha256=cftg65tX_IhJu1vZIFGEAREgYDJXFBF88fsRncBo7T8,3963
88
- pulumi_newrelic-5.37.0a1733394031.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
89
- pulumi_newrelic-5.37.0a1733394031.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.37.0a1733394031.dist-info/RECORD,,
87
+ pulumi_newrelic-5.38.0a1733787976.dist-info/METADATA,sha256=DFPy4atHRtp8UHx8z8kDoNcrUYZWE8saOnONCxtjQh4,3963
88
+ pulumi_newrelic-5.38.0a1733787976.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
89
+ pulumi_newrelic-5.38.0a1733787976.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.38.0a1733787976.dist-info/RECORD,,