pulumi-wavefront 3.2.0a1713340678__py3-none-any.whl → 3.2.0a1713905403__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 (48) hide show
  1. pulumi_wavefront/_inputs.py +0 -10
  2. pulumi_wavefront/alert.py +6 -8
  3. pulumi_wavefront/alert_target.py +10 -12
  4. pulumi_wavefront/cloud_integration_app_dynamics.py +8 -10
  5. pulumi_wavefront/cloud_integration_aws_external_id.py +2 -6
  6. pulumi_wavefront/cloud_integration_azure.py +4 -6
  7. pulumi_wavefront/cloud_integration_azure_activity_log.py +4 -6
  8. pulumi_wavefront/cloud_integration_cloud_trail.py +4 -6
  9. pulumi_wavefront/cloud_integration_cloud_watch.py +4 -6
  10. pulumi_wavefront/cloud_integration_ec2.py +4 -6
  11. pulumi_wavefront/cloud_integration_gcp.py +6 -12
  12. pulumi_wavefront/cloud_integration_gcp_billing.py +8 -14
  13. pulumi_wavefront/cloud_integration_new_relic.py +6 -6
  14. pulumi_wavefront/dashboard_json.py +228 -234
  15. pulumi_wavefront/derived_metric.py +2 -4
  16. pulumi_wavefront/event.py +4 -6
  17. pulumi_wavefront/external_link.py +2 -4
  18. pulumi_wavefront/get_alert.py +2 -4
  19. pulumi_wavefront/get_alerts.py +2 -4
  20. pulumi_wavefront/get_dashboard.py +2 -4
  21. pulumi_wavefront/get_dashboards.py +2 -4
  22. pulumi_wavefront/get_default_user_group.py +2 -4
  23. pulumi_wavefront/get_derived_metric.py +2 -4
  24. pulumi_wavefront/get_derived_metrics.py +2 -4
  25. pulumi_wavefront/get_event.py +2 -4
  26. pulumi_wavefront/get_events.py +8 -10
  27. pulumi_wavefront/get_external_link.py +2 -4
  28. pulumi_wavefront/get_external_links.py +2 -4
  29. pulumi_wavefront/get_maintenance_window.py +2 -4
  30. pulumi_wavefront/get_role.py +2 -4
  31. pulumi_wavefront/get_roles.py +2 -4
  32. pulumi_wavefront/get_user.py +2 -4
  33. pulumi_wavefront/get_user_group.py +2 -4
  34. pulumi_wavefront/get_user_groups.py +2 -4
  35. pulumi_wavefront/get_users.py +2 -4
  36. pulumi_wavefront/ingestion_policy.py +6 -6
  37. pulumi_wavefront/maintenance_window.py +8 -12
  38. pulumi_wavefront/metrics_policy.py +4 -12
  39. pulumi_wavefront/outputs.py +0 -10
  40. pulumi_wavefront/role.py +2 -6
  41. pulumi_wavefront/service_account.py +4 -8
  42. pulumi_wavefront/user.py +0 -4
  43. pulumi_wavefront/user_group.py +6 -6
  44. {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/METADATA +1 -1
  45. pulumi_wavefront-3.2.0a1713905403.dist-info/RECORD +58 -0
  46. pulumi_wavefront-3.2.0a1713340678.dist-info/RECORD +0 -58
  47. {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/WHEEL +0 -0
  48. {pulumi_wavefront-3.2.0a1713340678.dist-info → pulumi_wavefront-3.2.0a1713905403.dist-info}/top_level.txt +0 -0
@@ -1786,19 +1786,12 @@ class MetricsPolicyPolicyRuleTagArgs:
1786
1786
  def __init__(__self__, *,
1787
1787
  key: pulumi.Input[str],
1788
1788
  value: pulumi.Input[str]):
1789
- """
1790
- :param pulumi.Input[str] key: The tag's key.
1791
- :param pulumi.Input[str] value: The tag's value.
1792
- """
1793
1789
  pulumi.set(__self__, "key", key)
1794
1790
  pulumi.set(__self__, "value", value)
1795
1791
 
1796
1792
  @property
1797
1793
  @pulumi.getter
1798
1794
  def key(self) -> pulumi.Input[str]:
1799
- """
1800
- The tag's key.
1801
- """
1802
1795
  return pulumi.get(self, "key")
1803
1796
 
1804
1797
  @key.setter
@@ -1808,9 +1801,6 @@ class MetricsPolicyPolicyRuleTagArgs:
1808
1801
  @property
1809
1802
  @pulumi.getter
1810
1803
  def value(self) -> pulumi.Input[str]:
1811
- """
1812
- The tag's value.
1813
- """
1814
1804
  return pulumi.get(self, "value")
1815
1805
 
1816
1806
  @value.setter
pulumi_wavefront/alert.py CHANGED
@@ -684,12 +684,13 @@ class Alert(pulumi.CustomResource):
684
684
 
685
685
  ## Example Usage
686
686
 
687
- <!--Start PulumiCodeChooser -->
688
687
  ```python
689
688
  import pulumi
690
689
  import pulumi_wavefront as wavefront
691
690
 
692
691
  foobar = wavefront.Alert("foobar",
692
+ name="Test Alert",
693
+ target="test@example.com,target:alert-target-id",
693
694
  condition="100-ts(\\"cpu.usage_idle\\", environment=preprod and cpu=cpu-total ) > 80",
694
695
  display_expression="100-ts(\\"cpu.usage_idle\\", environment=preprod and cpu=cpu-total )",
695
696
  minutes=5,
@@ -698,10 +699,8 @@ class Alert(pulumi.CustomResource):
698
699
  tags=[
699
700
  "terraform",
700
701
  "test",
701
- ],
702
- target="test@example.com,target:alert-target-id")
702
+ ])
703
703
  ```
704
- <!--End PulumiCodeChooser -->
705
704
 
706
705
  ## Import
707
706
 
@@ -756,12 +755,13 @@ class Alert(pulumi.CustomResource):
756
755
 
757
756
  ## Example Usage
758
757
 
759
- <!--Start PulumiCodeChooser -->
760
758
  ```python
761
759
  import pulumi
762
760
  import pulumi_wavefront as wavefront
763
761
 
764
762
  foobar = wavefront.Alert("foobar",
763
+ name="Test Alert",
764
+ target="test@example.com,target:alert-target-id",
765
765
  condition="100-ts(\\"cpu.usage_idle\\", environment=preprod and cpu=cpu-total ) > 80",
766
766
  display_expression="100-ts(\\"cpu.usage_idle\\", environment=preprod and cpu=cpu-total )",
767
767
  minutes=5,
@@ -770,10 +770,8 @@ class Alert(pulumi.CustomResource):
770
770
  tags=[
771
771
  "terraform",
772
772
  "test",
773
- ],
774
- target="test@example.com,target:alert-target-id")
773
+ ])
775
774
  ```
776
- <!--End PulumiCodeChooser -->
777
775
 
778
776
  ## Import
779
777
 
@@ -427,26 +427,25 @@ class AlertTarget(pulumi.CustomResource):
427
427
 
428
428
  ## Example Usage
429
429
 
430
- <!--Start PulumiCodeChooser -->
431
430
  ```python
432
431
  import pulumi
433
432
  import pulumi_wavefront as wavefront
434
433
 
435
- test_target = wavefront.AlertTarget("testTarget",
434
+ test_target = wavefront.AlertTarget("test_target",
435
+ name="Terraform Test Target",
436
+ description="Test target",
437
+ method="WEBHOOK",
438
+ recipient="https://hooks.slack.com/services/test/me",
436
439
  content_type="application/json",
437
440
  custom_headers={
438
441
  "Testing": "true",
439
442
  },
440
- description="Test target",
441
- method="WEBHOOK",
442
- recipient="https://hooks.slack.com/services/test/me",
443
443
  template="{}",
444
444
  triggers=[
445
445
  "ALERT_OPENED",
446
446
  "ALERT_RESOLVED",
447
447
  ])
448
448
  ```
449
- <!--End PulumiCodeChooser -->
450
449
 
451
450
  ## Import
452
451
 
@@ -484,26 +483,25 @@ class AlertTarget(pulumi.CustomResource):
484
483
 
485
484
  ## Example Usage
486
485
 
487
- <!--Start PulumiCodeChooser -->
488
486
  ```python
489
487
  import pulumi
490
488
  import pulumi_wavefront as wavefront
491
489
 
492
- test_target = wavefront.AlertTarget("testTarget",
490
+ test_target = wavefront.AlertTarget("test_target",
491
+ name="Terraform Test Target",
492
+ description="Test target",
493
+ method="WEBHOOK",
494
+ recipient="https://hooks.slack.com/services/test/me",
493
495
  content_type="application/json",
494
496
  custom_headers={
495
497
  "Testing": "true",
496
498
  },
497
- description="Test target",
498
- method="WEBHOOK",
499
- recipient="https://hooks.slack.com/services/test/me",
500
499
  template="{}",
501
500
  triggers=[
502
501
  "ALERT_OPENED",
503
502
  "ALERT_RESOLVED",
504
503
  ])
505
504
  ```
506
- <!--End PulumiCodeChooser -->
507
505
 
508
506
  ## Import
509
507
 
@@ -604,17 +604,16 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
604
604
 
605
605
  ## Example Usage
606
606
 
607
- <!--Start PulumiCodeChooser -->
608
607
  ```python
609
608
  import pulumi
610
609
  import pulumi_wavefront as wavefront
611
610
 
612
- app_dynamics = wavefront.CloudIntegrationAppDynamics("appDynamics",
611
+ app_dynamics = wavefront.CloudIntegrationAppDynamics("app_dynamics",
612
+ name="Test Integration",
613
+ user_name="example",
613
614
  controller_name="exampleController",
614
- encrypted_password="encryptedPassword",
615
- user_name="example")
615
+ encrypted_password="encryptedPassword")
616
616
  ```
617
- <!--End PulumiCodeChooser -->
618
617
 
619
618
  ## Import
620
619
 
@@ -658,17 +657,16 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
658
657
 
659
658
  ## Example Usage
660
659
 
661
- <!--Start PulumiCodeChooser -->
662
660
  ```python
663
661
  import pulumi
664
662
  import pulumi_wavefront as wavefront
665
663
 
666
- app_dynamics = wavefront.CloudIntegrationAppDynamics("appDynamics",
664
+ app_dynamics = wavefront.CloudIntegrationAppDynamics("app_dynamics",
665
+ name="Test Integration",
666
+ user_name="example",
667
667
  controller_name="exampleController",
668
- encrypted_password="encryptedPassword",
669
- user_name="example")
668
+ encrypted_password="encryptedPassword")
670
669
  ```
671
- <!--End PulumiCodeChooser -->
672
670
 
673
671
  ## Import
674
672
 
@@ -31,14 +31,12 @@ class CloudIntegrationAwsExternalId(pulumi.CustomResource):
31
31
 
32
32
  ## Example Usage
33
33
 
34
- <!--Start PulumiCodeChooser -->
35
34
  ```python
36
35
  import pulumi
37
36
  import pulumi_wavefront as wavefront
38
37
 
39
- external_id = wavefront.CloudIntegrationAwsExternalId("externalId")
38
+ external_id = wavefront.CloudIntegrationAwsExternalId("external_id")
40
39
  ```
41
- <!--End PulumiCodeChooser -->
42
40
 
43
41
  ## Import
44
42
 
@@ -62,14 +60,12 @@ class CloudIntegrationAwsExternalId(pulumi.CustomResource):
62
60
 
63
61
  ## Example Usage
64
62
 
65
- <!--Start PulumiCodeChooser -->
66
63
  ```python
67
64
  import pulumi
68
65
  import pulumi_wavefront as wavefront
69
66
 
70
- external_id = wavefront.CloudIntegrationAwsExternalId("externalId")
67
+ external_id = wavefront.CloudIntegrationAwsExternalId("external_id")
71
68
  ```
72
- <!--End PulumiCodeChooser -->
73
69
 
74
70
  ## Import
75
71
 
@@ -398,17 +398,16 @@ class CloudIntegrationAzure(pulumi.CustomResource):
398
398
 
399
399
  ## Example Usage
400
400
 
401
- <!--Start PulumiCodeChooser -->
402
401
  ```python
403
402
  import pulumi
404
403
  import pulumi_wavefront as wavefront
405
404
 
406
- azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azureActivityLog",
405
+ azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azure_activity_log",
406
+ name="Test Integration",
407
407
  client_id="client-id2",
408
408
  client_secret="client-secret2",
409
409
  tenant="my-tenant2")
410
410
  ```
411
- <!--End PulumiCodeChooser -->
412
411
 
413
412
  ## Import
414
413
 
@@ -444,17 +443,16 @@ class CloudIntegrationAzure(pulumi.CustomResource):
444
443
 
445
444
  ## Example Usage
446
445
 
447
- <!--Start PulumiCodeChooser -->
448
446
  ```python
449
447
  import pulumi
450
448
  import pulumi_wavefront as wavefront
451
449
 
452
- azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azureActivityLog",
450
+ azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azure_activity_log",
451
+ name="Test Integration",
453
452
  client_id="client-id2",
454
453
  client_secret="client-secret2",
455
454
  tenant="my-tenant2")
456
455
  ```
457
- <!--End PulumiCodeChooser -->
458
456
 
459
457
  ## Import
460
458
 
@@ -332,18 +332,17 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
332
332
 
333
333
  ## Example Usage
334
334
 
335
- <!--Start PulumiCodeChooser -->
336
335
  ```python
337
336
  import pulumi
338
337
  import pulumi_wavefront as wavefront
339
338
 
340
- azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azureActivityLog",
339
+ azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azure_activity_log",
340
+ name="Test Integration",
341
341
  category_filters=["ADMINISTRATIVE"],
342
342
  client_id="client-id2",
343
343
  client_secret="client-secret2",
344
344
  tenant="my-tenant2")
345
345
  ```
346
- <!--End PulumiCodeChooser -->
347
346
 
348
347
  ## Import
349
348
 
@@ -377,18 +376,17 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
377
376
 
378
377
  ## Example Usage
379
378
 
380
- <!--Start PulumiCodeChooser -->
381
379
  ```python
382
380
  import pulumi
383
381
  import pulumi_wavefront as wavefront
384
382
 
385
- azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azureActivityLog",
383
+ azure_activity_log = wavefront.CloudIntegrationAzureActivityLog("azure_activity_log",
384
+ name="Test Integration",
386
385
  category_filters=["ADMINISTRATIVE"],
387
386
  client_id="client-id2",
388
387
  client_secret="client-secret2",
389
388
  tenant="my-tenant2")
390
389
  ```
391
- <!--End PulumiCodeChooser -->
392
390
 
393
391
  ## Import
394
392
 
@@ -397,19 +397,18 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
397
397
 
398
398
  ## Example Usage
399
399
 
400
- <!--Start PulumiCodeChooser -->
401
400
  ```python
402
401
  import pulumi
403
402
  import pulumi_wavefront as wavefront
404
403
 
405
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
404
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
406
405
  cloudtrail = wavefront.CloudIntegrationCloudTrail("cloudtrail",
406
+ name="Test Integration",
407
407
  role_arn="arn:aws::1234567:role/example-arn",
408
408
  external_id=ext_id.id,
409
409
  region="us-west-2",
410
410
  bucket_name="example-s3-bucket")
411
411
  ```
412
- <!--End PulumiCodeChooser -->
413
412
 
414
413
  ## Import
415
414
 
@@ -445,19 +444,18 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
445
444
 
446
445
  ## Example Usage
447
446
 
448
- <!--Start PulumiCodeChooser -->
449
447
  ```python
450
448
  import pulumi
451
449
  import pulumi_wavefront as wavefront
452
450
 
453
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
451
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
454
452
  cloudtrail = wavefront.CloudIntegrationCloudTrail("cloudtrail",
453
+ name="Test Integration",
455
454
  role_arn="arn:aws::1234567:role/example-arn",
456
455
  external_id=ext_id.id,
457
456
  region="us-west-2",
458
457
  bucket_name="example-s3-bucket")
459
458
  ```
460
- <!--End PulumiCodeChooser -->
461
459
 
462
460
  ## Import
463
461
 
@@ -452,18 +452,17 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
452
452
 
453
453
  ## Example Usage
454
454
 
455
- <!--Start PulumiCodeChooser -->
456
455
  ```python
457
456
  import pulumi
458
457
  import pulumi_wavefront as wavefront
459
458
 
460
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
459
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
461
460
  cloudwatch = wavefront.CloudIntegrationCloudWatch("cloudwatch",
461
+ name="Test Integration",
462
462
  force_save=True,
463
463
  role_arn="arn:aws::1234567:role/example-arn",
464
464
  external_id=ext_id.id)
465
465
  ```
466
- <!--End PulumiCodeChooser -->
467
466
 
468
467
  ## Import
469
468
 
@@ -505,18 +504,17 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
505
504
 
506
505
  ## Example Usage
507
506
 
508
- <!--Start PulumiCodeChooser -->
509
507
  ```python
510
508
  import pulumi
511
509
  import pulumi_wavefront as wavefront
512
510
 
513
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
511
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
514
512
  cloudwatch = wavefront.CloudIntegrationCloudWatch("cloudwatch",
513
+ name="Test Integration",
515
514
  force_save=True,
516
515
  role_arn="arn:aws::1234567:role/example-arn",
517
516
  external_id=ext_id.id)
518
517
  ```
519
- <!--End PulumiCodeChooser -->
520
518
 
521
519
  ## Import
522
520
 
@@ -308,17 +308,16 @@ class CloudIntegrationEc2(pulumi.CustomResource):
308
308
 
309
309
  ## Example Usage
310
310
 
311
- <!--Start PulumiCodeChooser -->
312
311
  ```python
313
312
  import pulumi
314
313
  import pulumi_wavefront as wavefront
315
314
 
316
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
315
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
317
316
  ec2 = wavefront.CloudIntegrationEc2("ec2",
317
+ name="Test Integration",
318
318
  role_arn="arn:aws::1234567:role/example-arn",
319
319
  external_id=ext_id.id)
320
320
  ```
321
- <!--End PulumiCodeChooser -->
322
321
 
323
322
  ## Import
324
323
 
@@ -353,17 +352,16 @@ class CloudIntegrationEc2(pulumi.CustomResource):
353
352
 
354
353
  ## Example Usage
355
354
 
356
- <!--Start PulumiCodeChooser -->
357
355
  ```python
358
356
  import pulumi
359
357
  import pulumi_wavefront as wavefront
360
358
 
361
- ext_id = wavefront.CloudIntegrationAwsExternalId("extId")
359
+ ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
362
360
  ec2 = wavefront.CloudIntegrationEc2("ec2",
361
+ name="Test Integration",
363
362
  role_arn="arn:aws::1234567:role/example-arn",
364
363
  external_id=ext_id.id)
365
364
  ```
366
- <!--End PulumiCodeChooser -->
367
365
 
368
366
  ## Import
369
367
 
@@ -353,18 +353,15 @@ class CloudIntegrationGcp(pulumi.CustomResource):
353
353
 
354
354
  ## Example Usage
355
355
 
356
- <!--Start PulumiCodeChooser -->
357
356
  ```python
358
357
  import pulumi
359
358
  import pulumi_wavefront as wavefront
360
359
 
361
360
  gcp = wavefront.CloudIntegrationGcp("gcp",
362
- json_key=\"\"\"{...your gcp key ...}
363
-
364
- \"\"\",
365
- project_id="example-gcp-project")
361
+ name="Test Integration",
362
+ project_id="example-gcp-project",
363
+ json_key="{...your gcp key ...}\\n")
366
364
  ```
367
- <!--End PulumiCodeChooser -->
368
365
 
369
366
  ## Import
370
367
 
@@ -403,18 +400,15 @@ class CloudIntegrationGcp(pulumi.CustomResource):
403
400
 
404
401
  ## Example Usage
405
402
 
406
- <!--Start PulumiCodeChooser -->
407
403
  ```python
408
404
  import pulumi
409
405
  import pulumi_wavefront as wavefront
410
406
 
411
407
  gcp = wavefront.CloudIntegrationGcp("gcp",
412
- json_key=\"\"\"{...your gcp key ...}
413
-
414
- \"\"\",
415
- project_id="example-gcp-project")
408
+ name="Test Integration",
409
+ project_id="example-gcp-project",
410
+ json_key="{...your gcp key ...}\\n")
416
411
  ```
417
- <!--End PulumiCodeChooser -->
418
412
 
419
413
  ## Import
420
414
 
@@ -303,19 +303,16 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
303
303
 
304
304
  ## Example Usage
305
305
 
306
- <!--Start PulumiCodeChooser -->
307
306
  ```python
308
307
  import pulumi
309
308
  import pulumi_wavefront as wavefront
310
309
 
311
- gcp_billing = wavefront.CloudIntegrationGcpBilling("gcpBilling",
310
+ gcp_billing = wavefront.CloudIntegrationGcpBilling("gcp_billing",
311
+ name="Test Integration",
312
+ project_id="example-gcp-project",
312
313
  api_key="example-api-key",
313
- json_key=\"\"\"{...your gcp key ...}
314
-
315
- \"\"\",
316
- project_id="example-gcp-project")
314
+ json_key="{...your gcp key ...}\\n")
317
315
  ```
318
- <!--End PulumiCodeChooser -->
319
316
 
320
317
  ## Import
321
318
 
@@ -349,19 +346,16 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
349
346
 
350
347
  ## Example Usage
351
348
 
352
- <!--Start PulumiCodeChooser -->
353
349
  ```python
354
350
  import pulumi
355
351
  import pulumi_wavefront as wavefront
356
352
 
357
- gcp_billing = wavefront.CloudIntegrationGcpBilling("gcpBilling",
353
+ gcp_billing = wavefront.CloudIntegrationGcpBilling("gcp_billing",
354
+ name="Test Integration",
355
+ project_id="example-gcp-project",
358
356
  api_key="example-api-key",
359
- json_key=\"\"\"{...your gcp key ...}
360
-
361
- \"\"\",
362
- project_id="example-gcp-project")
357
+ json_key="{...your gcp key ...}\\n")
363
358
  ```
364
- <!--End PulumiCodeChooser -->
365
359
 
366
360
  ## Import
367
361
 
@@ -336,14 +336,14 @@ class CloudIntegrationNewRelic(pulumi.CustomResource):
336
336
 
337
337
  ## Example Usage
338
338
 
339
- <!--Start PulumiCodeChooser -->
340
339
  ```python
341
340
  import pulumi
342
341
  import pulumi_wavefront as wavefront
343
342
 
344
- newrelic = wavefront.CloudIntegrationNewRelic("newrelic", api_key="example-api-key")
343
+ newrelic = wavefront.CloudIntegrationNewRelic("newrelic",
344
+ name="Test Integration",
345
+ api_key="example-api-key")
345
346
  ```
346
- <!--End PulumiCodeChooser -->
347
347
 
348
348
  ## Import
349
349
 
@@ -377,14 +377,14 @@ class CloudIntegrationNewRelic(pulumi.CustomResource):
377
377
 
378
378
  ## Example Usage
379
379
 
380
- <!--Start PulumiCodeChooser -->
381
380
  ```python
382
381
  import pulumi
383
382
  import pulumi_wavefront as wavefront
384
383
 
385
- newrelic = wavefront.CloudIntegrationNewRelic("newrelic", api_key="example-api-key")
384
+ newrelic = wavefront.CloudIntegrationNewRelic("newrelic",
385
+ name="Test Integration",
386
+ api_key="example-api-key")
386
387
  ```
387
- <!--End PulumiCodeChooser -->
388
388
 
389
389
  ## Import
390
390