pulumi-newrelic 5.31.0a1724997093__py3-none-any.whl → 5.31.0a1725491574__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.
- pulumi_newrelic/_inputs.py +980 -0
- pulumi_newrelic/api_access_key.py +12 -0
- pulumi_newrelic/notification_channel.py +4 -0
- pulumi_newrelic/outputs.py +812 -0
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.0a1725491574.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.0a1725491574.dist-info}/RECORD +9 -9
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.0a1725491574.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.0a1725491574.dist-info}/top_level.txt +0 -0
@@ -264,6 +264,12 @@ class ApiAccessKey(pulumi.CustomResource):
|
|
264
264
|
|
265
265
|
> **WARNING:** Creating 'Ingest - License' and 'Ingest - Browser' keys using this resource is restricted to 'core' or 'full platform' New Relic user accounts. If you've signed up as a 'basic' user with New Relic, or have been added as a 'basic' user to your organization on New Relic, you would not be able to use your account to create 'Ingest' keys. If you see the message `"You do not have permission to create this key"` in the response of the API called by this resource, it could be owing to the aforementioned. For more insights into user account types on New Relic and associated privileges, please check out this [page](https://docs.newrelic.com/docs/accounts/accounts-billing/new-relic-one-user-management/user-type/#api-access).
|
266
266
|
|
267
|
+
## Extended Usage
|
268
|
+
|
269
|
+
This module may be used to create a user or ingest key using the `create_access_keys_service` resource, and fetch the created key using `fetch_access_keys_service`, by performing a NerdGraph query under the hood, using the ID of the key created via the resource to fetch the created key.
|
270
|
+
Please refer\\
|
271
|
+
create access keys and fetch access keys for more info.
|
272
|
+
|
267
273
|
## Import
|
268
274
|
|
269
275
|
Existing API access keys can be imported using a composite ID of `<api_access_key_id>:<key_type>`. `<key_type>`
|
@@ -309,6 +315,12 @@ class ApiAccessKey(pulumi.CustomResource):
|
|
309
315
|
|
310
316
|
> **WARNING:** Creating 'Ingest - License' and 'Ingest - Browser' keys using this resource is restricted to 'core' or 'full platform' New Relic user accounts. If you've signed up as a 'basic' user with New Relic, or have been added as a 'basic' user to your organization on New Relic, you would not be able to use your account to create 'Ingest' keys. If you see the message `"You do not have permission to create this key"` in the response of the API called by this resource, it could be owing to the aforementioned. For more insights into user account types on New Relic and associated privileges, please check out this [page](https://docs.newrelic.com/docs/accounts/accounts-billing/new-relic-one-user-management/user-type/#api-access).
|
311
317
|
|
318
|
+
## Extended Usage
|
319
|
+
|
320
|
+
This module may be used to create a user or ingest key using the `create_access_keys_service` resource, and fetch the created key using `fetch_access_keys_service`, by performing a NerdGraph query under the hood, using the ID of the key created via the resource to fetch the created key.
|
321
|
+
Please refer\\
|
322
|
+
create access keys and fetch access keys for more info.
|
323
|
+
|
312
324
|
## Import
|
313
325
|
|
314
326
|
Existing API access keys can be imported using a composite ID of `<api_access_key_id>:<key_type>`. `<key_type>`
|
@@ -383,10 +383,12 @@ class NotificationChannel(pulumi.CustomResource):
|
|
383
383
|
{
|
384
384
|
"key": "project",
|
385
385
|
"value": "10000",
|
386
|
+
"label": "Project-Name",
|
386
387
|
},
|
387
388
|
{
|
388
389
|
"key": "issuetype",
|
389
390
|
"value": "10004",
|
391
|
+
"label": "Bug",
|
390
392
|
},
|
391
393
|
{
|
392
394
|
"key": "description",
|
@@ -725,10 +727,12 @@ class NotificationChannel(pulumi.CustomResource):
|
|
725
727
|
{
|
726
728
|
"key": "project",
|
727
729
|
"value": "10000",
|
730
|
+
"label": "Project-Name",
|
728
731
|
},
|
729
732
|
{
|
730
733
|
"key": "issuetype",
|
731
734
|
"value": "10004",
|
735
|
+
"label": "Bug",
|
732
736
|
},
|
733
737
|
{
|
734
738
|
"key": "description",
|