pulumi-wavefront 3.1.0a1704219685__py3-none-any.whl → 3.1.1__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 (50) hide show
  1. pulumi_wavefront/_inputs.py +10 -0
  2. pulumi_wavefront/_utilities.py +2 -2
  3. pulumi_wavefront/alert.py +6 -2
  4. pulumi_wavefront/alert_target.py +6 -2
  5. pulumi_wavefront/cloud_integration_app_dynamics.py +6 -2
  6. pulumi_wavefront/cloud_integration_aws_external_id.py +6 -2
  7. pulumi_wavefront/cloud_integration_azure.py +6 -2
  8. pulumi_wavefront/cloud_integration_azure_activity_log.py +6 -2
  9. pulumi_wavefront/cloud_integration_cloud_trail.py +6 -2
  10. pulumi_wavefront/cloud_integration_cloud_watch.py +6 -2
  11. pulumi_wavefront/cloud_integration_ec2.py +6 -2
  12. pulumi_wavefront/cloud_integration_gcp.py +6 -2
  13. pulumi_wavefront/cloud_integration_gcp_billing.py +6 -2
  14. pulumi_wavefront/cloud_integration_new_relic.py +6 -2
  15. pulumi_wavefront/dashboard.py +2 -2
  16. pulumi_wavefront/dashboard_json.py +6 -2
  17. pulumi_wavefront/derived_metric.py +6 -2
  18. pulumi_wavefront/event.py +6 -2
  19. pulumi_wavefront/external_link.py +6 -2
  20. pulumi_wavefront/get_alert.py +4 -0
  21. pulumi_wavefront/get_alerts.py +4 -0
  22. pulumi_wavefront/get_dashboard.py +4 -0
  23. pulumi_wavefront/get_dashboards.py +4 -0
  24. pulumi_wavefront/get_default_user_group.py +4 -0
  25. pulumi_wavefront/get_derived_metric.py +4 -0
  26. pulumi_wavefront/get_derived_metrics.py +4 -0
  27. pulumi_wavefront/get_event.py +4 -0
  28. pulumi_wavefront/get_events.py +4 -0
  29. pulumi_wavefront/get_external_link.py +4 -0
  30. pulumi_wavefront/get_external_links.py +4 -0
  31. pulumi_wavefront/get_maintenance_window.py +4 -0
  32. pulumi_wavefront/get_role.py +4 -0
  33. pulumi_wavefront/get_roles.py +4 -0
  34. pulumi_wavefront/get_user.py +4 -0
  35. pulumi_wavefront/get_user_group.py +4 -0
  36. pulumi_wavefront/get_user_groups.py +4 -0
  37. pulumi_wavefront/get_users.py +4 -0
  38. pulumi_wavefront/ingestion_policy.py +6 -2
  39. pulumi_wavefront/maintenance_window.py +6 -2
  40. pulumi_wavefront/metrics_policy.py +12 -2
  41. pulumi_wavefront/outputs.py +30 -0
  42. pulumi_wavefront/role.py +6 -2
  43. pulumi_wavefront/service_account.py +6 -2
  44. pulumi_wavefront/user.py +6 -2
  45. pulumi_wavefront/user_group.py +6 -2
  46. {pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/METADATA +2 -2
  47. pulumi_wavefront-3.1.1.dist-info/RECORD +58 -0
  48. pulumi_wavefront-3.1.0a1704219685.dist-info/RECORD +0 -58
  49. {pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/WHEEL +0 -0
  50. {pulumi_wavefront-3.1.0a1704219685.dist-info → pulumi_wavefront-3.1.1.dist-info}/top_level.txt +0 -0
@@ -31,6 +31,10 @@ class AlertAlertTriageDashboardArgs:
31
31
  dashboard_id: pulumi.Input[str],
32
32
  description: pulumi.Input[str],
33
33
  parameters: Optional[pulumi.Input['AlertAlertTriageDashboardParametersArgs']] = None):
34
+ """
35
+ :param pulumi.Input[str] dashboard_id: Dashboard ID
36
+ :param pulumi.Input[str] description: Dashboard Description
37
+ """
34
38
  pulumi.set(__self__, "dashboard_id", dashboard_id)
35
39
  pulumi.set(__self__, "description", description)
36
40
  if parameters is not None:
@@ -39,6 +43,9 @@ class AlertAlertTriageDashboardArgs:
39
43
  @property
40
44
  @pulumi.getter(name="dashboardId")
41
45
  def dashboard_id(self) -> pulumi.Input[str]:
46
+ """
47
+ Dashboard ID
48
+ """
42
49
  return pulumi.get(self, "dashboard_id")
43
50
 
44
51
  @dashboard_id.setter
@@ -48,6 +55,9 @@ class AlertAlertTriageDashboardArgs:
48
55
  @property
49
56
  @pulumi.getter
50
57
  def description(self) -> pulumi.Input[str]:
58
+ """
59
+ Dashboard Description
60
+ """
51
61
  return pulumi.get(self, "description")
52
62
 
53
63
  @description.setter
@@ -4,11 +4,11 @@
4
4
 
5
5
 
6
6
  import asyncio
7
+ import importlib.metadata
7
8
  import importlib.util
8
9
  import inspect
9
10
  import json
10
11
  import os
11
- import pkg_resources
12
12
  import sys
13
13
  import typing
14
14
 
@@ -72,7 +72,7 @@ def _get_semver_version():
72
72
  # to receive a valid semver string when receiving requests from the language host, so it's our
73
73
  # responsibility as the library to convert our own PEP440 version into a valid semver string.
74
74
 
75
- pep440_version_string = pkg_resources.require(root_package)[0].version
75
+ pep440_version_string = importlib.metadata.version(root_package)
76
76
  pep440_version = PEP440Version.parse(pep440_version_string)
77
77
  (major, minor, patch) = pep440_version.release
78
78
  prerelease = None
pulumi_wavefront/alert.py CHANGED
@@ -684,6 +684,7 @@ class Alert(pulumi.CustomResource):
684
684
 
685
685
  ## Example Usage
686
686
 
687
+ <!--Start PulumiCodeChooser -->
687
688
  ```python
688
689
  import pulumi
689
690
  import pulumi_wavefront as wavefront
@@ -700,13 +701,14 @@ class Alert(pulumi.CustomResource):
700
701
  ],
701
702
  target="test@example.com,target:alert-target-id")
702
703
  ```
704
+ <!--End PulumiCodeChooser -->
703
705
 
704
706
  ## Import
705
707
 
706
708
  Alerts can be imported using the `id`, e.g.
707
709
 
708
710
  ```sh
709
- $ pulumi import wavefront:index/alert:Alert alert_target 1479868728473
711
+ $ pulumi import wavefront:index/alert:Alert alert_target 1479868728473
710
712
  ```
711
713
 
712
714
  :param str resource_name: The name of the resource.
@@ -754,6 +756,7 @@ class Alert(pulumi.CustomResource):
754
756
 
755
757
  ## Example Usage
756
758
 
759
+ <!--Start PulumiCodeChooser -->
757
760
  ```python
758
761
  import pulumi
759
762
  import pulumi_wavefront as wavefront
@@ -770,13 +773,14 @@ class Alert(pulumi.CustomResource):
770
773
  ],
771
774
  target="test@example.com,target:alert-target-id")
772
775
  ```
776
+ <!--End PulumiCodeChooser -->
773
777
 
774
778
  ## Import
775
779
 
776
780
  Alerts can be imported using the `id`, e.g.
777
781
 
778
782
  ```sh
779
- $ pulumi import wavefront:index/alert:Alert alert_target 1479868728473
783
+ $ pulumi import wavefront:index/alert:Alert alert_target 1479868728473
780
784
  ```
781
785
 
782
786
  :param str resource_name: The name of the resource.
@@ -427,6 +427,7 @@ class AlertTarget(pulumi.CustomResource):
427
427
 
428
428
  ## Example Usage
429
429
 
430
+ <!--Start PulumiCodeChooser -->
430
431
  ```python
431
432
  import pulumi
432
433
  import pulumi_wavefront as wavefront
@@ -445,13 +446,14 @@ class AlertTarget(pulumi.CustomResource):
445
446
  "ALERT_RESOLVED",
446
447
  ])
447
448
  ```
449
+ <!--End PulumiCodeChooser -->
448
450
 
449
451
  ## Import
450
452
 
451
453
  Alert Targets can be imported using the `id`, e.g.:
452
454
 
453
455
  ```sh
454
- $ pulumi import wavefront:index/alertTarget:AlertTarget alert_target abcdEFGhijKLMNO
456
+ $ pulumi import wavefront:index/alertTarget:AlertTarget alert_target abcdEFGhijKLMNO
455
457
  ```
456
458
 
457
459
  :param str resource_name: The name of the resource.
@@ -482,6 +484,7 @@ class AlertTarget(pulumi.CustomResource):
482
484
 
483
485
  ## Example Usage
484
486
 
487
+ <!--Start PulumiCodeChooser -->
485
488
  ```python
486
489
  import pulumi
487
490
  import pulumi_wavefront as wavefront
@@ -500,13 +503,14 @@ class AlertTarget(pulumi.CustomResource):
500
503
  "ALERT_RESOLVED",
501
504
  ])
502
505
  ```
506
+ <!--End PulumiCodeChooser -->
503
507
 
504
508
  ## Import
505
509
 
506
510
  Alert Targets can be imported using the `id`, e.g.:
507
511
 
508
512
  ```sh
509
- $ pulumi import wavefront:index/alertTarget:AlertTarget alert_target abcdEFGhijKLMNO
513
+ $ pulumi import wavefront:index/alertTarget:AlertTarget alert_target abcdEFGhijKLMNO
510
514
  ```
511
515
 
512
516
  :param str resource_name: The name of the resource.
@@ -604,6 +604,7 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
604
604
 
605
605
  ## Example Usage
606
606
 
607
+ <!--Start PulumiCodeChooser -->
607
608
  ```python
608
609
  import pulumi
609
610
  import pulumi_wavefront as wavefront
@@ -613,13 +614,14 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
613
614
  encrypted_password="encryptedPassword",
614
615
  user_name="example")
615
616
  ```
617
+ <!--End PulumiCodeChooser -->
616
618
 
617
619
  ## Import
618
620
 
619
621
  AppDynamic Cloud Integrations can be imported by using the `id`, e.g.:
620
622
 
621
623
  ```sh
622
- $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
624
+ $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
623
625
  ```
624
626
 
625
627
  :param str resource_name: The name of the resource.
@@ -656,6 +658,7 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
656
658
 
657
659
  ## Example Usage
658
660
 
661
+ <!--Start PulumiCodeChooser -->
659
662
  ```python
660
663
  import pulumi
661
664
  import pulumi_wavefront as wavefront
@@ -665,13 +668,14 @@ class CloudIntegrationAppDynamics(pulumi.CustomResource):
665
668
  encrypted_password="encryptedPassword",
666
669
  user_name="example")
667
670
  ```
671
+ <!--End PulumiCodeChooser -->
668
672
 
669
673
  ## Import
670
674
 
671
675
  AppDynamic Cloud Integrations can be imported by using the `id`, e.g.:
672
676
 
673
677
  ```sh
674
- $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
678
+ $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
675
679
  ```
676
680
 
677
681
  :param str resource_name: The name of the resource.
@@ -31,19 +31,21 @@ class CloudIntegrationAwsExternalId(pulumi.CustomResource):
31
31
 
32
32
  ## Example Usage
33
33
 
34
+ <!--Start PulumiCodeChooser -->
34
35
  ```python
35
36
  import pulumi
36
37
  import pulumi_wavefront as wavefront
37
38
 
38
39
  external_id = wavefront.CloudIntegrationAwsExternalId("externalId")
39
40
  ```
41
+ <!--End PulumiCodeChooser -->
40
42
 
41
43
  ## Import
42
44
 
43
45
  External IDs can be imported by using the `id`, e.g.:
44
46
 
45
47
  ```sh
46
- $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k
48
+ $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k
47
49
  ```
48
50
 
49
51
  :param str resource_name: The name of the resource.
@@ -60,19 +62,21 @@ class CloudIntegrationAwsExternalId(pulumi.CustomResource):
60
62
 
61
63
  ## Example Usage
62
64
 
65
+ <!--Start PulumiCodeChooser -->
63
66
  ```python
64
67
  import pulumi
65
68
  import pulumi_wavefront as wavefront
66
69
 
67
70
  external_id = wavefront.CloudIntegrationAwsExternalId("externalId")
68
71
  ```
72
+ <!--End PulumiCodeChooser -->
69
73
 
70
74
  ## Import
71
75
 
72
76
  External IDs can be imported by using the `id`, e.g.:
73
77
 
74
78
  ```sh
75
- $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k
79
+ $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k
76
80
  ```
77
81
 
78
82
  :param str resource_name: The name of the resource.
@@ -398,6 +398,7 @@ class CloudIntegrationAzure(pulumi.CustomResource):
398
398
 
399
399
  ## Example Usage
400
400
 
401
+ <!--Start PulumiCodeChooser -->
401
402
  ```python
402
403
  import pulumi
403
404
  import pulumi_wavefront as wavefront
@@ -407,13 +408,14 @@ class CloudIntegrationAzure(pulumi.CustomResource):
407
408
  client_secret="client-secret2",
408
409
  tenant="my-tenant2")
409
410
  ```
411
+ <!--End PulumiCodeChooser -->
410
412
 
411
413
  ## Import
412
414
 
413
415
  Azure Cloud Integrations can be imported by using the `id`, e.g.:
414
416
 
415
417
  ```sh
416
- $ pulumi import wavefront:index/cloudIntegrationAzure:CloudIntegrationAzure azure a411c16b-3cf7-4f03-bf11-8ca05aab898d
418
+ $ pulumi import wavefront:index/cloudIntegrationAzure:CloudIntegrationAzure azure a411c16b-3cf7-4f03-bf11-8ca05aab898d
417
419
  ```
418
420
 
419
421
  :param str resource_name: The name of the resource.
@@ -442,6 +444,7 @@ class CloudIntegrationAzure(pulumi.CustomResource):
442
444
 
443
445
  ## Example Usage
444
446
 
447
+ <!--Start PulumiCodeChooser -->
445
448
  ```python
446
449
  import pulumi
447
450
  import pulumi_wavefront as wavefront
@@ -451,13 +454,14 @@ class CloudIntegrationAzure(pulumi.CustomResource):
451
454
  client_secret="client-secret2",
452
455
  tenant="my-tenant2")
453
456
  ```
457
+ <!--End PulumiCodeChooser -->
454
458
 
455
459
  ## Import
456
460
 
457
461
  Azure Cloud Integrations can be imported by using the `id`, e.g.:
458
462
 
459
463
  ```sh
460
- $ pulumi import wavefront:index/cloudIntegrationAzure:CloudIntegrationAzure azure a411c16b-3cf7-4f03-bf11-8ca05aab898d
464
+ $ pulumi import wavefront:index/cloudIntegrationAzure:CloudIntegrationAzure azure a411c16b-3cf7-4f03-bf11-8ca05aab898d
461
465
  ```
462
466
 
463
467
  :param str resource_name: The name of the resource.
@@ -332,6 +332,7 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
332
332
 
333
333
  ## Example Usage
334
334
 
335
+ <!--Start PulumiCodeChooser -->
335
336
  ```python
336
337
  import pulumi
337
338
  import pulumi_wavefront as wavefront
@@ -342,13 +343,14 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
342
343
  client_secret="client-secret2",
343
344
  tenant="my-tenant2")
344
345
  ```
346
+ <!--End PulumiCodeChooser -->
345
347
 
346
348
  ## Import
347
349
 
348
350
  Azure Activity Log Cloud Integrations can be imported by using the `id`, e.g.:
349
351
 
350
352
  ```sh
351
- $ pulumi import wavefront:index/cloudIntegrationAzureActivityLog:CloudIntegrationAzureActivityLog azure_al a411c16b-3cf7-4f03-bf11-8ca05aab898d
353
+ $ pulumi import wavefront:index/cloudIntegrationAzureActivityLog:CloudIntegrationAzureActivityLog azure_al a411c16b-3cf7-4f03-bf11-8ca05aab898d
352
354
  ```
353
355
 
354
356
  :param str resource_name: The name of the resource.
@@ -375,6 +377,7 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
375
377
 
376
378
  ## Example Usage
377
379
 
380
+ <!--Start PulumiCodeChooser -->
378
381
  ```python
379
382
  import pulumi
380
383
  import pulumi_wavefront as wavefront
@@ -385,13 +388,14 @@ class CloudIntegrationAzureActivityLog(pulumi.CustomResource):
385
388
  client_secret="client-secret2",
386
389
  tenant="my-tenant2")
387
390
  ```
391
+ <!--End PulumiCodeChooser -->
388
392
 
389
393
  ## Import
390
394
 
391
395
  Azure Activity Log Cloud Integrations can be imported by using the `id`, e.g.:
392
396
 
393
397
  ```sh
394
- $ pulumi import wavefront:index/cloudIntegrationAzureActivityLog:CloudIntegrationAzureActivityLog azure_al a411c16b-3cf7-4f03-bf11-8ca05aab898d
398
+ $ pulumi import wavefront:index/cloudIntegrationAzureActivityLog:CloudIntegrationAzureActivityLog azure_al a411c16b-3cf7-4f03-bf11-8ca05aab898d
395
399
  ```
396
400
 
397
401
  :param str resource_name: The name of the resource.
@@ -397,6 +397,7 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
397
397
 
398
398
  ## Example Usage
399
399
 
400
+ <!--Start PulumiCodeChooser -->
400
401
  ```python
401
402
  import pulumi
402
403
  import pulumi_wavefront as wavefront
@@ -408,13 +409,14 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
408
409
  region="us-west-2",
409
410
  bucket_name="example-s3-bucket")
410
411
  ```
412
+ <!--End PulumiCodeChooser -->
411
413
 
412
414
  ## Import
413
415
 
414
416
  CloudTrail Cloud Integrations can be imported by using the `id`, e.g.:
415
417
 
416
418
  ```sh
417
- $ pulumi import wavefront:index/cloudIntegrationCloudTrail:CloudIntegrationCloudTrail cloudtrail a411c16b-3cf7-4f03-bf11-8ca05aab898d
419
+ $ pulumi import wavefront:index/cloudIntegrationCloudTrail:CloudIntegrationCloudTrail cloudtrail a411c16b-3cf7-4f03-bf11-8ca05aab898d
418
420
  ```
419
421
 
420
422
  :param str resource_name: The name of the resource.
@@ -443,6 +445,7 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
443
445
 
444
446
  ## Example Usage
445
447
 
448
+ <!--Start PulumiCodeChooser -->
446
449
  ```python
447
450
  import pulumi
448
451
  import pulumi_wavefront as wavefront
@@ -454,13 +457,14 @@ class CloudIntegrationCloudTrail(pulumi.CustomResource):
454
457
  region="us-west-2",
455
458
  bucket_name="example-s3-bucket")
456
459
  ```
460
+ <!--End PulumiCodeChooser -->
457
461
 
458
462
  ## Import
459
463
 
460
464
  CloudTrail Cloud Integrations can be imported by using the `id`, e.g.:
461
465
 
462
466
  ```sh
463
- $ pulumi import wavefront:index/cloudIntegrationCloudTrail:CloudIntegrationCloudTrail cloudtrail a411c16b-3cf7-4f03-bf11-8ca05aab898d
467
+ $ pulumi import wavefront:index/cloudIntegrationCloudTrail:CloudIntegrationCloudTrail cloudtrail a411c16b-3cf7-4f03-bf11-8ca05aab898d
464
468
  ```
465
469
 
466
470
  :param str resource_name: The name of the resource.
@@ -452,6 +452,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
452
452
 
453
453
  ## Example Usage
454
454
 
455
+ <!--Start PulumiCodeChooser -->
455
456
  ```python
456
457
  import pulumi
457
458
  import pulumi_wavefront as wavefront
@@ -462,13 +463,14 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
462
463
  role_arn="arn:aws::1234567:role/example-arn",
463
464
  external_id=ext_id.id)
464
465
  ```
466
+ <!--End PulumiCodeChooser -->
465
467
 
466
468
  ## Import
467
469
 
468
470
  CloudWatch Cloud Integrations can be imported by using the `id`, e.g.:
469
471
 
470
472
  ```sh
471
- $ pulumi import wavefront:index/cloudIntegrationCloudWatch:CloudIntegrationCloudWatch cloudwatch a411c16b-3cf7-4f03-bf11-8ca05aab898d
473
+ $ pulumi import wavefront:index/cloudIntegrationCloudWatch:CloudIntegrationCloudWatch cloudwatch a411c16b-3cf7-4f03-bf11-8ca05aab898d
472
474
  ```
473
475
 
474
476
  :param str resource_name: The name of the resource.
@@ -503,6 +505,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
503
505
 
504
506
  ## Example Usage
505
507
 
508
+ <!--Start PulumiCodeChooser -->
506
509
  ```python
507
510
  import pulumi
508
511
  import pulumi_wavefront as wavefront
@@ -513,13 +516,14 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
513
516
  role_arn="arn:aws::1234567:role/example-arn",
514
517
  external_id=ext_id.id)
515
518
  ```
519
+ <!--End PulumiCodeChooser -->
516
520
 
517
521
  ## Import
518
522
 
519
523
  CloudWatch Cloud Integrations can be imported by using the `id`, e.g.:
520
524
 
521
525
  ```sh
522
- $ pulumi import wavefront:index/cloudIntegrationCloudWatch:CloudIntegrationCloudWatch cloudwatch a411c16b-3cf7-4f03-bf11-8ca05aab898d
526
+ $ pulumi import wavefront:index/cloudIntegrationCloudWatch:CloudIntegrationCloudWatch cloudwatch a411c16b-3cf7-4f03-bf11-8ca05aab898d
523
527
  ```
524
528
 
525
529
  :param str resource_name: The name of the resource.
@@ -308,6 +308,7 @@ class CloudIntegrationEc2(pulumi.CustomResource):
308
308
 
309
309
  ## Example Usage
310
310
 
311
+ <!--Start PulumiCodeChooser -->
311
312
  ```python
312
313
  import pulumi
313
314
  import pulumi_wavefront as wavefront
@@ -317,13 +318,14 @@ class CloudIntegrationEc2(pulumi.CustomResource):
317
318
  role_arn="arn:aws::1234567:role/example-arn",
318
319
  external_id=ext_id.id)
319
320
  ```
321
+ <!--End PulumiCodeChooser -->
320
322
 
321
323
  ## Import
322
324
 
323
325
  EC2 Cloud Integrations can be imported by using the `id`, e.g.:
324
326
 
325
327
  ```sh
326
- $ pulumi import wavefront:index/cloudIntegrationEc2:CloudIntegrationEc2 ec2 a411c16b-3cf7-4f03-bf11-8ca05aab898d
328
+ $ pulumi import wavefront:index/cloudIntegrationEc2:CloudIntegrationEc2 ec2 a411c16b-3cf7-4f03-bf11-8ca05aab898d
327
329
  ```
328
330
 
329
331
  :param str resource_name: The name of the resource.
@@ -351,6 +353,7 @@ class CloudIntegrationEc2(pulumi.CustomResource):
351
353
 
352
354
  ## Example Usage
353
355
 
356
+ <!--Start PulumiCodeChooser -->
354
357
  ```python
355
358
  import pulumi
356
359
  import pulumi_wavefront as wavefront
@@ -360,13 +363,14 @@ class CloudIntegrationEc2(pulumi.CustomResource):
360
363
  role_arn="arn:aws::1234567:role/example-arn",
361
364
  external_id=ext_id.id)
362
365
  ```
366
+ <!--End PulumiCodeChooser -->
363
367
 
364
368
  ## Import
365
369
 
366
370
  EC2 Cloud Integrations can be imported by using the `id`, e.g.:
367
371
 
368
372
  ```sh
369
- $ pulumi import wavefront:index/cloudIntegrationEc2:CloudIntegrationEc2 ec2 a411c16b-3cf7-4f03-bf11-8ca05aab898d
373
+ $ pulumi import wavefront:index/cloudIntegrationEc2:CloudIntegrationEc2 ec2 a411c16b-3cf7-4f03-bf11-8ca05aab898d
370
374
  ```
371
375
 
372
376
  :param str resource_name: The name of the resource.
@@ -353,6 +353,7 @@ class CloudIntegrationGcp(pulumi.CustomResource):
353
353
 
354
354
  ## Example Usage
355
355
 
356
+ <!--Start PulumiCodeChooser -->
356
357
  ```python
357
358
  import pulumi
358
359
  import pulumi_wavefront as wavefront
@@ -363,13 +364,14 @@ class CloudIntegrationGcp(pulumi.CustomResource):
363
364
  \"\"\",
364
365
  project_id="example-gcp-project")
365
366
  ```
367
+ <!--End PulumiCodeChooser -->
366
368
 
367
369
  ## Import
368
370
 
369
371
  GCP Cloud Integrations can be imported by using the `id`, e.g.:
370
372
 
371
373
  ```sh
372
- $ pulumi import wavefront:index/cloudIntegrationGcp:CloudIntegrationGcp gcp a411c16b-3cf7-4f03-bf11-8ca05aab898d
374
+ $ pulumi import wavefront:index/cloudIntegrationGcp:CloudIntegrationGcp gcp a411c16b-3cf7-4f03-bf11-8ca05aab898d
373
375
  ```
374
376
 
375
377
  :param str resource_name: The name of the resource.
@@ -401,6 +403,7 @@ class CloudIntegrationGcp(pulumi.CustomResource):
401
403
 
402
404
  ## Example Usage
403
405
 
406
+ <!--Start PulumiCodeChooser -->
404
407
  ```python
405
408
  import pulumi
406
409
  import pulumi_wavefront as wavefront
@@ -411,13 +414,14 @@ class CloudIntegrationGcp(pulumi.CustomResource):
411
414
  \"\"\",
412
415
  project_id="example-gcp-project")
413
416
  ```
417
+ <!--End PulumiCodeChooser -->
414
418
 
415
419
  ## Import
416
420
 
417
421
  GCP Cloud Integrations can be imported by using the `id`, e.g.:
418
422
 
419
423
  ```sh
420
- $ pulumi import wavefront:index/cloudIntegrationGcp:CloudIntegrationGcp gcp a411c16b-3cf7-4f03-bf11-8ca05aab898d
424
+ $ pulumi import wavefront:index/cloudIntegrationGcp:CloudIntegrationGcp gcp a411c16b-3cf7-4f03-bf11-8ca05aab898d
421
425
  ```
422
426
 
423
427
  :param str resource_name: The name of the resource.
@@ -303,6 +303,7 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
303
303
 
304
304
  ## Example Usage
305
305
 
306
+ <!--Start PulumiCodeChooser -->
306
307
  ```python
307
308
  import pulumi
308
309
  import pulumi_wavefront as wavefront
@@ -314,13 +315,14 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
314
315
  \"\"\",
315
316
  project_id="example-gcp-project")
316
317
  ```
318
+ <!--End PulumiCodeChooser -->
317
319
 
318
320
  ## Import
319
321
 
320
322
  GCP Billing Cloud Integrations can be imported by using the `id`, e.g.:
321
323
 
322
324
  ```sh
323
- $ pulumi import wavefront:index/cloudIntegrationGcpBilling:CloudIntegrationGcpBilling gcp_billing a411c16b-3cf7-4f03-bf11-8ca05aab898d
325
+ $ pulumi import wavefront:index/cloudIntegrationGcpBilling:CloudIntegrationGcpBilling gcp_billing a411c16b-3cf7-4f03-bf11-8ca05aab898d
324
326
  ```
325
327
 
326
328
  :param str resource_name: The name of the resource.
@@ -347,6 +349,7 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
347
349
 
348
350
  ## Example Usage
349
351
 
352
+ <!--Start PulumiCodeChooser -->
350
353
  ```python
351
354
  import pulumi
352
355
  import pulumi_wavefront as wavefront
@@ -358,13 +361,14 @@ class CloudIntegrationGcpBilling(pulumi.CustomResource):
358
361
  \"\"\",
359
362
  project_id="example-gcp-project")
360
363
  ```
364
+ <!--End PulumiCodeChooser -->
361
365
 
362
366
  ## Import
363
367
 
364
368
  GCP Billing Cloud Integrations can be imported by using the `id`, e.g.:
365
369
 
366
370
  ```sh
367
- $ pulumi import wavefront:index/cloudIntegrationGcpBilling:CloudIntegrationGcpBilling gcp_billing a411c16b-3cf7-4f03-bf11-8ca05aab898d
371
+ $ pulumi import wavefront:index/cloudIntegrationGcpBilling:CloudIntegrationGcpBilling gcp_billing a411c16b-3cf7-4f03-bf11-8ca05aab898d
368
372
  ```
369
373
 
370
374
  :param str resource_name: The name of the resource.
@@ -336,19 +336,21 @@ class CloudIntegrationNewRelic(pulumi.CustomResource):
336
336
 
337
337
  ## Example Usage
338
338
 
339
+ <!--Start PulumiCodeChooser -->
339
340
  ```python
340
341
  import pulumi
341
342
  import pulumi_wavefront as wavefront
342
343
 
343
344
  newrelic = wavefront.CloudIntegrationNewRelic("newrelic", api_key="example-api-key")
344
345
  ```
346
+ <!--End PulumiCodeChooser -->
345
347
 
346
348
  ## Import
347
349
 
348
350
  NewRelic Integrations can be imported by using the `id`, e.g.:
349
351
 
350
352
  ```sh
351
- $ pulumi import wavefront:index/cloudIntegrationNewRelic:CloudIntegrationNewRelic newrelic a411c16b-3cf7-4f03-bf11-8ca05aab898d
353
+ $ pulumi import wavefront:index/cloudIntegrationNewRelic:CloudIntegrationNewRelic newrelic a411c16b-3cf7-4f03-bf11-8ca05aab898d
352
354
  ```
353
355
 
354
356
  :param str resource_name: The name of the resource.
@@ -375,19 +377,21 @@ class CloudIntegrationNewRelic(pulumi.CustomResource):
375
377
 
376
378
  ## Example Usage
377
379
 
380
+ <!--Start PulumiCodeChooser -->
378
381
  ```python
379
382
  import pulumi
380
383
  import pulumi_wavefront as wavefront
381
384
 
382
385
  newrelic = wavefront.CloudIntegrationNewRelic("newrelic", api_key="example-api-key")
383
386
  ```
387
+ <!--End PulumiCodeChooser -->
384
388
 
385
389
  ## Import
386
390
 
387
391
  NewRelic Integrations can be imported by using the `id`, e.g.:
388
392
 
389
393
  ```sh
390
- $ pulumi import wavefront:index/cloudIntegrationNewRelic:CloudIntegrationNewRelic newrelic a411c16b-3cf7-4f03-bf11-8ca05aab898d
394
+ $ pulumi import wavefront:index/cloudIntegrationNewRelic:CloudIntegrationNewRelic newrelic a411c16b-3cf7-4f03-bf11-8ca05aab898d
391
395
  ```
392
396
 
393
397
  :param str resource_name: The name of the resource.
@@ -414,7 +414,7 @@ class Dashboard(pulumi.CustomResource):
414
414
  Dashboards can be imported by using the `id`, e.g.:
415
415
 
416
416
  ```sh
417
- $ pulumi import wavefront:index/dashboard:Dashboard dashboard tftestimport
417
+ $ pulumi import wavefront:index/dashboard:Dashboard dashboard tftestimport
418
418
  ```
419
419
 
420
420
  :param str resource_name: The name of the resource.
@@ -448,7 +448,7 @@ class Dashboard(pulumi.CustomResource):
448
448
  Dashboards can be imported by using the `id`, e.g.:
449
449
 
450
450
  ```sh
451
- $ pulumi import wavefront:index/dashboard:Dashboard dashboard tftestimport
451
+ $ pulumi import wavefront:index/dashboard:Dashboard dashboard tftestimport
452
452
  ```
453
453
 
454
454
  :param str resource_name: The name of the resource.