pulumi-newrelic 5.23.0a1713333809__py3-none-any.whl → 5.23.0a1713975814__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 +110 -270
- pulumi_newrelic/account_management.py +20 -20
- pulumi_newrelic/alert_channel.py +76 -92
- pulumi_newrelic/alert_condition.py +104 -149
- pulumi_newrelic/alert_muting_rule.py +33 -35
- pulumi_newrelic/alert_policy.py +68 -43
- pulumi_newrelic/alert_policy_channel.py +12 -8
- pulumi_newrelic/cloud/_inputs.py +322 -1072
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +4 -6
- pulumi_newrelic/cloud/aws_integrations.py +13 -15
- pulumi_newrelic/cloud/aws_link_account.py +4 -6
- pulumi_newrelic/cloud/azure_integrations.py +10 -12
- pulumi_newrelic/cloud/azure_link_account.py +4 -6
- pulumi_newrelic/cloud/gcp_integrations.py +6 -6
- pulumi_newrelic/cloud/gcp_link_account.py +4 -6
- pulumi_newrelic/cloud/outputs.py +322 -1072
- pulumi_newrelic/data_partition_rule.py +0 -4
- pulumi_newrelic/entity_tags.py +13 -17
- pulumi_newrelic/events_to_metrics_rule.py +2 -4
- pulumi_newrelic/get_account.py +0 -4
- pulumi_newrelic/get_application.py +8 -10
- pulumi_newrelic/get_authentication_domain.py +4 -8
- pulumi_newrelic/get_cloud_account.py +0 -4
- pulumi_newrelic/get_entity.py +28 -32
- pulumi_newrelic/get_group.py +42 -8
- pulumi_newrelic/get_key_transaction.py +8 -10
- pulumi_newrelic/get_obfuscation_expression.py +2 -4
- pulumi_newrelic/get_service_level_alert_helper.py +22 -46
- pulumi_newrelic/get_test_grok_pattern.py +4 -6
- pulumi_newrelic/get_user.py +0 -4
- pulumi_newrelic/group.py +40 -42
- pulumi_newrelic/infra_alert_condition.py +154 -131
- pulumi_newrelic/insights/event.py +8 -25
- pulumi_newrelic/log_parsing_rule.py +6 -10
- pulumi_newrelic/monitor_downtime.py +174 -193
- pulumi_newrelic/notification_channel.py +124 -150
- pulumi_newrelic/nrql_alert_condition.py +38 -48
- pulumi_newrelic/nrql_drop_rule.py +34 -38
- pulumi_newrelic/obfuscation_expression.py +2 -4
- pulumi_newrelic/obfuscation_rule.py +4 -4
- pulumi_newrelic/one_dashboard.py +42 -48
- pulumi_newrelic/one_dashboard_raw.py +86 -86
- pulumi_newrelic/outputs.py +110 -270
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +6 -8
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +158 -40
- pulumi_newrelic/service_level.py +38 -123
- pulumi_newrelic/synthetics/alert_condition.py +34 -64
- pulumi_newrelic/synthetics/broken_links_monitor.py +18 -20
- pulumi_newrelic/synthetics/cert_check_monitor.py +16 -18
- pulumi_newrelic/synthetics/get_private_location.py +0 -8
- pulumi_newrelic/synthetics/get_secure_credential.py +0 -12
- pulumi_newrelic/synthetics/monitor.py +48 -52
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +69 -83
- pulumi_newrelic/synthetics/private_location.py +6 -6
- pulumi_newrelic/synthetics/script_monitor.py +38 -42
- pulumi_newrelic/synthetics/secure_credential.py +25 -22
- pulumi_newrelic/synthetics/step_monitor.py +18 -20
- pulumi_newrelic/user.py +8 -10
- pulumi_newrelic/workflow.py +20 -24
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1713975814.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0a1713333809.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/top_level.txt +0 -0
pulumi_newrelic/cloud/outputs.py
CHANGED
@@ -182,13 +182,11 @@ class AwsGovcloudIntegrationsAlb(dict):
|
|
182
182
|
tag_key: Optional[str] = None,
|
183
183
|
tag_value: Optional[str] = None):
|
184
184
|
"""
|
185
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
185
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
186
186
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
187
187
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
188
188
|
:param Sequence[str] load_balancer_prefixes: Specify each name or prefix for the LBs that you want to monitor. Filter values are case-sensitive.
|
189
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
190
|
-
|
191
|
-
Some integration types support an additional set of arguments:
|
189
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
192
190
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
193
191
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
194
192
|
"""
|
@@ -211,7 +209,7 @@ class AwsGovcloudIntegrationsAlb(dict):
|
|
211
209
|
@pulumi.getter(name="awsRegions")
|
212
210
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
213
211
|
"""
|
214
|
-
Specify each AWS region that includes the resources that you want to monitor
|
212
|
+
Specify each AWS region that includes the resources that you want to monitor
|
215
213
|
"""
|
216
214
|
return pulumi.get(self, "aws_regions")
|
217
215
|
|
@@ -243,9 +241,7 @@ class AwsGovcloudIntegrationsAlb(dict):
|
|
243
241
|
@pulumi.getter(name="metricsPollingInterval")
|
244
242
|
def metrics_polling_interval(self) -> Optional[int]:
|
245
243
|
"""
|
246
|
-
The data polling interval in seconds
|
247
|
-
|
248
|
-
Some integration types support an additional set of arguments:
|
244
|
+
The data polling interval in seconds
|
249
245
|
"""
|
250
246
|
return pulumi.get(self, "metrics_polling_interval")
|
251
247
|
|
@@ -300,11 +296,9 @@ class AwsGovcloudIntegrationsApiGateway(dict):
|
|
300
296
|
tag_key: Optional[str] = None,
|
301
297
|
tag_value: Optional[str] = None):
|
302
298
|
"""
|
303
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
304
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
305
|
-
|
306
|
-
Some integration types support an additional set of arguments:
|
307
|
-
:param Sequence[str] stage_prefixes: Specify each name or prefix for the Stages that you want to monitor. Filter values are case-sensitive.
|
299
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
300
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
301
|
+
:param Sequence[str] stage_prefixes: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
308
302
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
309
303
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
310
304
|
"""
|
@@ -323,7 +317,7 @@ class AwsGovcloudIntegrationsApiGateway(dict):
|
|
323
317
|
@pulumi.getter(name="awsRegions")
|
324
318
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
325
319
|
"""
|
326
|
-
Specify each AWS region that includes the resources that you want to monitor
|
320
|
+
Specify each AWS region that includes the resources that you want to monitor
|
327
321
|
"""
|
328
322
|
return pulumi.get(self, "aws_regions")
|
329
323
|
|
@@ -331,9 +325,7 @@ class AwsGovcloudIntegrationsApiGateway(dict):
|
|
331
325
|
@pulumi.getter(name="metricsPollingInterval")
|
332
326
|
def metrics_polling_interval(self) -> Optional[int]:
|
333
327
|
"""
|
334
|
-
The data polling interval in seconds
|
335
|
-
|
336
|
-
Some integration types support an additional set of arguments:
|
328
|
+
The data polling interval in seconds
|
337
329
|
"""
|
338
330
|
return pulumi.get(self, "metrics_polling_interval")
|
339
331
|
|
@@ -341,7 +333,7 @@ class AwsGovcloudIntegrationsApiGateway(dict):
|
|
341
333
|
@pulumi.getter(name="stagePrefixes")
|
342
334
|
def stage_prefixes(self) -> Optional[Sequence[str]]:
|
343
335
|
"""
|
344
|
-
|
336
|
+
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
345
337
|
"""
|
346
338
|
return pulumi.get(self, "stage_prefixes")
|
347
339
|
|
@@ -387,10 +379,8 @@ class AwsGovcloudIntegrationsAutoScaling(dict):
|
|
387
379
|
aws_regions: Optional[Sequence[str]] = None,
|
388
380
|
metrics_polling_interval: Optional[int] = None):
|
389
381
|
"""
|
390
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
391
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
392
|
-
|
393
|
-
Some integration types support an additional set of arguments:
|
382
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
383
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
394
384
|
"""
|
395
385
|
if aws_regions is not None:
|
396
386
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -401,7 +391,7 @@ class AwsGovcloudIntegrationsAutoScaling(dict):
|
|
401
391
|
@pulumi.getter(name="awsRegions")
|
402
392
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
403
393
|
"""
|
404
|
-
Specify each AWS region that includes the resources that you want to monitor
|
394
|
+
Specify each AWS region that includes the resources that you want to monitor
|
405
395
|
"""
|
406
396
|
return pulumi.get(self, "aws_regions")
|
407
397
|
|
@@ -409,9 +399,7 @@ class AwsGovcloudIntegrationsAutoScaling(dict):
|
|
409
399
|
@pulumi.getter(name="metricsPollingInterval")
|
410
400
|
def metrics_polling_interval(self) -> Optional[int]:
|
411
401
|
"""
|
412
|
-
The data polling interval in seconds
|
413
|
-
|
414
|
-
Some integration types support an additional set of arguments:
|
402
|
+
The data polling interval in seconds
|
415
403
|
"""
|
416
404
|
return pulumi.get(self, "metrics_polling_interval")
|
417
405
|
|
@@ -441,10 +429,8 @@ class AwsGovcloudIntegrationsAwsDirectConnect(dict):
|
|
441
429
|
aws_regions: Optional[Sequence[str]] = None,
|
442
430
|
metrics_polling_interval: Optional[int] = None):
|
443
431
|
"""
|
444
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
445
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
446
|
-
|
447
|
-
Some integration types support an additional set of arguments:
|
432
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
433
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
448
434
|
"""
|
449
435
|
if aws_regions is not None:
|
450
436
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -455,7 +441,7 @@ class AwsGovcloudIntegrationsAwsDirectConnect(dict):
|
|
455
441
|
@pulumi.getter(name="awsRegions")
|
456
442
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
457
443
|
"""
|
458
|
-
Specify each AWS region that includes the resources that you want to monitor
|
444
|
+
Specify each AWS region that includes the resources that you want to monitor
|
459
445
|
"""
|
460
446
|
return pulumi.get(self, "aws_regions")
|
461
447
|
|
@@ -463,9 +449,7 @@ class AwsGovcloudIntegrationsAwsDirectConnect(dict):
|
|
463
449
|
@pulumi.getter(name="metricsPollingInterval")
|
464
450
|
def metrics_polling_interval(self) -> Optional[int]:
|
465
451
|
"""
|
466
|
-
The data polling interval in seconds
|
467
|
-
|
468
|
-
Some integration types support an additional set of arguments:
|
452
|
+
The data polling interval in seconds
|
469
453
|
"""
|
470
454
|
return pulumi.get(self, "metrics_polling_interval")
|
471
455
|
|
@@ -495,10 +479,8 @@ class AwsGovcloudIntegrationsAwsStates(dict):
|
|
495
479
|
aws_regions: Optional[Sequence[str]] = None,
|
496
480
|
metrics_polling_interval: Optional[int] = None):
|
497
481
|
"""
|
498
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
499
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
500
|
-
|
501
|
-
Some integration types support an additional set of arguments:
|
482
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
483
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
502
484
|
"""
|
503
485
|
if aws_regions is not None:
|
504
486
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -509,7 +491,7 @@ class AwsGovcloudIntegrationsAwsStates(dict):
|
|
509
491
|
@pulumi.getter(name="awsRegions")
|
510
492
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
511
493
|
"""
|
512
|
-
Specify each AWS region that includes the resources that you want to monitor
|
494
|
+
Specify each AWS region that includes the resources that you want to monitor
|
513
495
|
"""
|
514
496
|
return pulumi.get(self, "aws_regions")
|
515
497
|
|
@@ -517,9 +499,7 @@ class AwsGovcloudIntegrationsAwsStates(dict):
|
|
517
499
|
@pulumi.getter(name="metricsPollingInterval")
|
518
500
|
def metrics_polling_interval(self) -> Optional[int]:
|
519
501
|
"""
|
520
|
-
The data polling interval in seconds
|
521
|
-
|
522
|
-
Some integration types support an additional set of arguments:
|
502
|
+
The data polling interval in seconds
|
523
503
|
"""
|
524
504
|
return pulumi.get(self, "metrics_polling_interval")
|
525
505
|
|
@@ -549,10 +529,8 @@ class AwsGovcloudIntegrationsCloudtrail(dict):
|
|
549
529
|
aws_regions: Optional[Sequence[str]] = None,
|
550
530
|
metrics_polling_interval: Optional[int] = None):
|
551
531
|
"""
|
552
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
553
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
554
|
-
|
555
|
-
Some integration types support an additional set of arguments:
|
532
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
533
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
556
534
|
"""
|
557
535
|
if aws_regions is not None:
|
558
536
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -563,7 +541,7 @@ class AwsGovcloudIntegrationsCloudtrail(dict):
|
|
563
541
|
@pulumi.getter(name="awsRegions")
|
564
542
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
565
543
|
"""
|
566
|
-
Specify each AWS region that includes the resources that you want to monitor
|
544
|
+
Specify each AWS region that includes the resources that you want to monitor
|
567
545
|
"""
|
568
546
|
return pulumi.get(self, "aws_regions")
|
569
547
|
|
@@ -571,9 +549,7 @@ class AwsGovcloudIntegrationsCloudtrail(dict):
|
|
571
549
|
@pulumi.getter(name="metricsPollingInterval")
|
572
550
|
def metrics_polling_interval(self) -> Optional[int]:
|
573
551
|
"""
|
574
|
-
The data polling interval in seconds
|
575
|
-
|
576
|
-
Some integration types support an additional set of arguments:
|
552
|
+
The data polling interval in seconds
|
577
553
|
"""
|
578
554
|
return pulumi.get(self, "metrics_polling_interval")
|
579
555
|
|
@@ -615,12 +591,10 @@ class AwsGovcloudIntegrationsDynamoDb(dict):
|
|
615
591
|
tag_key: Optional[str] = None,
|
616
592
|
tag_value: Optional[str] = None):
|
617
593
|
"""
|
618
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
594
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
619
595
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
620
596
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
621
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
622
|
-
|
623
|
-
Some integration types support an additional set of arguments:
|
597
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
624
598
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
625
599
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
626
600
|
"""
|
@@ -641,7 +615,7 @@ class AwsGovcloudIntegrationsDynamoDb(dict):
|
|
641
615
|
@pulumi.getter(name="awsRegions")
|
642
616
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
643
617
|
"""
|
644
|
-
Specify each AWS region that includes the resources that you want to monitor
|
618
|
+
Specify each AWS region that includes the resources that you want to monitor
|
645
619
|
"""
|
646
620
|
return pulumi.get(self, "aws_regions")
|
647
621
|
|
@@ -665,9 +639,7 @@ class AwsGovcloudIntegrationsDynamoDb(dict):
|
|
665
639
|
@pulumi.getter(name="metricsPollingInterval")
|
666
640
|
def metrics_polling_interval(self) -> Optional[int]:
|
667
641
|
"""
|
668
|
-
The data polling interval in seconds
|
669
|
-
|
670
|
-
Some integration types support an additional set of arguments:
|
642
|
+
The data polling interval in seconds
|
671
643
|
"""
|
672
644
|
return pulumi.get(self, "metrics_polling_interval")
|
673
645
|
|
@@ -722,11 +694,9 @@ class AwsGovcloudIntegrationsEbs(dict):
|
|
722
694
|
tag_key: Optional[str] = None,
|
723
695
|
tag_value: Optional[str] = None):
|
724
696
|
"""
|
725
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
697
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
726
698
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
727
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
728
|
-
|
729
|
-
Some integration types support an additional set of arguments:
|
699
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
730
700
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
731
701
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
732
702
|
"""
|
@@ -745,7 +715,7 @@ class AwsGovcloudIntegrationsEbs(dict):
|
|
745
715
|
@pulumi.getter(name="awsRegions")
|
746
716
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
747
717
|
"""
|
748
|
-
Specify each AWS region that includes the resources that you want to monitor
|
718
|
+
Specify each AWS region that includes the resources that you want to monitor
|
749
719
|
"""
|
750
720
|
return pulumi.get(self, "aws_regions")
|
751
721
|
|
@@ -761,9 +731,7 @@ class AwsGovcloudIntegrationsEbs(dict):
|
|
761
731
|
@pulumi.getter(name="metricsPollingInterval")
|
762
732
|
def metrics_polling_interval(self) -> Optional[int]:
|
763
733
|
"""
|
764
|
-
The data polling interval in seconds
|
765
|
-
|
766
|
-
Some integration types support an additional set of arguments:
|
734
|
+
The data polling interval in seconds
|
767
735
|
"""
|
768
736
|
return pulumi.get(self, "metrics_polling_interval")
|
769
737
|
|
@@ -818,11 +786,9 @@ class AwsGovcloudIntegrationsEc2(dict):
|
|
818
786
|
tag_key: Optional[str] = None,
|
819
787
|
tag_value: Optional[str] = None):
|
820
788
|
"""
|
821
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
789
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
822
790
|
:param bool fetch_ip_addresses: Specify if IP addresses of ec2 instance should be collected
|
823
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
824
|
-
|
825
|
-
Some integration types support an additional set of arguments:
|
791
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
826
792
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
827
793
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
828
794
|
"""
|
@@ -841,7 +807,7 @@ class AwsGovcloudIntegrationsEc2(dict):
|
|
841
807
|
@pulumi.getter(name="awsRegions")
|
842
808
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
843
809
|
"""
|
844
|
-
Specify each AWS region that includes the resources that you want to monitor
|
810
|
+
Specify each AWS region that includes the resources that you want to monitor
|
845
811
|
"""
|
846
812
|
return pulumi.get(self, "aws_regions")
|
847
813
|
|
@@ -857,9 +823,7 @@ class AwsGovcloudIntegrationsEc2(dict):
|
|
857
823
|
@pulumi.getter(name="metricsPollingInterval")
|
858
824
|
def metrics_polling_interval(self) -> Optional[int]:
|
859
825
|
"""
|
860
|
-
The data polling interval in seconds
|
861
|
-
|
862
|
-
Some integration types support an additional set of arguments:
|
826
|
+
The data polling interval in seconds
|
863
827
|
"""
|
864
828
|
return pulumi.get(self, "metrics_polling_interval")
|
865
829
|
|
@@ -914,11 +878,9 @@ class AwsGovcloudIntegrationsElasticSearch(dict):
|
|
914
878
|
tag_key: Optional[str] = None,
|
915
879
|
tag_value: Optional[str] = None):
|
916
880
|
"""
|
917
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
918
|
-
:param bool fetch_nodes: Specify if
|
919
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
920
|
-
|
921
|
-
Some integration types support an additional set of arguments:
|
881
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
882
|
+
:param bool fetch_nodes: Specify if IP addresses of ec2 instance should be collected
|
883
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
922
884
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
923
885
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
924
886
|
"""
|
@@ -937,7 +899,7 @@ class AwsGovcloudIntegrationsElasticSearch(dict):
|
|
937
899
|
@pulumi.getter(name="awsRegions")
|
938
900
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
939
901
|
"""
|
940
|
-
Specify each AWS region that includes the resources that you want to monitor
|
902
|
+
Specify each AWS region that includes the resources that you want to monitor
|
941
903
|
"""
|
942
904
|
return pulumi.get(self, "aws_regions")
|
943
905
|
|
@@ -945,7 +907,7 @@ class AwsGovcloudIntegrationsElasticSearch(dict):
|
|
945
907
|
@pulumi.getter(name="fetchNodes")
|
946
908
|
def fetch_nodes(self) -> Optional[bool]:
|
947
909
|
"""
|
948
|
-
Specify if
|
910
|
+
Specify if IP addresses of ec2 instance should be collected
|
949
911
|
"""
|
950
912
|
return pulumi.get(self, "fetch_nodes")
|
951
913
|
|
@@ -953,9 +915,7 @@ class AwsGovcloudIntegrationsElasticSearch(dict):
|
|
953
915
|
@pulumi.getter(name="metricsPollingInterval")
|
954
916
|
def metrics_polling_interval(self) -> Optional[int]:
|
955
917
|
"""
|
956
|
-
The data polling interval in seconds
|
957
|
-
|
958
|
-
Some integration types support an additional set of arguments:
|
918
|
+
The data polling interval in seconds
|
959
919
|
"""
|
960
920
|
return pulumi.get(self, "metrics_polling_interval")
|
961
921
|
|
@@ -1007,12 +967,10 @@ class AwsGovcloudIntegrationsElb(dict):
|
|
1007
967
|
fetch_tags: Optional[bool] = None,
|
1008
968
|
metrics_polling_interval: Optional[int] = None):
|
1009
969
|
"""
|
1010
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
970
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1011
971
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1012
972
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1013
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1014
|
-
|
1015
|
-
Some integration types support an additional set of arguments:
|
973
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1016
974
|
"""
|
1017
975
|
if aws_regions is not None:
|
1018
976
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -1027,7 +985,7 @@ class AwsGovcloudIntegrationsElb(dict):
|
|
1027
985
|
@pulumi.getter(name="awsRegions")
|
1028
986
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1029
987
|
"""
|
1030
|
-
Specify each AWS region that includes the resources that you want to monitor
|
988
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1031
989
|
"""
|
1032
990
|
return pulumi.get(self, "aws_regions")
|
1033
991
|
|
@@ -1051,9 +1009,7 @@ class AwsGovcloudIntegrationsElb(dict):
|
|
1051
1009
|
@pulumi.getter(name="metricsPollingInterval")
|
1052
1010
|
def metrics_polling_interval(self) -> Optional[int]:
|
1053
1011
|
"""
|
1054
|
-
The data polling interval in seconds
|
1055
|
-
|
1056
|
-
Some integration types support an additional set of arguments:
|
1012
|
+
The data polling interval in seconds
|
1057
1013
|
"""
|
1058
1014
|
return pulumi.get(self, "metrics_polling_interval")
|
1059
1015
|
|
@@ -1092,11 +1048,9 @@ class AwsGovcloudIntegrationsEmr(dict):
|
|
1092
1048
|
tag_key: Optional[str] = None,
|
1093
1049
|
tag_value: Optional[str] = None):
|
1094
1050
|
"""
|
1095
|
-
:param str aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1051
|
+
:param str aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1096
1052
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1097
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1098
|
-
|
1099
|
-
Some integration types support an additional set of arguments:
|
1053
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1100
1054
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1101
1055
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1102
1056
|
"""
|
@@ -1115,7 +1069,7 @@ class AwsGovcloudIntegrationsEmr(dict):
|
|
1115
1069
|
@pulumi.getter(name="awsRegions")
|
1116
1070
|
def aws_regions(self) -> Optional[str]:
|
1117
1071
|
"""
|
1118
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1072
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1119
1073
|
"""
|
1120
1074
|
return pulumi.get(self, "aws_regions")
|
1121
1075
|
|
@@ -1131,9 +1085,7 @@ class AwsGovcloudIntegrationsEmr(dict):
|
|
1131
1085
|
@pulumi.getter(name="metricsPollingInterval")
|
1132
1086
|
def metrics_polling_interval(self) -> Optional[int]:
|
1133
1087
|
"""
|
1134
|
-
The data polling interval in seconds
|
1135
|
-
|
1136
|
-
Some integration types support an additional set of arguments:
|
1088
|
+
The data polling interval in seconds
|
1137
1089
|
"""
|
1138
1090
|
return pulumi.get(self, "metrics_polling_interval")
|
1139
1091
|
|
@@ -1182,9 +1134,7 @@ class AwsGovcloudIntegrationsIam(dict):
|
|
1182
1134
|
tag_key: Optional[str] = None,
|
1183
1135
|
tag_value: Optional[str] = None):
|
1184
1136
|
"""
|
1185
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1186
|
-
|
1187
|
-
Some integration types support an additional set of arguments:
|
1137
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1188
1138
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1189
1139
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1190
1140
|
"""
|
@@ -1199,9 +1149,7 @@ class AwsGovcloudIntegrationsIam(dict):
|
|
1199
1149
|
@pulumi.getter(name="metricsPollingInterval")
|
1200
1150
|
def metrics_polling_interval(self) -> Optional[int]:
|
1201
1151
|
"""
|
1202
|
-
The data polling interval in seconds
|
1203
|
-
|
1204
|
-
Some integration types support an additional set of arguments:
|
1152
|
+
The data polling interval in seconds
|
1205
1153
|
"""
|
1206
1154
|
return pulumi.get(self, "metrics_polling_interval")
|
1207
1155
|
|
@@ -1256,11 +1204,9 @@ class AwsGovcloudIntegrationsLambda(dict):
|
|
1256
1204
|
tag_key: Optional[str] = None,
|
1257
1205
|
tag_value: Optional[str] = None):
|
1258
1206
|
"""
|
1259
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1207
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1260
1208
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1261
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1262
|
-
|
1263
|
-
Some integration types support an additional set of arguments:
|
1209
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1264
1210
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1265
1211
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1266
1212
|
"""
|
@@ -1279,7 +1225,7 @@ class AwsGovcloudIntegrationsLambda(dict):
|
|
1279
1225
|
@pulumi.getter(name="awsRegions")
|
1280
1226
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1281
1227
|
"""
|
1282
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1228
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1283
1229
|
"""
|
1284
1230
|
return pulumi.get(self, "aws_regions")
|
1285
1231
|
|
@@ -1295,9 +1241,7 @@ class AwsGovcloudIntegrationsLambda(dict):
|
|
1295
1241
|
@pulumi.getter(name="metricsPollingInterval")
|
1296
1242
|
def metrics_polling_interval(self) -> Optional[int]:
|
1297
1243
|
"""
|
1298
|
-
The data polling interval in seconds
|
1299
|
-
|
1300
|
-
Some integration types support an additional set of arguments:
|
1244
|
+
The data polling interval in seconds
|
1301
1245
|
"""
|
1302
1246
|
return pulumi.get(self, "metrics_polling_interval")
|
1303
1247
|
|
@@ -1352,11 +1296,9 @@ class AwsGovcloudIntegrationsRds(dict):
|
|
1352
1296
|
tag_key: Optional[str] = None,
|
1353
1297
|
tag_value: Optional[str] = None):
|
1354
1298
|
"""
|
1355
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1299
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1356
1300
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1357
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1358
|
-
|
1359
|
-
Some integration types support an additional set of arguments:
|
1301
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1360
1302
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1361
1303
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1362
1304
|
"""
|
@@ -1375,7 +1317,7 @@ class AwsGovcloudIntegrationsRds(dict):
|
|
1375
1317
|
@pulumi.getter(name="awsRegions")
|
1376
1318
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1377
1319
|
"""
|
1378
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1320
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1379
1321
|
"""
|
1380
1322
|
return pulumi.get(self, "aws_regions")
|
1381
1323
|
|
@@ -1391,9 +1333,7 @@ class AwsGovcloudIntegrationsRds(dict):
|
|
1391
1333
|
@pulumi.getter(name="metricsPollingInterval")
|
1392
1334
|
def metrics_polling_interval(self) -> Optional[int]:
|
1393
1335
|
"""
|
1394
|
-
The data polling interval in seconds
|
1395
|
-
|
1396
|
-
Some integration types support an additional set of arguments:
|
1336
|
+
The data polling interval in seconds
|
1397
1337
|
"""
|
1398
1338
|
return pulumi.get(self, "metrics_polling_interval")
|
1399
1339
|
|
@@ -1445,10 +1385,8 @@ class AwsGovcloudIntegrationsRedShift(dict):
|
|
1445
1385
|
tag_key: Optional[str] = None,
|
1446
1386
|
tag_value: Optional[str] = None):
|
1447
1387
|
"""
|
1448
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1449
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1450
|
-
|
1451
|
-
Some integration types support an additional set of arguments:
|
1388
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1389
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1452
1390
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1453
1391
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1454
1392
|
"""
|
@@ -1465,7 +1403,7 @@ class AwsGovcloudIntegrationsRedShift(dict):
|
|
1465
1403
|
@pulumi.getter(name="awsRegions")
|
1466
1404
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1467
1405
|
"""
|
1468
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1406
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1469
1407
|
"""
|
1470
1408
|
return pulumi.get(self, "aws_regions")
|
1471
1409
|
|
@@ -1473,9 +1411,7 @@ class AwsGovcloudIntegrationsRedShift(dict):
|
|
1473
1411
|
@pulumi.getter(name="metricsPollingInterval")
|
1474
1412
|
def metrics_polling_interval(self) -> Optional[int]:
|
1475
1413
|
"""
|
1476
|
-
The data polling interval in seconds
|
1477
|
-
|
1478
|
-
Some integration types support an additional set of arguments:
|
1414
|
+
The data polling interval in seconds
|
1479
1415
|
"""
|
1480
1416
|
return pulumi.get(self, "metrics_polling_interval")
|
1481
1417
|
|
@@ -1522,9 +1458,7 @@ class AwsGovcloudIntegrationsRoute53(dict):
|
|
1522
1458
|
metrics_polling_interval: Optional[int] = None):
|
1523
1459
|
"""
|
1524
1460
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1525
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1526
|
-
|
1527
|
-
Some integration types support an additional set of arguments:
|
1461
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1528
1462
|
"""
|
1529
1463
|
if fetch_extended_inventory is not None:
|
1530
1464
|
pulumi.set(__self__, "fetch_extended_inventory", fetch_extended_inventory)
|
@@ -1543,9 +1477,7 @@ class AwsGovcloudIntegrationsRoute53(dict):
|
|
1543
1477
|
@pulumi.getter(name="metricsPollingInterval")
|
1544
1478
|
def metrics_polling_interval(self) -> Optional[int]:
|
1545
1479
|
"""
|
1546
|
-
The data polling interval in seconds
|
1547
|
-
|
1548
|
-
Some integration types support an additional set of arguments:
|
1480
|
+
The data polling interval in seconds
|
1549
1481
|
"""
|
1550
1482
|
return pulumi.get(self, "metrics_polling_interval")
|
1551
1483
|
|
@@ -1586,9 +1518,7 @@ class AwsGovcloudIntegrationsS3(dict):
|
|
1586
1518
|
"""
|
1587
1519
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1588
1520
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1589
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1590
|
-
|
1591
|
-
Some integration types support an additional set of arguments:
|
1521
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1592
1522
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1593
1523
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1594
1524
|
"""
|
@@ -1623,9 +1553,7 @@ class AwsGovcloudIntegrationsS3(dict):
|
|
1623
1553
|
@pulumi.getter(name="metricsPollingInterval")
|
1624
1554
|
def metrics_polling_interval(self) -> Optional[int]:
|
1625
1555
|
"""
|
1626
|
-
The data polling interval in seconds
|
1627
|
-
|
1628
|
-
Some integration types support an additional set of arguments:
|
1556
|
+
The data polling interval in seconds
|
1629
1557
|
"""
|
1630
1558
|
return pulumi.get(self, "metrics_polling_interval")
|
1631
1559
|
|
@@ -1674,11 +1602,9 @@ class AwsGovcloudIntegrationsSns(dict):
|
|
1674
1602
|
fetch_extended_inventory: Optional[bool] = None,
|
1675
1603
|
metrics_polling_interval: Optional[int] = None):
|
1676
1604
|
"""
|
1677
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1605
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1678
1606
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1679
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1680
|
-
|
1681
|
-
Some integration types support an additional set of arguments:
|
1607
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1682
1608
|
"""
|
1683
1609
|
if aws_regions is not None:
|
1684
1610
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -1691,7 +1617,7 @@ class AwsGovcloudIntegrationsSns(dict):
|
|
1691
1617
|
@pulumi.getter(name="awsRegions")
|
1692
1618
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1693
1619
|
"""
|
1694
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1620
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1695
1621
|
"""
|
1696
1622
|
return pulumi.get(self, "aws_regions")
|
1697
1623
|
|
@@ -1707,9 +1633,7 @@ class AwsGovcloudIntegrationsSns(dict):
|
|
1707
1633
|
@pulumi.getter(name="metricsPollingInterval")
|
1708
1634
|
def metrics_polling_interval(self) -> Optional[int]:
|
1709
1635
|
"""
|
1710
|
-
The data polling interval in seconds
|
1711
|
-
|
1712
|
-
Some integration types support an additional set of arguments:
|
1636
|
+
The data polling interval in seconds
|
1713
1637
|
"""
|
1714
1638
|
return pulumi.get(self, "metrics_polling_interval")
|
1715
1639
|
|
@@ -1754,12 +1678,10 @@ class AwsGovcloudIntegrationsSqs(dict):
|
|
1754
1678
|
tag_key: Optional[str] = None,
|
1755
1679
|
tag_value: Optional[str] = None):
|
1756
1680
|
"""
|
1757
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1681
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
1758
1682
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1759
1683
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1760
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
1761
|
-
|
1762
|
-
Some integration types support an additional set of arguments:
|
1684
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
1763
1685
|
:param Sequence[str] queue_prefixes: Specify each name or prefix for the Queues that you want to monitor. Filter values are case-sensitive.
|
1764
1686
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1765
1687
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
@@ -1783,7 +1705,7 @@ class AwsGovcloudIntegrationsSqs(dict):
|
|
1783
1705
|
@pulumi.getter(name="awsRegions")
|
1784
1706
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1785
1707
|
"""
|
1786
|
-
Specify each AWS region that includes the resources that you want to monitor
|
1708
|
+
Specify each AWS region that includes the resources that you want to monitor
|
1787
1709
|
"""
|
1788
1710
|
return pulumi.get(self, "aws_regions")
|
1789
1711
|
|
@@ -1807,9 +1729,7 @@ class AwsGovcloudIntegrationsSqs(dict):
|
|
1807
1729
|
@pulumi.getter(name="metricsPollingInterval")
|
1808
1730
|
def metrics_polling_interval(self) -> Optional[int]:
|
1809
1731
|
"""
|
1810
|
-
The data polling interval in seconds
|
1811
|
-
|
1812
|
-
Some integration types support an additional set of arguments:
|
1732
|
+
The data polling interval in seconds
|
1813
1733
|
"""
|
1814
1734
|
return pulumi.get(self, "metrics_polling_interval")
|
1815
1735
|
|
@@ -1878,17 +1798,11 @@ class AwsIntegrationsAlb(dict):
|
|
1878
1798
|
tag_key: Optional[str] = None,
|
1879
1799
|
tag_value: Optional[str] = None):
|
1880
1800
|
"""
|
1881
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
1882
|
-
</details>
|
1801
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
1883
1802
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1884
|
-
|
1885
|
-
Furthermore, below integration types supports the following common arguments.
|
1886
1803
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1887
1804
|
:param Sequence[str] load_balancer_prefixes: Specify each name or prefix for the LBs that you want to monitor. Filter values are case-sensitive.
|
1888
1805
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
1889
|
-
|
1890
|
-
<details>
|
1891
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
1892
1806
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1893
1807
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
1894
1808
|
"""
|
@@ -1911,8 +1825,7 @@ class AwsIntegrationsAlb(dict):
|
|
1911
1825
|
@pulumi.getter(name="awsRegions")
|
1912
1826
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
1913
1827
|
"""
|
1914
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
1915
|
-
</details>
|
1828
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
1916
1829
|
"""
|
1917
1830
|
return pulumi.get(self, "aws_regions")
|
1918
1831
|
|
@@ -1921,8 +1834,6 @@ class AwsIntegrationsAlb(dict):
|
|
1921
1834
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
1922
1835
|
"""
|
1923
1836
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
1924
|
-
|
1925
|
-
Furthermore, below integration types supports the following common arguments.
|
1926
1837
|
"""
|
1927
1838
|
return pulumi.get(self, "fetch_extended_inventory")
|
1928
1839
|
|
@@ -1947,9 +1858,6 @@ class AwsIntegrationsAlb(dict):
|
|
1947
1858
|
def metrics_polling_interval(self) -> Optional[int]:
|
1948
1859
|
"""
|
1949
1860
|
The data polling interval in seconds.
|
1950
|
-
|
1951
|
-
<details>
|
1952
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
1953
1861
|
"""
|
1954
1862
|
return pulumi.get(self, "metrics_polling_interval")
|
1955
1863
|
|
@@ -2004,12 +1912,8 @@ class AwsIntegrationsApiGateway(dict):
|
|
2004
1912
|
tag_key: Optional[str] = None,
|
2005
1913
|
tag_value: Optional[str] = None):
|
2006
1914
|
"""
|
2007
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
2008
|
-
</details>
|
1915
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor
|
2009
1916
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2010
|
-
|
2011
|
-
<details>
|
2012
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2013
1917
|
:param Sequence[str] stage_prefixes: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
2014
1918
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
2015
1919
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
@@ -2029,8 +1933,7 @@ class AwsIntegrationsApiGateway(dict):
|
|
2029
1933
|
@pulumi.getter(name="awsRegions")
|
2030
1934
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2031
1935
|
"""
|
2032
|
-
Specify each AWS region that includes the resources that you want to monitor
|
2033
|
-
</details>
|
1936
|
+
Specify each AWS region that includes the resources that you want to monitor
|
2034
1937
|
"""
|
2035
1938
|
return pulumi.get(self, "aws_regions")
|
2036
1939
|
|
@@ -2039,9 +1942,6 @@ class AwsIntegrationsApiGateway(dict):
|
|
2039
1942
|
def metrics_polling_interval(self) -> Optional[int]:
|
2040
1943
|
"""
|
2041
1944
|
The data polling interval in seconds.
|
2042
|
-
|
2043
|
-
<details>
|
2044
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2045
1945
|
"""
|
2046
1946
|
return pulumi.get(self, "metrics_polling_interval")
|
2047
1947
|
|
@@ -2095,12 +1995,8 @@ class AwsIntegrationsAutoScaling(dict):
|
|
2095
1995
|
aws_regions: Optional[Sequence[str]] = None,
|
2096
1996
|
metrics_polling_interval: Optional[int] = None):
|
2097
1997
|
"""
|
2098
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2099
|
-
</details>
|
1998
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2100
1999
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2101
|
-
|
2102
|
-
<details>
|
2103
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2104
2000
|
"""
|
2105
2001
|
if aws_regions is not None:
|
2106
2002
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2111,8 +2007,7 @@ class AwsIntegrationsAutoScaling(dict):
|
|
2111
2007
|
@pulumi.getter(name="awsRegions")
|
2112
2008
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2113
2009
|
"""
|
2114
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2115
|
-
</details>
|
2010
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2116
2011
|
"""
|
2117
2012
|
return pulumi.get(self, "aws_regions")
|
2118
2013
|
|
@@ -2121,9 +2016,6 @@ class AwsIntegrationsAutoScaling(dict):
|
|
2121
2016
|
def metrics_polling_interval(self) -> Optional[int]:
|
2122
2017
|
"""
|
2123
2018
|
The data polling interval in seconds.
|
2124
|
-
|
2125
|
-
<details>
|
2126
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2127
2019
|
"""
|
2128
2020
|
return pulumi.get(self, "metrics_polling_interval")
|
2129
2021
|
|
@@ -2153,12 +2045,8 @@ class AwsIntegrationsAwsAppSync(dict):
|
|
2153
2045
|
aws_regions: Optional[Sequence[str]] = None,
|
2154
2046
|
metrics_polling_interval: Optional[int] = None):
|
2155
2047
|
"""
|
2156
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2157
|
-
</details>
|
2048
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2158
2049
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2159
|
-
|
2160
|
-
<details>
|
2161
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2162
2050
|
"""
|
2163
2051
|
if aws_regions is not None:
|
2164
2052
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2169,8 +2057,7 @@ class AwsIntegrationsAwsAppSync(dict):
|
|
2169
2057
|
@pulumi.getter(name="awsRegions")
|
2170
2058
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2171
2059
|
"""
|
2172
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2173
|
-
</details>
|
2060
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2174
2061
|
"""
|
2175
2062
|
return pulumi.get(self, "aws_regions")
|
2176
2063
|
|
@@ -2179,9 +2066,6 @@ class AwsIntegrationsAwsAppSync(dict):
|
|
2179
2066
|
def metrics_polling_interval(self) -> Optional[int]:
|
2180
2067
|
"""
|
2181
2068
|
The data polling interval in seconds.
|
2182
|
-
|
2183
|
-
<details>
|
2184
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2185
2069
|
"""
|
2186
2070
|
return pulumi.get(self, "metrics_polling_interval")
|
2187
2071
|
|
@@ -2211,12 +2095,8 @@ class AwsIntegrationsAwsAthena(dict):
|
|
2211
2095
|
aws_regions: Optional[Sequence[str]] = None,
|
2212
2096
|
metrics_polling_interval: Optional[int] = None):
|
2213
2097
|
"""
|
2214
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2215
|
-
</details>
|
2098
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2216
2099
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2217
|
-
|
2218
|
-
<details>
|
2219
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2220
2100
|
"""
|
2221
2101
|
if aws_regions is not None:
|
2222
2102
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2227,8 +2107,7 @@ class AwsIntegrationsAwsAthena(dict):
|
|
2227
2107
|
@pulumi.getter(name="awsRegions")
|
2228
2108
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2229
2109
|
"""
|
2230
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2231
|
-
</details>
|
2110
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2232
2111
|
"""
|
2233
2112
|
return pulumi.get(self, "aws_regions")
|
2234
2113
|
|
@@ -2237,9 +2116,6 @@ class AwsIntegrationsAwsAthena(dict):
|
|
2237
2116
|
def metrics_polling_interval(self) -> Optional[int]:
|
2238
2117
|
"""
|
2239
2118
|
The data polling interval in seconds.
|
2240
|
-
|
2241
|
-
<details>
|
2242
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2243
2119
|
"""
|
2244
2120
|
return pulumi.get(self, "metrics_polling_interval")
|
2245
2121
|
|
@@ -2269,12 +2145,8 @@ class AwsIntegrationsAwsCognito(dict):
|
|
2269
2145
|
aws_regions: Optional[Sequence[str]] = None,
|
2270
2146
|
metrics_polling_interval: Optional[int] = None):
|
2271
2147
|
"""
|
2272
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2273
|
-
</details>
|
2148
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2274
2149
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2275
|
-
|
2276
|
-
<details>
|
2277
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2278
2150
|
"""
|
2279
2151
|
if aws_regions is not None:
|
2280
2152
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2285,8 +2157,7 @@ class AwsIntegrationsAwsCognito(dict):
|
|
2285
2157
|
@pulumi.getter(name="awsRegions")
|
2286
2158
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2287
2159
|
"""
|
2288
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2289
|
-
</details>
|
2160
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2290
2161
|
"""
|
2291
2162
|
return pulumi.get(self, "aws_regions")
|
2292
2163
|
|
@@ -2295,9 +2166,6 @@ class AwsIntegrationsAwsCognito(dict):
|
|
2295
2166
|
def metrics_polling_interval(self) -> Optional[int]:
|
2296
2167
|
"""
|
2297
2168
|
The data polling interval in seconds.
|
2298
|
-
|
2299
|
-
<details>
|
2300
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2301
2169
|
"""
|
2302
2170
|
return pulumi.get(self, "metrics_polling_interval")
|
2303
2171
|
|
@@ -2327,12 +2195,8 @@ class AwsIntegrationsAwsConnect(dict):
|
|
2327
2195
|
aws_regions: Optional[Sequence[str]] = None,
|
2328
2196
|
metrics_polling_interval: Optional[int] = None):
|
2329
2197
|
"""
|
2330
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2331
|
-
</details>
|
2198
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2332
2199
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2333
|
-
|
2334
|
-
<details>
|
2335
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2336
2200
|
"""
|
2337
2201
|
if aws_regions is not None:
|
2338
2202
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2343,8 +2207,7 @@ class AwsIntegrationsAwsConnect(dict):
|
|
2343
2207
|
@pulumi.getter(name="awsRegions")
|
2344
2208
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2345
2209
|
"""
|
2346
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2347
|
-
</details>
|
2210
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2348
2211
|
"""
|
2349
2212
|
return pulumi.get(self, "aws_regions")
|
2350
2213
|
|
@@ -2353,9 +2216,6 @@ class AwsIntegrationsAwsConnect(dict):
|
|
2353
2216
|
def metrics_polling_interval(self) -> Optional[int]:
|
2354
2217
|
"""
|
2355
2218
|
The data polling interval in seconds.
|
2356
|
-
|
2357
|
-
<details>
|
2358
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2359
2219
|
"""
|
2360
2220
|
return pulumi.get(self, "metrics_polling_interval")
|
2361
2221
|
|
@@ -2385,12 +2245,8 @@ class AwsIntegrationsAwsDirectConnect(dict):
|
|
2385
2245
|
aws_regions: Optional[Sequence[str]] = None,
|
2386
2246
|
metrics_polling_interval: Optional[int] = None):
|
2387
2247
|
"""
|
2388
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2389
|
-
</details>
|
2248
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2390
2249
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2391
|
-
|
2392
|
-
<details>
|
2393
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2394
2250
|
"""
|
2395
2251
|
if aws_regions is not None:
|
2396
2252
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2401,8 +2257,7 @@ class AwsIntegrationsAwsDirectConnect(dict):
|
|
2401
2257
|
@pulumi.getter(name="awsRegions")
|
2402
2258
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2403
2259
|
"""
|
2404
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2405
|
-
</details>
|
2260
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2406
2261
|
"""
|
2407
2262
|
return pulumi.get(self, "aws_regions")
|
2408
2263
|
|
@@ -2411,9 +2266,6 @@ class AwsIntegrationsAwsDirectConnect(dict):
|
|
2411
2266
|
def metrics_polling_interval(self) -> Optional[int]:
|
2412
2267
|
"""
|
2413
2268
|
The data polling interval in seconds.
|
2414
|
-
|
2415
|
-
<details>
|
2416
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2417
2269
|
"""
|
2418
2270
|
return pulumi.get(self, "metrics_polling_interval")
|
2419
2271
|
|
@@ -2443,12 +2295,8 @@ class AwsIntegrationsAwsFsx(dict):
|
|
2443
2295
|
aws_regions: Optional[Sequence[str]] = None,
|
2444
2296
|
metrics_polling_interval: Optional[int] = None):
|
2445
2297
|
"""
|
2446
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2447
|
-
</details>
|
2298
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2448
2299
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2449
|
-
|
2450
|
-
<details>
|
2451
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2452
2300
|
"""
|
2453
2301
|
if aws_regions is not None:
|
2454
2302
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2459,8 +2307,7 @@ class AwsIntegrationsAwsFsx(dict):
|
|
2459
2307
|
@pulumi.getter(name="awsRegions")
|
2460
2308
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2461
2309
|
"""
|
2462
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2463
|
-
</details>
|
2310
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2464
2311
|
"""
|
2465
2312
|
return pulumi.get(self, "aws_regions")
|
2466
2313
|
|
@@ -2469,9 +2316,6 @@ class AwsIntegrationsAwsFsx(dict):
|
|
2469
2316
|
def metrics_polling_interval(self) -> Optional[int]:
|
2470
2317
|
"""
|
2471
2318
|
The data polling interval in seconds.
|
2472
|
-
|
2473
|
-
<details>
|
2474
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2475
2319
|
"""
|
2476
2320
|
return pulumi.get(self, "metrics_polling_interval")
|
2477
2321
|
|
@@ -2501,12 +2345,8 @@ class AwsIntegrationsAwsGlue(dict):
|
|
2501
2345
|
aws_regions: Optional[Sequence[str]] = None,
|
2502
2346
|
metrics_polling_interval: Optional[int] = None):
|
2503
2347
|
"""
|
2504
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2505
|
-
</details>
|
2348
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2506
2349
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2507
|
-
|
2508
|
-
<details>
|
2509
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2510
2350
|
"""
|
2511
2351
|
if aws_regions is not None:
|
2512
2352
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2517,8 +2357,7 @@ class AwsIntegrationsAwsGlue(dict):
|
|
2517
2357
|
@pulumi.getter(name="awsRegions")
|
2518
2358
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2519
2359
|
"""
|
2520
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2521
|
-
</details>
|
2360
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2522
2361
|
"""
|
2523
2362
|
return pulumi.get(self, "aws_regions")
|
2524
2363
|
|
@@ -2527,9 +2366,6 @@ class AwsIntegrationsAwsGlue(dict):
|
|
2527
2366
|
def metrics_polling_interval(self) -> Optional[int]:
|
2528
2367
|
"""
|
2529
2368
|
The data polling interval in seconds.
|
2530
|
-
|
2531
|
-
<details>
|
2532
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2533
2369
|
"""
|
2534
2370
|
return pulumi.get(self, "metrics_polling_interval")
|
2535
2371
|
|
@@ -2559,12 +2395,8 @@ class AwsIntegrationsAwsKinesisAnalytics(dict):
|
|
2559
2395
|
aws_regions: Optional[Sequence[str]] = None,
|
2560
2396
|
metrics_polling_interval: Optional[int] = None):
|
2561
2397
|
"""
|
2562
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2563
|
-
</details>
|
2398
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2564
2399
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2565
|
-
|
2566
|
-
<details>
|
2567
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2568
2400
|
"""
|
2569
2401
|
if aws_regions is not None:
|
2570
2402
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2575,8 +2407,7 @@ class AwsIntegrationsAwsKinesisAnalytics(dict):
|
|
2575
2407
|
@pulumi.getter(name="awsRegions")
|
2576
2408
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2577
2409
|
"""
|
2578
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2579
|
-
</details>
|
2410
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2580
2411
|
"""
|
2581
2412
|
return pulumi.get(self, "aws_regions")
|
2582
2413
|
|
@@ -2585,9 +2416,6 @@ class AwsIntegrationsAwsKinesisAnalytics(dict):
|
|
2585
2416
|
def metrics_polling_interval(self) -> Optional[int]:
|
2586
2417
|
"""
|
2587
2418
|
The data polling interval in seconds.
|
2588
|
-
|
2589
|
-
<details>
|
2590
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2591
2419
|
"""
|
2592
2420
|
return pulumi.get(self, "metrics_polling_interval")
|
2593
2421
|
|
@@ -2617,12 +2445,8 @@ class AwsIntegrationsAwsMediaConvert(dict):
|
|
2617
2445
|
aws_regions: Optional[Sequence[str]] = None,
|
2618
2446
|
metrics_polling_interval: Optional[int] = None):
|
2619
2447
|
"""
|
2620
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2621
|
-
</details>
|
2448
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2622
2449
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2623
|
-
|
2624
|
-
<details>
|
2625
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2626
2450
|
"""
|
2627
2451
|
if aws_regions is not None:
|
2628
2452
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2633,8 +2457,7 @@ class AwsIntegrationsAwsMediaConvert(dict):
|
|
2633
2457
|
@pulumi.getter(name="awsRegions")
|
2634
2458
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2635
2459
|
"""
|
2636
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2637
|
-
</details>
|
2460
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2638
2461
|
"""
|
2639
2462
|
return pulumi.get(self, "aws_regions")
|
2640
2463
|
|
@@ -2643,9 +2466,6 @@ class AwsIntegrationsAwsMediaConvert(dict):
|
|
2643
2466
|
def metrics_polling_interval(self) -> Optional[int]:
|
2644
2467
|
"""
|
2645
2468
|
The data polling interval in seconds.
|
2646
|
-
|
2647
|
-
<details>
|
2648
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2649
2469
|
"""
|
2650
2470
|
return pulumi.get(self, "metrics_polling_interval")
|
2651
2471
|
|
@@ -2675,12 +2495,8 @@ class AwsIntegrationsAwsMediaPackageVod(dict):
|
|
2675
2495
|
aws_regions: Optional[Sequence[str]] = None,
|
2676
2496
|
metrics_polling_interval: Optional[int] = None):
|
2677
2497
|
"""
|
2678
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2679
|
-
</details>
|
2498
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2680
2499
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2681
|
-
|
2682
|
-
<details>
|
2683
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2684
2500
|
"""
|
2685
2501
|
if aws_regions is not None:
|
2686
2502
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2691,8 +2507,7 @@ class AwsIntegrationsAwsMediaPackageVod(dict):
|
|
2691
2507
|
@pulumi.getter(name="awsRegions")
|
2692
2508
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2693
2509
|
"""
|
2694
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2695
|
-
</details>
|
2510
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2696
2511
|
"""
|
2697
2512
|
return pulumi.get(self, "aws_regions")
|
2698
2513
|
|
@@ -2701,9 +2516,6 @@ class AwsIntegrationsAwsMediaPackageVod(dict):
|
|
2701
2516
|
def metrics_polling_interval(self) -> Optional[int]:
|
2702
2517
|
"""
|
2703
2518
|
The data polling interval in seconds.
|
2704
|
-
|
2705
|
-
<details>
|
2706
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2707
2519
|
"""
|
2708
2520
|
return pulumi.get(self, "metrics_polling_interval")
|
2709
2521
|
|
@@ -2733,12 +2545,8 @@ class AwsIntegrationsAwsMq(dict):
|
|
2733
2545
|
aws_regions: Optional[Sequence[str]] = None,
|
2734
2546
|
metrics_polling_interval: Optional[int] = None):
|
2735
2547
|
"""
|
2736
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2737
|
-
</details>
|
2548
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2738
2549
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2739
|
-
|
2740
|
-
<details>
|
2741
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2742
2550
|
"""
|
2743
2551
|
if aws_regions is not None:
|
2744
2552
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2749,8 +2557,7 @@ class AwsIntegrationsAwsMq(dict):
|
|
2749
2557
|
@pulumi.getter(name="awsRegions")
|
2750
2558
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2751
2559
|
"""
|
2752
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2753
|
-
</details>
|
2560
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2754
2561
|
"""
|
2755
2562
|
return pulumi.get(self, "aws_regions")
|
2756
2563
|
|
@@ -2759,9 +2566,6 @@ class AwsIntegrationsAwsMq(dict):
|
|
2759
2566
|
def metrics_polling_interval(self) -> Optional[int]:
|
2760
2567
|
"""
|
2761
2568
|
The data polling interval in seconds.
|
2762
|
-
|
2763
|
-
<details>
|
2764
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2765
2569
|
"""
|
2766
2570
|
return pulumi.get(self, "metrics_polling_interval")
|
2767
2571
|
|
@@ -2791,12 +2595,8 @@ class AwsIntegrationsAwsMsk(dict):
|
|
2791
2595
|
aws_regions: Optional[Sequence[str]] = None,
|
2792
2596
|
metrics_polling_interval: Optional[int] = None):
|
2793
2597
|
"""
|
2794
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2795
|
-
</details>
|
2598
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2796
2599
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2797
|
-
|
2798
|
-
<details>
|
2799
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2800
2600
|
"""
|
2801
2601
|
if aws_regions is not None:
|
2802
2602
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2807,8 +2607,7 @@ class AwsIntegrationsAwsMsk(dict):
|
|
2807
2607
|
@pulumi.getter(name="awsRegions")
|
2808
2608
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2809
2609
|
"""
|
2810
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2811
|
-
</details>
|
2610
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2812
2611
|
"""
|
2813
2612
|
return pulumi.get(self, "aws_regions")
|
2814
2613
|
|
@@ -2817,9 +2616,6 @@ class AwsIntegrationsAwsMsk(dict):
|
|
2817
2616
|
def metrics_polling_interval(self) -> Optional[int]:
|
2818
2617
|
"""
|
2819
2618
|
The data polling interval in seconds.
|
2820
|
-
|
2821
|
-
<details>
|
2822
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2823
2619
|
"""
|
2824
2620
|
return pulumi.get(self, "metrics_polling_interval")
|
2825
2621
|
|
@@ -2849,12 +2645,8 @@ class AwsIntegrationsAwsNeptune(dict):
|
|
2849
2645
|
aws_regions: Optional[Sequence[str]] = None,
|
2850
2646
|
metrics_polling_interval: Optional[int] = None):
|
2851
2647
|
"""
|
2852
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2853
|
-
</details>
|
2648
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2854
2649
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2855
|
-
|
2856
|
-
<details>
|
2857
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2858
2650
|
"""
|
2859
2651
|
if aws_regions is not None:
|
2860
2652
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2865,8 +2657,7 @@ class AwsIntegrationsAwsNeptune(dict):
|
|
2865
2657
|
@pulumi.getter(name="awsRegions")
|
2866
2658
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2867
2659
|
"""
|
2868
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2869
|
-
</details>
|
2660
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2870
2661
|
"""
|
2871
2662
|
return pulumi.get(self, "aws_regions")
|
2872
2663
|
|
@@ -2875,9 +2666,6 @@ class AwsIntegrationsAwsNeptune(dict):
|
|
2875
2666
|
def metrics_polling_interval(self) -> Optional[int]:
|
2876
2667
|
"""
|
2877
2668
|
The data polling interval in seconds.
|
2878
|
-
|
2879
|
-
<details>
|
2880
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2881
2669
|
"""
|
2882
2670
|
return pulumi.get(self, "metrics_polling_interval")
|
2883
2671
|
|
@@ -2907,12 +2695,8 @@ class AwsIntegrationsAwsQldb(dict):
|
|
2907
2695
|
aws_regions: Optional[Sequence[str]] = None,
|
2908
2696
|
metrics_polling_interval: Optional[int] = None):
|
2909
2697
|
"""
|
2910
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2911
|
-
</details>
|
2698
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2912
2699
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2913
|
-
|
2914
|
-
<details>
|
2915
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2916
2700
|
"""
|
2917
2701
|
if aws_regions is not None:
|
2918
2702
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2923,8 +2707,7 @@ class AwsIntegrationsAwsQldb(dict):
|
|
2923
2707
|
@pulumi.getter(name="awsRegions")
|
2924
2708
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2925
2709
|
"""
|
2926
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2927
|
-
</details>
|
2710
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2928
2711
|
"""
|
2929
2712
|
return pulumi.get(self, "aws_regions")
|
2930
2713
|
|
@@ -2933,9 +2716,6 @@ class AwsIntegrationsAwsQldb(dict):
|
|
2933
2716
|
def metrics_polling_interval(self) -> Optional[int]:
|
2934
2717
|
"""
|
2935
2718
|
The data polling interval in seconds.
|
2936
|
-
|
2937
|
-
<details>
|
2938
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2939
2719
|
"""
|
2940
2720
|
return pulumi.get(self, "metrics_polling_interval")
|
2941
2721
|
|
@@ -2965,12 +2745,8 @@ class AwsIntegrationsAwsRoute53resolver(dict):
|
|
2965
2745
|
aws_regions: Optional[Sequence[str]] = None,
|
2966
2746
|
metrics_polling_interval: Optional[int] = None):
|
2967
2747
|
"""
|
2968
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2969
|
-
</details>
|
2748
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
2970
2749
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
2971
|
-
|
2972
|
-
<details>
|
2973
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2974
2750
|
"""
|
2975
2751
|
if aws_regions is not None:
|
2976
2752
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -2981,8 +2757,7 @@ class AwsIntegrationsAwsRoute53resolver(dict):
|
|
2981
2757
|
@pulumi.getter(name="awsRegions")
|
2982
2758
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
2983
2759
|
"""
|
2984
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
2985
|
-
</details>
|
2760
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
2986
2761
|
"""
|
2987
2762
|
return pulumi.get(self, "aws_regions")
|
2988
2763
|
|
@@ -2991,9 +2766,6 @@ class AwsIntegrationsAwsRoute53resolver(dict):
|
|
2991
2766
|
def metrics_polling_interval(self) -> Optional[int]:
|
2992
2767
|
"""
|
2993
2768
|
The data polling interval in seconds.
|
2994
|
-
|
2995
|
-
<details>
|
2996
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
2997
2769
|
"""
|
2998
2770
|
return pulumi.get(self, "metrics_polling_interval")
|
2999
2771
|
|
@@ -3023,12 +2795,8 @@ class AwsIntegrationsAwsStates(dict):
|
|
3023
2795
|
aws_regions: Optional[Sequence[str]] = None,
|
3024
2796
|
metrics_polling_interval: Optional[int] = None):
|
3025
2797
|
"""
|
3026
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3027
|
-
</details>
|
2798
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3028
2799
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3029
|
-
|
3030
|
-
<details>
|
3031
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3032
2800
|
"""
|
3033
2801
|
if aws_regions is not None:
|
3034
2802
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3039,8 +2807,7 @@ class AwsIntegrationsAwsStates(dict):
|
|
3039
2807
|
@pulumi.getter(name="awsRegions")
|
3040
2808
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3041
2809
|
"""
|
3042
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3043
|
-
</details>
|
2810
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3044
2811
|
"""
|
3045
2812
|
return pulumi.get(self, "aws_regions")
|
3046
2813
|
|
@@ -3049,9 +2816,6 @@ class AwsIntegrationsAwsStates(dict):
|
|
3049
2816
|
def metrics_polling_interval(self) -> Optional[int]:
|
3050
2817
|
"""
|
3051
2818
|
The data polling interval in seconds.
|
3052
|
-
|
3053
|
-
<details>
|
3054
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3055
2819
|
"""
|
3056
2820
|
return pulumi.get(self, "metrics_polling_interval")
|
3057
2821
|
|
@@ -3081,12 +2845,8 @@ class AwsIntegrationsAwsTransitGateway(dict):
|
|
3081
2845
|
aws_regions: Optional[Sequence[str]] = None,
|
3082
2846
|
metrics_polling_interval: Optional[int] = None):
|
3083
2847
|
"""
|
3084
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3085
|
-
</details>
|
2848
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3086
2849
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3087
|
-
|
3088
|
-
<details>
|
3089
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3090
2850
|
"""
|
3091
2851
|
if aws_regions is not None:
|
3092
2852
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3097,8 +2857,7 @@ class AwsIntegrationsAwsTransitGateway(dict):
|
|
3097
2857
|
@pulumi.getter(name="awsRegions")
|
3098
2858
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3099
2859
|
"""
|
3100
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3101
|
-
</details>
|
2860
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3102
2861
|
"""
|
3103
2862
|
return pulumi.get(self, "aws_regions")
|
3104
2863
|
|
@@ -3107,9 +2866,6 @@ class AwsIntegrationsAwsTransitGateway(dict):
|
|
3107
2866
|
def metrics_polling_interval(self) -> Optional[int]:
|
3108
2867
|
"""
|
3109
2868
|
The data polling interval in seconds.
|
3110
|
-
|
3111
|
-
<details>
|
3112
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3113
2869
|
"""
|
3114
2870
|
return pulumi.get(self, "metrics_polling_interval")
|
3115
2871
|
|
@@ -3139,12 +2895,8 @@ class AwsIntegrationsAwsWaf(dict):
|
|
3139
2895
|
aws_regions: Optional[Sequence[str]] = None,
|
3140
2896
|
metrics_polling_interval: Optional[int] = None):
|
3141
2897
|
"""
|
3142
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3143
|
-
</details>
|
2898
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3144
2899
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3145
|
-
|
3146
|
-
<details>
|
3147
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3148
2900
|
"""
|
3149
2901
|
if aws_regions is not None:
|
3150
2902
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3155,8 +2907,7 @@ class AwsIntegrationsAwsWaf(dict):
|
|
3155
2907
|
@pulumi.getter(name="awsRegions")
|
3156
2908
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3157
2909
|
"""
|
3158
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3159
|
-
</details>
|
2910
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3160
2911
|
"""
|
3161
2912
|
return pulumi.get(self, "aws_regions")
|
3162
2913
|
|
@@ -3165,9 +2916,6 @@ class AwsIntegrationsAwsWaf(dict):
|
|
3165
2916
|
def metrics_polling_interval(self) -> Optional[int]:
|
3166
2917
|
"""
|
3167
2918
|
The data polling interval in seconds.
|
3168
|
-
|
3169
|
-
<details>
|
3170
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3171
2919
|
"""
|
3172
2920
|
return pulumi.get(self, "metrics_polling_interval")
|
3173
2921
|
|
@@ -3197,12 +2945,8 @@ class AwsIntegrationsAwsWafv2(dict):
|
|
3197
2945
|
aws_regions: Optional[Sequence[str]] = None,
|
3198
2946
|
metrics_polling_interval: Optional[int] = None):
|
3199
2947
|
"""
|
3200
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3201
|
-
</details>
|
2948
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3202
2949
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3203
|
-
|
3204
|
-
<details>
|
3205
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3206
2950
|
"""
|
3207
2951
|
if aws_regions is not None:
|
3208
2952
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3213,8 +2957,7 @@ class AwsIntegrationsAwsWafv2(dict):
|
|
3213
2957
|
@pulumi.getter(name="awsRegions")
|
3214
2958
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3215
2959
|
"""
|
3216
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3217
|
-
</details>
|
2960
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3218
2961
|
"""
|
3219
2962
|
return pulumi.get(self, "aws_regions")
|
3220
2963
|
|
@@ -3223,9 +2966,6 @@ class AwsIntegrationsAwsWafv2(dict):
|
|
3223
2966
|
def metrics_polling_interval(self) -> Optional[int]:
|
3224
2967
|
"""
|
3225
2968
|
The data polling interval in seconds.
|
3226
|
-
|
3227
|
-
<details>
|
3228
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3229
2969
|
"""
|
3230
2970
|
return pulumi.get(self, "metrics_polling_interval")
|
3231
2971
|
|
@@ -3253,9 +2993,6 @@ class AwsIntegrationsBilling(dict):
|
|
3253
2993
|
metrics_polling_interval: Optional[int] = None):
|
3254
2994
|
"""
|
3255
2995
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3256
|
-
|
3257
|
-
<details>
|
3258
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3259
2996
|
"""
|
3260
2997
|
if metrics_polling_interval is not None:
|
3261
2998
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -3265,9 +3002,6 @@ class AwsIntegrationsBilling(dict):
|
|
3265
3002
|
def metrics_polling_interval(self) -> Optional[int]:
|
3266
3003
|
"""
|
3267
3004
|
The data polling interval in seconds.
|
3268
|
-
|
3269
|
-
<details>
|
3270
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3271
3005
|
"""
|
3272
3006
|
return pulumi.get(self, "metrics_polling_interval")
|
3273
3007
|
|
@@ -3309,9 +3043,6 @@ class AwsIntegrationsCloudfront(dict):
|
|
3309
3043
|
:param bool fetch_lambdas_at_edge: Specify if Lambdas@Edge should be monitored. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3310
3044
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3311
3045
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3312
|
-
|
3313
|
-
<details>
|
3314
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3315
3046
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3316
3047
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3317
3048
|
"""
|
@@ -3347,9 +3078,6 @@ class AwsIntegrationsCloudfront(dict):
|
|
3347
3078
|
def metrics_polling_interval(self) -> Optional[int]:
|
3348
3079
|
"""
|
3349
3080
|
The data polling interval in seconds.
|
3350
|
-
|
3351
|
-
<details>
|
3352
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3353
3081
|
"""
|
3354
3082
|
return pulumi.get(self, "metrics_polling_interval")
|
3355
3083
|
|
@@ -3395,12 +3123,8 @@ class AwsIntegrationsCloudtrail(dict):
|
|
3395
3123
|
aws_regions: Optional[Sequence[str]] = None,
|
3396
3124
|
metrics_polling_interval: Optional[int] = None):
|
3397
3125
|
"""
|
3398
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3399
|
-
</details>
|
3126
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3400
3127
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3401
|
-
|
3402
|
-
<details>
|
3403
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3404
3128
|
"""
|
3405
3129
|
if aws_regions is not None:
|
3406
3130
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3411,8 +3135,7 @@ class AwsIntegrationsCloudtrail(dict):
|
|
3411
3135
|
@pulumi.getter(name="awsRegions")
|
3412
3136
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3413
3137
|
"""
|
3414
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3415
|
-
</details>
|
3138
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3416
3139
|
"""
|
3417
3140
|
return pulumi.get(self, "aws_regions")
|
3418
3141
|
|
@@ -3421,9 +3144,6 @@ class AwsIntegrationsCloudtrail(dict):
|
|
3421
3144
|
def metrics_polling_interval(self) -> Optional[int]:
|
3422
3145
|
"""
|
3423
3146
|
The data polling interval in seconds.
|
3424
|
-
|
3425
|
-
<details>
|
3426
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3427
3147
|
"""
|
3428
3148
|
return pulumi.get(self, "metrics_polling_interval")
|
3429
3149
|
|
@@ -3453,12 +3173,8 @@ class AwsIntegrationsDocDb(dict):
|
|
3453
3173
|
aws_regions: Optional[Sequence[str]] = None,
|
3454
3174
|
metrics_polling_interval: Optional[int] = None):
|
3455
3175
|
"""
|
3456
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3457
|
-
</details>
|
3176
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3458
3177
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3459
|
-
|
3460
|
-
<details>
|
3461
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3462
3178
|
"""
|
3463
3179
|
if aws_regions is not None:
|
3464
3180
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -3469,8 +3185,7 @@ class AwsIntegrationsDocDb(dict):
|
|
3469
3185
|
@pulumi.getter(name="awsRegions")
|
3470
3186
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3471
3187
|
"""
|
3472
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3473
|
-
</details>
|
3188
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3474
3189
|
"""
|
3475
3190
|
return pulumi.get(self, "aws_regions")
|
3476
3191
|
|
@@ -3479,9 +3194,6 @@ class AwsIntegrationsDocDb(dict):
|
|
3479
3194
|
def metrics_polling_interval(self) -> Optional[int]:
|
3480
3195
|
"""
|
3481
3196
|
The data polling interval in seconds.
|
3482
|
-
|
3483
|
-
<details>
|
3484
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3485
3197
|
"""
|
3486
3198
|
return pulumi.get(self, "metrics_polling_interval")
|
3487
3199
|
|
@@ -3523,16 +3235,10 @@ class AwsIntegrationsDynamodb(dict):
|
|
3523
3235
|
tag_key: Optional[str] = None,
|
3524
3236
|
tag_value: Optional[str] = None):
|
3525
3237
|
"""
|
3526
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3527
|
-
</details>
|
3238
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3528
3239
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3529
|
-
|
3530
|
-
Furthermore, below integration types supports the following common arguments.
|
3531
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3240
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3532
3241
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3533
|
-
|
3534
|
-
<details>
|
3535
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3536
3242
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3537
3243
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3538
3244
|
"""
|
@@ -3553,8 +3259,7 @@ class AwsIntegrationsDynamodb(dict):
|
|
3553
3259
|
@pulumi.getter(name="awsRegions")
|
3554
3260
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3555
3261
|
"""
|
3556
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3557
|
-
</details>
|
3262
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3558
3263
|
"""
|
3559
3264
|
return pulumi.get(self, "aws_regions")
|
3560
3265
|
|
@@ -3563,8 +3268,6 @@ class AwsIntegrationsDynamodb(dict):
|
|
3563
3268
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
3564
3269
|
"""
|
3565
3270
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3566
|
-
|
3567
|
-
Furthermore, below integration types supports the following common arguments.
|
3568
3271
|
"""
|
3569
3272
|
return pulumi.get(self, "fetch_extended_inventory")
|
3570
3273
|
|
@@ -3572,7 +3275,7 @@ class AwsIntegrationsDynamodb(dict):
|
|
3572
3275
|
@pulumi.getter(name="fetchTags")
|
3573
3276
|
def fetch_tags(self) -> Optional[bool]:
|
3574
3277
|
"""
|
3575
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3278
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3576
3279
|
"""
|
3577
3280
|
return pulumi.get(self, "fetch_tags")
|
3578
3281
|
|
@@ -3581,9 +3284,6 @@ class AwsIntegrationsDynamodb(dict):
|
|
3581
3284
|
def metrics_polling_interval(self) -> Optional[int]:
|
3582
3285
|
"""
|
3583
3286
|
The data polling interval in seconds.
|
3584
|
-
|
3585
|
-
<details>
|
3586
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3587
3287
|
"""
|
3588
3288
|
return pulumi.get(self, "metrics_polling_interval")
|
3589
3289
|
|
@@ -3638,15 +3338,9 @@ class AwsIntegrationsEbs(dict):
|
|
3638
3338
|
tag_key: Optional[str] = None,
|
3639
3339
|
tag_value: Optional[str] = None):
|
3640
3340
|
"""
|
3641
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3642
|
-
</details>
|
3341
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3643
3342
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3644
|
-
|
3645
|
-
Furthermore, below integration types supports the following common arguments.
|
3646
3343
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3647
|
-
|
3648
|
-
<details>
|
3649
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3650
3344
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3651
3345
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3652
3346
|
"""
|
@@ -3665,8 +3359,7 @@ class AwsIntegrationsEbs(dict):
|
|
3665
3359
|
@pulumi.getter(name="awsRegions")
|
3666
3360
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3667
3361
|
"""
|
3668
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3669
|
-
</details>
|
3362
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3670
3363
|
"""
|
3671
3364
|
return pulumi.get(self, "aws_regions")
|
3672
3365
|
|
@@ -3675,8 +3368,6 @@ class AwsIntegrationsEbs(dict):
|
|
3675
3368
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
3676
3369
|
"""
|
3677
3370
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3678
|
-
|
3679
|
-
Furthermore, below integration types supports the following common arguments.
|
3680
3371
|
"""
|
3681
3372
|
return pulumi.get(self, "fetch_extended_inventory")
|
3682
3373
|
|
@@ -3685,9 +3376,6 @@ class AwsIntegrationsEbs(dict):
|
|
3685
3376
|
def metrics_polling_interval(self) -> Optional[int]:
|
3686
3377
|
"""
|
3687
3378
|
The data polling interval in seconds.
|
3688
|
-
|
3689
|
-
<details>
|
3690
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3691
3379
|
"""
|
3692
3380
|
return pulumi.get(self, "metrics_polling_interval")
|
3693
3381
|
|
@@ -3745,14 +3433,10 @@ class AwsIntegrationsEc2(dict):
|
|
3745
3433
|
tag_key: Optional[str] = None,
|
3746
3434
|
tag_value: Optional[str] = None):
|
3747
3435
|
"""
|
3748
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3749
|
-
|
3750
|
-
:param bool
|
3751
|
-
:param bool fetch_ip_addresses: Specify if IP addresses of ec2 instance should be collected.
|
3436
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3437
|
+
:param bool duplicate_ec2_tags: Specify if the old legacy metadata and tag names have to be kept, it will consume more ingest data size
|
3438
|
+
:param bool fetch_ip_addresses: Specify if IP addresses of ec2 instance should be collected
|
3752
3439
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3753
|
-
|
3754
|
-
<details>
|
3755
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3756
3440
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3757
3441
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3758
3442
|
"""
|
@@ -3773,8 +3457,7 @@ class AwsIntegrationsEc2(dict):
|
|
3773
3457
|
@pulumi.getter(name="awsRegions")
|
3774
3458
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3775
3459
|
"""
|
3776
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3777
|
-
</details>
|
3460
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3778
3461
|
"""
|
3779
3462
|
return pulumi.get(self, "aws_regions")
|
3780
3463
|
|
@@ -3782,7 +3465,7 @@ class AwsIntegrationsEc2(dict):
|
|
3782
3465
|
@pulumi.getter(name="duplicateEc2Tags")
|
3783
3466
|
def duplicate_ec2_tags(self) -> Optional[bool]:
|
3784
3467
|
"""
|
3785
|
-
Specify if the old legacy metadata and tag names have to be kept, it will consume more ingest data size
|
3468
|
+
Specify if the old legacy metadata and tag names have to be kept, it will consume more ingest data size
|
3786
3469
|
"""
|
3787
3470
|
return pulumi.get(self, "duplicate_ec2_tags")
|
3788
3471
|
|
@@ -3790,7 +3473,7 @@ class AwsIntegrationsEc2(dict):
|
|
3790
3473
|
@pulumi.getter(name="fetchIpAddresses")
|
3791
3474
|
def fetch_ip_addresses(self) -> Optional[bool]:
|
3792
3475
|
"""
|
3793
|
-
Specify if IP addresses of ec2 instance should be collected
|
3476
|
+
Specify if IP addresses of ec2 instance should be collected
|
3794
3477
|
"""
|
3795
3478
|
return pulumi.get(self, "fetch_ip_addresses")
|
3796
3479
|
|
@@ -3799,9 +3482,6 @@ class AwsIntegrationsEc2(dict):
|
|
3799
3482
|
def metrics_polling_interval(self) -> Optional[int]:
|
3800
3483
|
"""
|
3801
3484
|
The data polling interval in seconds.
|
3802
|
-
|
3803
|
-
<details>
|
3804
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3805
3485
|
"""
|
3806
3486
|
return pulumi.get(self, "metrics_polling_interval")
|
3807
3487
|
|
@@ -3856,13 +3536,9 @@ class AwsIntegrationsEcs(dict):
|
|
3856
3536
|
tag_key: Optional[str] = None,
|
3857
3537
|
tag_value: Optional[str] = None):
|
3858
3538
|
"""
|
3859
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3860
|
-
|
3861
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3539
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3540
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3862
3541
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3863
|
-
|
3864
|
-
<details>
|
3865
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3866
3542
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3867
3543
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3868
3544
|
"""
|
@@ -3881,8 +3557,7 @@ class AwsIntegrationsEcs(dict):
|
|
3881
3557
|
@pulumi.getter(name="awsRegions")
|
3882
3558
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3883
3559
|
"""
|
3884
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3885
|
-
</details>
|
3560
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3886
3561
|
"""
|
3887
3562
|
return pulumi.get(self, "aws_regions")
|
3888
3563
|
|
@@ -3890,7 +3565,7 @@ class AwsIntegrationsEcs(dict):
|
|
3890
3565
|
@pulumi.getter(name="fetchTags")
|
3891
3566
|
def fetch_tags(self) -> Optional[bool]:
|
3892
3567
|
"""
|
3893
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3568
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3894
3569
|
"""
|
3895
3570
|
return pulumi.get(self, "fetch_tags")
|
3896
3571
|
|
@@ -3899,9 +3574,6 @@ class AwsIntegrationsEcs(dict):
|
|
3899
3574
|
def metrics_polling_interval(self) -> Optional[int]:
|
3900
3575
|
"""
|
3901
3576
|
The data polling interval in seconds.
|
3902
|
-
|
3903
|
-
<details>
|
3904
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3905
3577
|
"""
|
3906
3578
|
return pulumi.get(self, "metrics_polling_interval")
|
3907
3579
|
|
@@ -3956,13 +3628,9 @@ class AwsIntegrationsEfs(dict):
|
|
3956
3628
|
tag_key: Optional[str] = None,
|
3957
3629
|
tag_value: Optional[str] = None):
|
3958
3630
|
"""
|
3959
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3960
|
-
|
3961
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3631
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
3632
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3962
3633
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
3963
|
-
|
3964
|
-
<details>
|
3965
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
3966
3634
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3967
3635
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
3968
3636
|
"""
|
@@ -3981,8 +3649,7 @@ class AwsIntegrationsEfs(dict):
|
|
3981
3649
|
@pulumi.getter(name="awsRegions")
|
3982
3650
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
3983
3651
|
"""
|
3984
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
3985
|
-
</details>
|
3652
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
3986
3653
|
"""
|
3987
3654
|
return pulumi.get(self, "aws_regions")
|
3988
3655
|
|
@@ -3990,7 +3657,7 @@ class AwsIntegrationsEfs(dict):
|
|
3990
3657
|
@pulumi.getter(name="fetchTags")
|
3991
3658
|
def fetch_tags(self) -> Optional[bool]:
|
3992
3659
|
"""
|
3993
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3660
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3994
3661
|
"""
|
3995
3662
|
return pulumi.get(self, "fetch_tags")
|
3996
3663
|
|
@@ -3999,9 +3666,6 @@ class AwsIntegrationsEfs(dict):
|
|
3999
3666
|
def metrics_polling_interval(self) -> Optional[int]:
|
4000
3667
|
"""
|
4001
3668
|
The data polling interval in seconds.
|
4002
|
-
|
4003
|
-
<details>
|
4004
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4005
3669
|
"""
|
4006
3670
|
return pulumi.get(self, "metrics_polling_interval")
|
4007
3671
|
|
@@ -4056,13 +3720,9 @@ class AwsIntegrationsElasticache(dict):
|
|
4056
3720
|
tag_key: Optional[str] = None,
|
4057
3721
|
tag_value: Optional[str] = None):
|
4058
3722
|
"""
|
4059
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4060
|
-
</details>
|
3723
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4061
3724
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4062
3725
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4063
|
-
|
4064
|
-
<details>
|
4065
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4066
3726
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4067
3727
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4068
3728
|
"""
|
@@ -4081,8 +3741,7 @@ class AwsIntegrationsElasticache(dict):
|
|
4081
3741
|
@pulumi.getter(name="awsRegions")
|
4082
3742
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4083
3743
|
"""
|
4084
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4085
|
-
</details>
|
3744
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4086
3745
|
"""
|
4087
3746
|
return pulumi.get(self, "aws_regions")
|
4088
3747
|
|
@@ -4099,9 +3758,6 @@ class AwsIntegrationsElasticache(dict):
|
|
4099
3758
|
def metrics_polling_interval(self) -> Optional[int]:
|
4100
3759
|
"""
|
4101
3760
|
The data polling interval in seconds.
|
4102
|
-
|
4103
|
-
<details>
|
4104
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4105
3761
|
"""
|
4106
3762
|
return pulumi.get(self, "metrics_polling_interval")
|
4107
3763
|
|
@@ -4159,16 +3815,10 @@ class AwsIntegrationsElasticbeanstalk(dict):
|
|
4159
3815
|
tag_key: Optional[str] = None,
|
4160
3816
|
tag_value: Optional[str] = None):
|
4161
3817
|
"""
|
4162
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4163
|
-
</details>
|
3818
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4164
3819
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4165
|
-
|
4166
|
-
Furthermore, below integration types supports the following common arguments.
|
4167
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3820
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4168
3821
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4169
|
-
|
4170
|
-
<details>
|
4171
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4172
3822
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4173
3823
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4174
3824
|
"""
|
@@ -4189,8 +3839,7 @@ class AwsIntegrationsElasticbeanstalk(dict):
|
|
4189
3839
|
@pulumi.getter(name="awsRegions")
|
4190
3840
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4191
3841
|
"""
|
4192
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4193
|
-
</details>
|
3842
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4194
3843
|
"""
|
4195
3844
|
return pulumi.get(self, "aws_regions")
|
4196
3845
|
|
@@ -4199,8 +3848,6 @@ class AwsIntegrationsElasticbeanstalk(dict):
|
|
4199
3848
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
4200
3849
|
"""
|
4201
3850
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4202
|
-
|
4203
|
-
Furthermore, below integration types supports the following common arguments.
|
4204
3851
|
"""
|
4205
3852
|
return pulumi.get(self, "fetch_extended_inventory")
|
4206
3853
|
|
@@ -4208,7 +3855,7 @@ class AwsIntegrationsElasticbeanstalk(dict):
|
|
4208
3855
|
@pulumi.getter(name="fetchTags")
|
4209
3856
|
def fetch_tags(self) -> Optional[bool]:
|
4210
3857
|
"""
|
4211
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
3858
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4212
3859
|
"""
|
4213
3860
|
return pulumi.get(self, "fetch_tags")
|
4214
3861
|
|
@@ -4217,9 +3864,6 @@ class AwsIntegrationsElasticbeanstalk(dict):
|
|
4217
3864
|
def metrics_polling_interval(self) -> Optional[int]:
|
4218
3865
|
"""
|
4219
3866
|
The data polling interval in seconds.
|
4220
|
-
|
4221
|
-
<details>
|
4222
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4223
3867
|
"""
|
4224
3868
|
return pulumi.get(self, "metrics_polling_interval")
|
4225
3869
|
|
@@ -4274,13 +3918,9 @@ class AwsIntegrationsElasticsearch(dict):
|
|
4274
3918
|
tag_key: Optional[str] = None,
|
4275
3919
|
tag_value: Optional[str] = None):
|
4276
3920
|
"""
|
4277
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4278
|
-
</details>
|
3921
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4279
3922
|
:param bool fetch_nodes: Specify if metrics should be collected for nodes. Turning it on will increase the number of API calls made to CloudWatch.
|
4280
3923
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4281
|
-
|
4282
|
-
<details>
|
4283
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4284
3924
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4285
3925
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4286
3926
|
"""
|
@@ -4299,8 +3939,7 @@ class AwsIntegrationsElasticsearch(dict):
|
|
4299
3939
|
@pulumi.getter(name="awsRegions")
|
4300
3940
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4301
3941
|
"""
|
4302
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4303
|
-
</details>
|
3942
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4304
3943
|
"""
|
4305
3944
|
return pulumi.get(self, "aws_regions")
|
4306
3945
|
|
@@ -4317,9 +3956,6 @@ class AwsIntegrationsElasticsearch(dict):
|
|
4317
3956
|
def metrics_polling_interval(self) -> Optional[int]:
|
4318
3957
|
"""
|
4319
3958
|
The data polling interval in seconds.
|
4320
|
-
|
4321
|
-
<details>
|
4322
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4323
3959
|
"""
|
4324
3960
|
return pulumi.get(self, "metrics_polling_interval")
|
4325
3961
|
|
@@ -4371,16 +4007,10 @@ class AwsIntegrationsElb(dict):
|
|
4371
4007
|
fetch_tags: Optional[bool] = None,
|
4372
4008
|
metrics_polling_interval: Optional[int] = None):
|
4373
4009
|
"""
|
4374
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4375
|
-
</details>
|
4010
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4376
4011
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4377
|
-
|
4378
|
-
Furthermore, below integration types supports the following common arguments.
|
4379
4012
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4380
4013
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4381
|
-
|
4382
|
-
<details>
|
4383
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4384
4014
|
"""
|
4385
4015
|
if aws_regions is not None:
|
4386
4016
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -4395,8 +4025,7 @@ class AwsIntegrationsElb(dict):
|
|
4395
4025
|
@pulumi.getter(name="awsRegions")
|
4396
4026
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4397
4027
|
"""
|
4398
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4399
|
-
</details>
|
4028
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4400
4029
|
"""
|
4401
4030
|
return pulumi.get(self, "aws_regions")
|
4402
4031
|
|
@@ -4405,8 +4034,6 @@ class AwsIntegrationsElb(dict):
|
|
4405
4034
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
4406
4035
|
"""
|
4407
4036
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4408
|
-
|
4409
|
-
Furthermore, below integration types supports the following common arguments.
|
4410
4037
|
"""
|
4411
4038
|
return pulumi.get(self, "fetch_extended_inventory")
|
4412
4039
|
|
@@ -4423,9 +4050,6 @@ class AwsIntegrationsElb(dict):
|
|
4423
4050
|
def metrics_polling_interval(self) -> Optional[int]:
|
4424
4051
|
"""
|
4425
4052
|
The data polling interval in seconds.
|
4426
|
-
|
4427
|
-
<details>
|
4428
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4429
4053
|
"""
|
4430
4054
|
return pulumi.get(self, "metrics_polling_interval")
|
4431
4055
|
|
@@ -4464,13 +4088,9 @@ class AwsIntegrationsEmr(dict):
|
|
4464
4088
|
tag_key: Optional[str] = None,
|
4465
4089
|
tag_value: Optional[str] = None):
|
4466
4090
|
"""
|
4467
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4468
|
-
|
4469
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4091
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4092
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4470
4093
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4471
|
-
|
4472
|
-
<details>
|
4473
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4474
4094
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4475
4095
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4476
4096
|
"""
|
@@ -4489,8 +4109,7 @@ class AwsIntegrationsEmr(dict):
|
|
4489
4109
|
@pulumi.getter(name="awsRegions")
|
4490
4110
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4491
4111
|
"""
|
4492
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4493
|
-
</details>
|
4112
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4494
4113
|
"""
|
4495
4114
|
return pulumi.get(self, "aws_regions")
|
4496
4115
|
|
@@ -4498,7 +4117,7 @@ class AwsIntegrationsEmr(dict):
|
|
4498
4117
|
@pulumi.getter(name="fetchTags")
|
4499
4118
|
def fetch_tags(self) -> Optional[bool]:
|
4500
4119
|
"""
|
4501
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4120
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4502
4121
|
"""
|
4503
4122
|
return pulumi.get(self, "fetch_tags")
|
4504
4123
|
|
@@ -4507,9 +4126,6 @@ class AwsIntegrationsEmr(dict):
|
|
4507
4126
|
def metrics_polling_interval(self) -> Optional[int]:
|
4508
4127
|
"""
|
4509
4128
|
The data polling interval in seconds.
|
4510
|
-
|
4511
|
-
<details>
|
4512
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4513
4129
|
"""
|
4514
4130
|
return pulumi.get(self, "metrics_polling_interval")
|
4515
4131
|
|
@@ -4553,9 +4169,6 @@ class AwsIntegrationsHealth(dict):
|
|
4553
4169
|
metrics_polling_interval: Optional[int] = None):
|
4554
4170
|
"""
|
4555
4171
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4556
|
-
|
4557
|
-
<details>
|
4558
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4559
4172
|
"""
|
4560
4173
|
if metrics_polling_interval is not None:
|
4561
4174
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -4565,9 +4178,6 @@ class AwsIntegrationsHealth(dict):
|
|
4565
4178
|
def metrics_polling_interval(self) -> Optional[int]:
|
4566
4179
|
"""
|
4567
4180
|
The data polling interval in seconds.
|
4568
|
-
|
4569
|
-
<details>
|
4570
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4571
4181
|
"""
|
4572
4182
|
return pulumi.get(self, "metrics_polling_interval")
|
4573
4183
|
|
@@ -4601,9 +4211,6 @@ class AwsIntegrationsIam(dict):
|
|
4601
4211
|
tag_value: Optional[str] = None):
|
4602
4212
|
"""
|
4603
4213
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4604
|
-
|
4605
|
-
<details>
|
4606
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4607
4214
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4608
4215
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4609
4216
|
"""
|
@@ -4619,9 +4226,6 @@ class AwsIntegrationsIam(dict):
|
|
4619
4226
|
def metrics_polling_interval(self) -> Optional[int]:
|
4620
4227
|
"""
|
4621
4228
|
The data polling interval in seconds.
|
4622
|
-
|
4623
|
-
<details>
|
4624
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4625
4229
|
"""
|
4626
4230
|
return pulumi.get(self, "metrics_polling_interval")
|
4627
4231
|
|
@@ -4667,12 +4271,8 @@ class AwsIntegrationsIot(dict):
|
|
4667
4271
|
aws_regions: Optional[Sequence[str]] = None,
|
4668
4272
|
metrics_polling_interval: Optional[int] = None):
|
4669
4273
|
"""
|
4670
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4671
|
-
</details>
|
4274
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4672
4275
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4673
|
-
|
4674
|
-
<details>
|
4675
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4676
4276
|
"""
|
4677
4277
|
if aws_regions is not None:
|
4678
4278
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -4683,8 +4283,7 @@ class AwsIntegrationsIot(dict):
|
|
4683
4283
|
@pulumi.getter(name="awsRegions")
|
4684
4284
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4685
4285
|
"""
|
4686
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4687
|
-
</details>
|
4286
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4688
4287
|
"""
|
4689
4288
|
return pulumi.get(self, "aws_regions")
|
4690
4289
|
|
@@ -4693,9 +4292,6 @@ class AwsIntegrationsIot(dict):
|
|
4693
4292
|
def metrics_polling_interval(self) -> Optional[int]:
|
4694
4293
|
"""
|
4695
4294
|
The data polling interval in seconds.
|
4696
|
-
|
4697
|
-
<details>
|
4698
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4699
4295
|
"""
|
4700
4296
|
return pulumi.get(self, "metrics_polling_interval")
|
4701
4297
|
|
@@ -4737,14 +4333,10 @@ class AwsIntegrationsKinesis(dict):
|
|
4737
4333
|
tag_key: Optional[str] = None,
|
4738
4334
|
tag_value: Optional[str] = None):
|
4739
4335
|
"""
|
4740
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4741
|
-
</details>
|
4336
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4742
4337
|
:param bool fetch_shards: Specify if Shards should be monitored. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4743
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4338
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4744
4339
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4745
|
-
|
4746
|
-
<details>
|
4747
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4748
4340
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4749
4341
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4750
4342
|
"""
|
@@ -4765,8 +4357,7 @@ class AwsIntegrationsKinesis(dict):
|
|
4765
4357
|
@pulumi.getter(name="awsRegions")
|
4766
4358
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4767
4359
|
"""
|
4768
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4769
|
-
</details>
|
4360
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4770
4361
|
"""
|
4771
4362
|
return pulumi.get(self, "aws_regions")
|
4772
4363
|
|
@@ -4782,7 +4373,7 @@ class AwsIntegrationsKinesis(dict):
|
|
4782
4373
|
@pulumi.getter(name="fetchTags")
|
4783
4374
|
def fetch_tags(self) -> Optional[bool]:
|
4784
4375
|
"""
|
4785
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4376
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4786
4377
|
"""
|
4787
4378
|
return pulumi.get(self, "fetch_tags")
|
4788
4379
|
|
@@ -4791,9 +4382,6 @@ class AwsIntegrationsKinesis(dict):
|
|
4791
4382
|
def metrics_polling_interval(self) -> Optional[int]:
|
4792
4383
|
"""
|
4793
4384
|
The data polling interval in seconds.
|
4794
|
-
|
4795
|
-
<details>
|
4796
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4797
4385
|
"""
|
4798
4386
|
return pulumi.get(self, "metrics_polling_interval")
|
4799
4387
|
|
@@ -4839,12 +4427,8 @@ class AwsIntegrationsKinesisFirehose(dict):
|
|
4839
4427
|
aws_regions: Optional[Sequence[str]] = None,
|
4840
4428
|
metrics_polling_interval: Optional[int] = None):
|
4841
4429
|
"""
|
4842
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4843
|
-
</details>
|
4430
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4844
4431
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4845
|
-
|
4846
|
-
<details>
|
4847
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4848
4432
|
"""
|
4849
4433
|
if aws_regions is not None:
|
4850
4434
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -4855,8 +4439,7 @@ class AwsIntegrationsKinesisFirehose(dict):
|
|
4855
4439
|
@pulumi.getter(name="awsRegions")
|
4856
4440
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4857
4441
|
"""
|
4858
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4859
|
-
</details>
|
4442
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4860
4443
|
"""
|
4861
4444
|
return pulumi.get(self, "aws_regions")
|
4862
4445
|
|
@@ -4865,9 +4448,6 @@ class AwsIntegrationsKinesisFirehose(dict):
|
|
4865
4448
|
def metrics_polling_interval(self) -> Optional[int]:
|
4866
4449
|
"""
|
4867
4450
|
The data polling interval in seconds.
|
4868
|
-
|
4869
|
-
<details>
|
4870
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4871
4451
|
"""
|
4872
4452
|
return pulumi.get(self, "metrics_polling_interval")
|
4873
4453
|
|
@@ -4906,13 +4486,9 @@ class AwsIntegrationsLambda(dict):
|
|
4906
4486
|
tag_key: Optional[str] = None,
|
4907
4487
|
tag_value: Optional[str] = None):
|
4908
4488
|
"""
|
4909
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4910
|
-
|
4911
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4489
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4490
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4912
4491
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
4913
|
-
|
4914
|
-
<details>
|
4915
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4916
4492
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4917
4493
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
4918
4494
|
"""
|
@@ -4931,8 +4507,7 @@ class AwsIntegrationsLambda(dict):
|
|
4931
4507
|
@pulumi.getter(name="awsRegions")
|
4932
4508
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
4933
4509
|
"""
|
4934
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
4935
|
-
</details>
|
4510
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
4936
4511
|
"""
|
4937
4512
|
return pulumi.get(self, "aws_regions")
|
4938
4513
|
|
@@ -4940,7 +4515,7 @@ class AwsIntegrationsLambda(dict):
|
|
4940
4515
|
@pulumi.getter(name="fetchTags")
|
4941
4516
|
def fetch_tags(self) -> Optional[bool]:
|
4942
4517
|
"""
|
4943
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4518
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4944
4519
|
"""
|
4945
4520
|
return pulumi.get(self, "fetch_tags")
|
4946
4521
|
|
@@ -4949,9 +4524,6 @@ class AwsIntegrationsLambda(dict):
|
|
4949
4524
|
def metrics_polling_interval(self) -> Optional[int]:
|
4950
4525
|
"""
|
4951
4526
|
The data polling interval in seconds.
|
4952
|
-
|
4953
|
-
<details>
|
4954
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
4955
4527
|
"""
|
4956
4528
|
return pulumi.get(self, "metrics_polling_interval")
|
4957
4529
|
|
@@ -5006,13 +4578,9 @@ class AwsIntegrationsRds(dict):
|
|
5006
4578
|
tag_key: Optional[str] = None,
|
5007
4579
|
tag_value: Optional[str] = None):
|
5008
4580
|
"""
|
5009
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5010
|
-
|
5011
|
-
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4581
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
4582
|
+
:param bool fetch_tags: Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5012
4583
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5013
|
-
|
5014
|
-
<details>
|
5015
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5016
4584
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5017
4585
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5018
4586
|
"""
|
@@ -5031,8 +4599,7 @@ class AwsIntegrationsRds(dict):
|
|
5031
4599
|
@pulumi.getter(name="awsRegions")
|
5032
4600
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5033
4601
|
"""
|
5034
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5035
|
-
</details>
|
4602
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5036
4603
|
"""
|
5037
4604
|
return pulumi.get(self, "aws_regions")
|
5038
4605
|
|
@@ -5040,7 +4607,7 @@ class AwsIntegrationsRds(dict):
|
|
5040
4607
|
@pulumi.getter(name="fetchTags")
|
5041
4608
|
def fetch_tags(self) -> Optional[bool]:
|
5042
4609
|
"""
|
5043
|
-
Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
4610
|
+
Specify if tags and the extended inventory should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5044
4611
|
"""
|
5045
4612
|
return pulumi.get(self, "fetch_tags")
|
5046
4613
|
|
@@ -5049,9 +4616,6 @@ class AwsIntegrationsRds(dict):
|
|
5049
4616
|
def metrics_polling_interval(self) -> Optional[int]:
|
5050
4617
|
"""
|
5051
4618
|
The data polling interval in seconds.
|
5052
|
-
|
5053
|
-
<details>
|
5054
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5055
4619
|
"""
|
5056
4620
|
return pulumi.get(self, "metrics_polling_interval")
|
5057
4621
|
|
@@ -5103,12 +4667,8 @@ class AwsIntegrationsRedshift(dict):
|
|
5103
4667
|
tag_key: Optional[str] = None,
|
5104
4668
|
tag_value: Optional[str] = None):
|
5105
4669
|
"""
|
5106
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5107
|
-
</details>
|
4670
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5108
4671
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5109
|
-
|
5110
|
-
<details>
|
5111
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5112
4672
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5113
4673
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5114
4674
|
"""
|
@@ -5125,8 +4685,7 @@ class AwsIntegrationsRedshift(dict):
|
|
5125
4685
|
@pulumi.getter(name="awsRegions")
|
5126
4686
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5127
4687
|
"""
|
5128
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5129
|
-
</details>
|
4688
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5130
4689
|
"""
|
5131
4690
|
return pulumi.get(self, "aws_regions")
|
5132
4691
|
|
@@ -5135,9 +4694,6 @@ class AwsIntegrationsRedshift(dict):
|
|
5135
4694
|
def metrics_polling_interval(self) -> Optional[int]:
|
5136
4695
|
"""
|
5137
4696
|
The data polling interval in seconds.
|
5138
|
-
|
5139
|
-
<details>
|
5140
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5141
4697
|
"""
|
5142
4698
|
return pulumi.get(self, "metrics_polling_interval")
|
5143
4699
|
|
@@ -5184,12 +4740,7 @@ class AwsIntegrationsRoute53(dict):
|
|
5184
4740
|
metrics_polling_interval: Optional[int] = None):
|
5185
4741
|
"""
|
5186
4742
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5187
|
-
|
5188
|
-
Furthermore, below integration types supports the following common arguments.
|
5189
4743
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5190
|
-
|
5191
|
-
<details>
|
5192
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5193
4744
|
"""
|
5194
4745
|
if fetch_extended_inventory is not None:
|
5195
4746
|
pulumi.set(__self__, "fetch_extended_inventory", fetch_extended_inventory)
|
@@ -5201,8 +4752,6 @@ class AwsIntegrationsRoute53(dict):
|
|
5201
4752
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
5202
4753
|
"""
|
5203
4754
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5204
|
-
|
5205
|
-
Furthermore, below integration types supports the following common arguments.
|
5206
4755
|
"""
|
5207
4756
|
return pulumi.get(self, "fetch_extended_inventory")
|
5208
4757
|
|
@@ -5211,9 +4760,6 @@ class AwsIntegrationsRoute53(dict):
|
|
5211
4760
|
def metrics_polling_interval(self) -> Optional[int]:
|
5212
4761
|
"""
|
5213
4762
|
The data polling interval in seconds.
|
5214
|
-
|
5215
|
-
<details>
|
5216
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5217
4763
|
"""
|
5218
4764
|
return pulumi.get(self, "metrics_polling_interval")
|
5219
4765
|
|
@@ -5253,13 +4799,8 @@ class AwsIntegrationsS3(dict):
|
|
5253
4799
|
tag_value: Optional[str] = None):
|
5254
4800
|
"""
|
5255
4801
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5256
|
-
|
5257
|
-
Furthermore, below integration types supports the following common arguments.
|
5258
4802
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5259
4803
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5260
|
-
|
5261
|
-
<details>
|
5262
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5263
4804
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5264
4805
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5265
4806
|
"""
|
@@ -5279,8 +4820,6 @@ class AwsIntegrationsS3(dict):
|
|
5279
4820
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
5280
4821
|
"""
|
5281
4822
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5282
|
-
|
5283
|
-
Furthermore, below integration types supports the following common arguments.
|
5284
4823
|
"""
|
5285
4824
|
return pulumi.get(self, "fetch_extended_inventory")
|
5286
4825
|
|
@@ -5297,9 +4836,6 @@ class AwsIntegrationsS3(dict):
|
|
5297
4836
|
def metrics_polling_interval(self) -> Optional[int]:
|
5298
4837
|
"""
|
5299
4838
|
The data polling interval in seconds.
|
5300
|
-
|
5301
|
-
<details>
|
5302
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5303
4839
|
"""
|
5304
4840
|
return pulumi.get(self, "metrics_polling_interval")
|
5305
4841
|
|
@@ -5345,12 +4881,8 @@ class AwsIntegrationsSes(dict):
|
|
5345
4881
|
aws_regions: Optional[Sequence[str]] = None,
|
5346
4882
|
metrics_polling_interval: Optional[int] = None):
|
5347
4883
|
"""
|
5348
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5349
|
-
</details>
|
4884
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5350
4885
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5351
|
-
|
5352
|
-
<details>
|
5353
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5354
4886
|
"""
|
5355
4887
|
if aws_regions is not None:
|
5356
4888
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -5361,8 +4893,7 @@ class AwsIntegrationsSes(dict):
|
|
5361
4893
|
@pulumi.getter(name="awsRegions")
|
5362
4894
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5363
4895
|
"""
|
5364
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5365
|
-
</details>
|
4896
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5366
4897
|
"""
|
5367
4898
|
return pulumi.get(self, "aws_regions")
|
5368
4899
|
|
@@ -5371,9 +4902,6 @@ class AwsIntegrationsSes(dict):
|
|
5371
4902
|
def metrics_polling_interval(self) -> Optional[int]:
|
5372
4903
|
"""
|
5373
4904
|
The data polling interval in seconds.
|
5374
|
-
|
5375
|
-
<details>
|
5376
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5377
4905
|
"""
|
5378
4906
|
return pulumi.get(self, "metrics_polling_interval")
|
5379
4907
|
|
@@ -5406,15 +4934,9 @@ class AwsIntegrationsSns(dict):
|
|
5406
4934
|
fetch_extended_inventory: Optional[bool] = None,
|
5407
4935
|
metrics_polling_interval: Optional[int] = None):
|
5408
4936
|
"""
|
5409
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5410
|
-
</details>
|
4937
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5411
4938
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5412
|
-
|
5413
|
-
Furthermore, below integration types supports the following common arguments.
|
5414
4939
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5415
|
-
|
5416
|
-
<details>
|
5417
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5418
4940
|
"""
|
5419
4941
|
if aws_regions is not None:
|
5420
4942
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -5427,8 +4949,7 @@ class AwsIntegrationsSns(dict):
|
|
5427
4949
|
@pulumi.getter(name="awsRegions")
|
5428
4950
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5429
4951
|
"""
|
5430
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5431
|
-
</details>
|
4952
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5432
4953
|
"""
|
5433
4954
|
return pulumi.get(self, "aws_regions")
|
5434
4955
|
|
@@ -5437,8 +4958,6 @@ class AwsIntegrationsSns(dict):
|
|
5437
4958
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
5438
4959
|
"""
|
5439
4960
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5440
|
-
|
5441
|
-
Furthermore, below integration types supports the following common arguments.
|
5442
4961
|
"""
|
5443
4962
|
return pulumi.get(self, "fetch_extended_inventory")
|
5444
4963
|
|
@@ -5447,9 +4966,6 @@ class AwsIntegrationsSns(dict):
|
|
5447
4966
|
def metrics_polling_interval(self) -> Optional[int]:
|
5448
4967
|
"""
|
5449
4968
|
The data polling interval in seconds.
|
5450
|
-
|
5451
|
-
<details>
|
5452
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5453
4969
|
"""
|
5454
4970
|
return pulumi.get(self, "metrics_polling_interval")
|
5455
4971
|
|
@@ -5494,16 +5010,10 @@ class AwsIntegrationsSqs(dict):
|
|
5494
5010
|
tag_key: Optional[str] = None,
|
5495
5011
|
tag_value: Optional[str] = None):
|
5496
5012
|
"""
|
5497
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5498
|
-
</details>
|
5013
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5499
5014
|
:param bool fetch_extended_inventory: Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5500
|
-
|
5501
|
-
Furthermore, below integration types supports the following common arguments.
|
5502
5015
|
:param bool fetch_tags: Specify if tags should be collected. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5503
5016
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5504
|
-
|
5505
|
-
<details>
|
5506
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5507
5017
|
:param Sequence[str] queue_prefixes: Specify each name or prefix for the Queues that you want to monitor. Filter values are case-sensitive.
|
5508
5018
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5509
5019
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
@@ -5527,8 +5037,7 @@ class AwsIntegrationsSqs(dict):
|
|
5527
5037
|
@pulumi.getter(name="awsRegions")
|
5528
5038
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5529
5039
|
"""
|
5530
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5531
|
-
</details>
|
5040
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5532
5041
|
"""
|
5533
5042
|
return pulumi.get(self, "aws_regions")
|
5534
5043
|
|
@@ -5537,8 +5046,6 @@ class AwsIntegrationsSqs(dict):
|
|
5537
5046
|
def fetch_extended_inventory(self) -> Optional[bool]:
|
5538
5047
|
"""
|
5539
5048
|
Determine if extra inventory data be collected or not. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5540
|
-
|
5541
|
-
Furthermore, below integration types supports the following common arguments.
|
5542
5049
|
"""
|
5543
5050
|
return pulumi.get(self, "fetch_extended_inventory")
|
5544
5051
|
|
@@ -5555,9 +5062,6 @@ class AwsIntegrationsSqs(dict):
|
|
5555
5062
|
def metrics_polling_interval(self) -> Optional[int]:
|
5556
5063
|
"""
|
5557
5064
|
The data polling interval in seconds.
|
5558
|
-
|
5559
|
-
<details>
|
5560
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5561
5065
|
"""
|
5562
5066
|
return pulumi.get(self, "metrics_polling_interval")
|
5563
5067
|
|
@@ -5609,9 +5113,6 @@ class AwsIntegrationsTrustedAdvisor(dict):
|
|
5609
5113
|
metrics_polling_interval: Optional[int] = None):
|
5610
5114
|
"""
|
5611
5115
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5612
|
-
|
5613
|
-
<details>
|
5614
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5615
5116
|
"""
|
5616
5117
|
if metrics_polling_interval is not None:
|
5617
5118
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -5621,9 +5122,6 @@ class AwsIntegrationsTrustedAdvisor(dict):
|
|
5621
5122
|
def metrics_polling_interval(self) -> Optional[int]:
|
5622
5123
|
"""
|
5623
5124
|
The data polling interval in seconds.
|
5624
|
-
|
5625
|
-
<details>
|
5626
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5627
5125
|
"""
|
5628
5126
|
return pulumi.get(self, "metrics_polling_interval")
|
5629
5127
|
|
@@ -5665,14 +5163,10 @@ class AwsIntegrationsVpc(dict):
|
|
5665
5163
|
tag_key: Optional[str] = None,
|
5666
5164
|
tag_value: Optional[str] = None):
|
5667
5165
|
"""
|
5668
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5669
|
-
</details>
|
5166
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5670
5167
|
:param bool fetch_nat_gateway: Specify if NAT gateway should be monitored. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5671
5168
|
:param bool fetch_vpn: Specify if VPN should be monitored. May affect total data collection time and contribute to the Cloud provider API rate limit.
|
5672
5169
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5673
|
-
|
5674
|
-
<details>
|
5675
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5676
5170
|
:param str tag_key: Specify a Tag key associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5677
5171
|
:param str tag_value: Specify a Tag value associated with the resources that you want to monitor. Filter values are case-sensitive.
|
5678
5172
|
"""
|
@@ -5693,8 +5187,7 @@ class AwsIntegrationsVpc(dict):
|
|
5693
5187
|
@pulumi.getter(name="awsRegions")
|
5694
5188
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5695
5189
|
"""
|
5696
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5697
|
-
</details>
|
5190
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5698
5191
|
"""
|
5699
5192
|
return pulumi.get(self, "aws_regions")
|
5700
5193
|
|
@@ -5719,9 +5212,6 @@ class AwsIntegrationsVpc(dict):
|
|
5719
5212
|
def metrics_polling_interval(self) -> Optional[int]:
|
5720
5213
|
"""
|
5721
5214
|
The data polling interval in seconds.
|
5722
|
-
|
5723
|
-
<details>
|
5724
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5725
5215
|
"""
|
5726
5216
|
return pulumi.get(self, "metrics_polling_interval")
|
5727
5217
|
|
@@ -5767,12 +5257,8 @@ class AwsIntegrationsXRay(dict):
|
|
5767
5257
|
aws_regions: Optional[Sequence[str]] = None,
|
5768
5258
|
metrics_polling_interval: Optional[int] = None):
|
5769
5259
|
"""
|
5770
|
-
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5771
|
-
</details>
|
5260
|
+
:param Sequence[str] aws_regions: Specify each AWS region that includes the resources that you want to monitor.
|
5772
5261
|
:param int metrics_polling_interval: The data polling interval in seconds.
|
5773
|
-
|
5774
|
-
<details>
|
5775
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5776
5262
|
"""
|
5777
5263
|
if aws_regions is not None:
|
5778
5264
|
pulumi.set(__self__, "aws_regions", aws_regions)
|
@@ -5783,8 +5269,7 @@ class AwsIntegrationsXRay(dict):
|
|
5783
5269
|
@pulumi.getter(name="awsRegions")
|
5784
5270
|
def aws_regions(self) -> Optional[Sequence[str]]:
|
5785
5271
|
"""
|
5786
|
-
Specify each AWS region that includes the resources that you want to monitor.
|
5787
|
-
</details>
|
5272
|
+
Specify each AWS region that includes the resources that you want to monitor.
|
5788
5273
|
"""
|
5789
5274
|
return pulumi.get(self, "aws_regions")
|
5790
5275
|
|
@@ -5793,9 +5278,6 @@ class AwsIntegrationsXRay(dict):
|
|
5793
5278
|
def metrics_polling_interval(self) -> Optional[int]:
|
5794
5279
|
"""
|
5795
5280
|
The data polling interval in seconds.
|
5796
|
-
|
5797
|
-
<details>
|
5798
|
-
<summary> Some integration types support an additional set of arguments. Expand this section to take a look at these supported arguments. </summary>
|
5799
5281
|
"""
|
5800
5282
|
return pulumi.get(self, "metrics_polling_interval")
|
5801
5283
|
|
@@ -5825,10 +5307,8 @@ class AzureIntegrationsApiManagement(dict):
|
|
5825
5307
|
metrics_polling_interval: Optional[int] = None,
|
5826
5308
|
resource_groups: Optional[Sequence[str]] = None):
|
5827
5309
|
"""
|
5828
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5310
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
5829
5311
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5830
|
-
|
5831
|
-
Other integration type support an additional argument:
|
5832
5312
|
"""
|
5833
5313
|
if metrics_polling_interval is not None:
|
5834
5314
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -5839,7 +5319,7 @@ class AzureIntegrationsApiManagement(dict):
|
|
5839
5319
|
@pulumi.getter(name="metricsPollingInterval")
|
5840
5320
|
def metrics_polling_interval(self) -> Optional[int]:
|
5841
5321
|
"""
|
5842
|
-
The data polling interval in seconds
|
5322
|
+
The data polling interval in seconds
|
5843
5323
|
"""
|
5844
5324
|
return pulumi.get(self, "metrics_polling_interval")
|
5845
5325
|
|
@@ -5848,8 +5328,6 @@ class AzureIntegrationsApiManagement(dict):
|
|
5848
5328
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
5849
5329
|
"""
|
5850
5330
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5851
|
-
|
5852
|
-
Other integration type support an additional argument:
|
5853
5331
|
"""
|
5854
5332
|
return pulumi.get(self, "resource_groups")
|
5855
5333
|
|
@@ -5879,10 +5357,8 @@ class AzureIntegrationsAppGateway(dict):
|
|
5879
5357
|
metrics_polling_interval: Optional[int] = None,
|
5880
5358
|
resource_groups: Optional[Sequence[str]] = None):
|
5881
5359
|
"""
|
5882
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5360
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
5883
5361
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5884
|
-
|
5885
|
-
Other integration type support an additional argument:
|
5886
5362
|
"""
|
5887
5363
|
if metrics_polling_interval is not None:
|
5888
5364
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -5893,7 +5369,7 @@ class AzureIntegrationsAppGateway(dict):
|
|
5893
5369
|
@pulumi.getter(name="metricsPollingInterval")
|
5894
5370
|
def metrics_polling_interval(self) -> Optional[int]:
|
5895
5371
|
"""
|
5896
|
-
The data polling interval in seconds
|
5372
|
+
The data polling interval in seconds
|
5897
5373
|
"""
|
5898
5374
|
return pulumi.get(self, "metrics_polling_interval")
|
5899
5375
|
|
@@ -5902,8 +5378,6 @@ class AzureIntegrationsAppGateway(dict):
|
|
5902
5378
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
5903
5379
|
"""
|
5904
5380
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5905
|
-
|
5906
|
-
Other integration type support an additional argument:
|
5907
5381
|
"""
|
5908
5382
|
return pulumi.get(self, "resource_groups")
|
5909
5383
|
|
@@ -5933,10 +5407,8 @@ class AzureIntegrationsAppService(dict):
|
|
5933
5407
|
metrics_polling_interval: Optional[int] = None,
|
5934
5408
|
resource_groups: Optional[Sequence[str]] = None):
|
5935
5409
|
"""
|
5936
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5410
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
5937
5411
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5938
|
-
|
5939
|
-
Other integration type support an additional argument:
|
5940
5412
|
"""
|
5941
5413
|
if metrics_polling_interval is not None:
|
5942
5414
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -5947,7 +5419,7 @@ class AzureIntegrationsAppService(dict):
|
|
5947
5419
|
@pulumi.getter(name="metricsPollingInterval")
|
5948
5420
|
def metrics_polling_interval(self) -> Optional[int]:
|
5949
5421
|
"""
|
5950
|
-
The data polling interval in seconds
|
5422
|
+
The data polling interval in seconds
|
5951
5423
|
"""
|
5952
5424
|
return pulumi.get(self, "metrics_polling_interval")
|
5953
5425
|
|
@@ -5956,8 +5428,6 @@ class AzureIntegrationsAppService(dict):
|
|
5956
5428
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
5957
5429
|
"""
|
5958
5430
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5959
|
-
|
5960
|
-
Other integration type support an additional argument:
|
5961
5431
|
"""
|
5962
5432
|
return pulumi.get(self, "resource_groups")
|
5963
5433
|
|
@@ -5987,10 +5457,8 @@ class AzureIntegrationsContainers(dict):
|
|
5987
5457
|
metrics_polling_interval: Optional[int] = None,
|
5988
5458
|
resource_groups: Optional[Sequence[str]] = None):
|
5989
5459
|
"""
|
5990
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5460
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
5991
5461
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
5992
|
-
|
5993
|
-
Other integration type support an additional argument:
|
5994
5462
|
"""
|
5995
5463
|
if metrics_polling_interval is not None:
|
5996
5464
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6001,7 +5469,7 @@ class AzureIntegrationsContainers(dict):
|
|
6001
5469
|
@pulumi.getter(name="metricsPollingInterval")
|
6002
5470
|
def metrics_polling_interval(self) -> Optional[int]:
|
6003
5471
|
"""
|
6004
|
-
The data polling interval in seconds
|
5472
|
+
The data polling interval in seconds
|
6005
5473
|
"""
|
6006
5474
|
return pulumi.get(self, "metrics_polling_interval")
|
6007
5475
|
|
@@ -6010,8 +5478,6 @@ class AzureIntegrationsContainers(dict):
|
|
6010
5478
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6011
5479
|
"""
|
6012
5480
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6013
|
-
|
6014
|
-
Other integration type support an additional argument:
|
6015
5481
|
"""
|
6016
5482
|
return pulumi.get(self, "resource_groups")
|
6017
5483
|
|
@@ -6041,10 +5507,8 @@ class AzureIntegrationsCosmosDb(dict):
|
|
6041
5507
|
metrics_polling_interval: Optional[int] = None,
|
6042
5508
|
resource_groups: Optional[Sequence[str]] = None):
|
6043
5509
|
"""
|
6044
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5510
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6045
5511
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6046
|
-
|
6047
|
-
Other integration type support an additional argument:
|
6048
5512
|
"""
|
6049
5513
|
if metrics_polling_interval is not None:
|
6050
5514
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6055,7 +5519,7 @@ class AzureIntegrationsCosmosDb(dict):
|
|
6055
5519
|
@pulumi.getter(name="metricsPollingInterval")
|
6056
5520
|
def metrics_polling_interval(self) -> Optional[int]:
|
6057
5521
|
"""
|
6058
|
-
The data polling interval in seconds
|
5522
|
+
The data polling interval in seconds
|
6059
5523
|
"""
|
6060
5524
|
return pulumi.get(self, "metrics_polling_interval")
|
6061
5525
|
|
@@ -6064,8 +5528,6 @@ class AzureIntegrationsCosmosDb(dict):
|
|
6064
5528
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6065
5529
|
"""
|
6066
5530
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6067
|
-
|
6068
|
-
Other integration type support an additional argument:
|
6069
5531
|
"""
|
6070
5532
|
return pulumi.get(self, "resource_groups")
|
6071
5533
|
|
@@ -6095,8 +5557,8 @@ class AzureIntegrationsCostManagement(dict):
|
|
6095
5557
|
metrics_polling_interval: Optional[int] = None,
|
6096
5558
|
tag_keys: Optional[Sequence[str]] = None):
|
6097
5559
|
"""
|
6098
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6099
|
-
:param Sequence[str] tag_keys: Specify
|
5560
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
5561
|
+
:param Sequence[str] tag_keys: Specify if additional cost data per tag should be collected. This field is case sensitive.
|
6100
5562
|
"""
|
6101
5563
|
if metrics_polling_interval is not None:
|
6102
5564
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6107,7 +5569,7 @@ class AzureIntegrationsCostManagement(dict):
|
|
6107
5569
|
@pulumi.getter(name="metricsPollingInterval")
|
6108
5570
|
def metrics_polling_interval(self) -> Optional[int]:
|
6109
5571
|
"""
|
6110
|
-
The data polling interval in seconds
|
5572
|
+
The data polling interval in seconds
|
6111
5573
|
"""
|
6112
5574
|
return pulumi.get(self, "metrics_polling_interval")
|
6113
5575
|
|
@@ -6115,7 +5577,7 @@ class AzureIntegrationsCostManagement(dict):
|
|
6115
5577
|
@pulumi.getter(name="tagKeys")
|
6116
5578
|
def tag_keys(self) -> Optional[Sequence[str]]:
|
6117
5579
|
"""
|
6118
|
-
Specify
|
5580
|
+
Specify if additional cost data per tag should be collected. This field is case sensitive.
|
6119
5581
|
"""
|
6120
5582
|
return pulumi.get(self, "tag_keys")
|
6121
5583
|
|
@@ -6145,10 +5607,8 @@ class AzureIntegrationsDataFactory(dict):
|
|
6145
5607
|
metrics_polling_interval: Optional[int] = None,
|
6146
5608
|
resource_groups: Optional[Sequence[str]] = None):
|
6147
5609
|
"""
|
6148
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5610
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6149
5611
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6150
|
-
|
6151
|
-
Other integration type support an additional argument:
|
6152
5612
|
"""
|
6153
5613
|
if metrics_polling_interval is not None:
|
6154
5614
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6159,7 +5619,7 @@ class AzureIntegrationsDataFactory(dict):
|
|
6159
5619
|
@pulumi.getter(name="metricsPollingInterval")
|
6160
5620
|
def metrics_polling_interval(self) -> Optional[int]:
|
6161
5621
|
"""
|
6162
|
-
The data polling interval in seconds
|
5622
|
+
The data polling interval in seconds
|
6163
5623
|
"""
|
6164
5624
|
return pulumi.get(self, "metrics_polling_interval")
|
6165
5625
|
|
@@ -6168,8 +5628,6 @@ class AzureIntegrationsDataFactory(dict):
|
|
6168
5628
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6169
5629
|
"""
|
6170
5630
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6171
|
-
|
6172
|
-
Other integration type support an additional argument:
|
6173
5631
|
"""
|
6174
5632
|
return pulumi.get(self, "resource_groups")
|
6175
5633
|
|
@@ -6199,10 +5657,8 @@ class AzureIntegrationsEventHub(dict):
|
|
6199
5657
|
metrics_polling_interval: Optional[int] = None,
|
6200
5658
|
resource_groups: Optional[Sequence[str]] = None):
|
6201
5659
|
"""
|
6202
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5660
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6203
5661
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6204
|
-
|
6205
|
-
Other integration type support an additional argument:
|
6206
5662
|
"""
|
6207
5663
|
if metrics_polling_interval is not None:
|
6208
5664
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6213,7 +5669,7 @@ class AzureIntegrationsEventHub(dict):
|
|
6213
5669
|
@pulumi.getter(name="metricsPollingInterval")
|
6214
5670
|
def metrics_polling_interval(self) -> Optional[int]:
|
6215
5671
|
"""
|
6216
|
-
The data polling interval in seconds
|
5672
|
+
The data polling interval in seconds
|
6217
5673
|
"""
|
6218
5674
|
return pulumi.get(self, "metrics_polling_interval")
|
6219
5675
|
|
@@ -6222,8 +5678,6 @@ class AzureIntegrationsEventHub(dict):
|
|
6222
5678
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6223
5679
|
"""
|
6224
5680
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6225
|
-
|
6226
|
-
Other integration type support an additional argument:
|
6227
5681
|
"""
|
6228
5682
|
return pulumi.get(self, "resource_groups")
|
6229
5683
|
|
@@ -6253,10 +5707,8 @@ class AzureIntegrationsExpressRoute(dict):
|
|
6253
5707
|
metrics_polling_interval: Optional[int] = None,
|
6254
5708
|
resource_groups: Optional[Sequence[str]] = None):
|
6255
5709
|
"""
|
6256
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5710
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6257
5711
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6258
|
-
|
6259
|
-
Other integration type support an additional argument:
|
6260
5712
|
"""
|
6261
5713
|
if metrics_polling_interval is not None:
|
6262
5714
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6267,7 +5719,7 @@ class AzureIntegrationsExpressRoute(dict):
|
|
6267
5719
|
@pulumi.getter(name="metricsPollingInterval")
|
6268
5720
|
def metrics_polling_interval(self) -> Optional[int]:
|
6269
5721
|
"""
|
6270
|
-
The data polling interval in seconds
|
5722
|
+
The data polling interval in seconds
|
6271
5723
|
"""
|
6272
5724
|
return pulumi.get(self, "metrics_polling_interval")
|
6273
5725
|
|
@@ -6276,8 +5728,6 @@ class AzureIntegrationsExpressRoute(dict):
|
|
6276
5728
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6277
5729
|
"""
|
6278
5730
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6279
|
-
|
6280
|
-
Other integration type support an additional argument:
|
6281
5731
|
"""
|
6282
5732
|
return pulumi.get(self, "resource_groups")
|
6283
5733
|
|
@@ -6307,10 +5757,8 @@ class AzureIntegrationsFirewalls(dict):
|
|
6307
5757
|
metrics_polling_interval: Optional[int] = None,
|
6308
5758
|
resource_groups: Optional[Sequence[str]] = None):
|
6309
5759
|
"""
|
6310
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5760
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6311
5761
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6312
|
-
|
6313
|
-
Other integration type support an additional argument:
|
6314
5762
|
"""
|
6315
5763
|
if metrics_polling_interval is not None:
|
6316
5764
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6321,7 +5769,7 @@ class AzureIntegrationsFirewalls(dict):
|
|
6321
5769
|
@pulumi.getter(name="metricsPollingInterval")
|
6322
5770
|
def metrics_polling_interval(self) -> Optional[int]:
|
6323
5771
|
"""
|
6324
|
-
The data polling interval in seconds
|
5772
|
+
The data polling interval in seconds
|
6325
5773
|
"""
|
6326
5774
|
return pulumi.get(self, "metrics_polling_interval")
|
6327
5775
|
|
@@ -6330,8 +5778,6 @@ class AzureIntegrationsFirewalls(dict):
|
|
6330
5778
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6331
5779
|
"""
|
6332
5780
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6333
|
-
|
6334
|
-
Other integration type support an additional argument:
|
6335
5781
|
"""
|
6336
5782
|
return pulumi.get(self, "resource_groups")
|
6337
5783
|
|
@@ -6361,10 +5807,8 @@ class AzureIntegrationsFrontDoor(dict):
|
|
6361
5807
|
metrics_polling_interval: Optional[int] = None,
|
6362
5808
|
resource_groups: Optional[Sequence[str]] = None):
|
6363
5809
|
"""
|
6364
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5810
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6365
5811
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6366
|
-
|
6367
|
-
Other integration type support an additional argument:
|
6368
5812
|
"""
|
6369
5813
|
if metrics_polling_interval is not None:
|
6370
5814
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6375,7 +5819,7 @@ class AzureIntegrationsFrontDoor(dict):
|
|
6375
5819
|
@pulumi.getter(name="metricsPollingInterval")
|
6376
5820
|
def metrics_polling_interval(self) -> Optional[int]:
|
6377
5821
|
"""
|
6378
|
-
The data polling interval in seconds
|
5822
|
+
The data polling interval in seconds
|
6379
5823
|
"""
|
6380
5824
|
return pulumi.get(self, "metrics_polling_interval")
|
6381
5825
|
|
@@ -6384,8 +5828,6 @@ class AzureIntegrationsFrontDoor(dict):
|
|
6384
5828
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6385
5829
|
"""
|
6386
5830
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6387
|
-
|
6388
|
-
Other integration type support an additional argument:
|
6389
5831
|
"""
|
6390
5832
|
return pulumi.get(self, "resource_groups")
|
6391
5833
|
|
@@ -6415,10 +5857,8 @@ class AzureIntegrationsFunctions(dict):
|
|
6415
5857
|
metrics_polling_interval: Optional[int] = None,
|
6416
5858
|
resource_groups: Optional[Sequence[str]] = None):
|
6417
5859
|
"""
|
6418
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5860
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6419
5861
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6420
|
-
|
6421
|
-
Other integration type support an additional argument:
|
6422
5862
|
"""
|
6423
5863
|
if metrics_polling_interval is not None:
|
6424
5864
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6429,7 +5869,7 @@ class AzureIntegrationsFunctions(dict):
|
|
6429
5869
|
@pulumi.getter(name="metricsPollingInterval")
|
6430
5870
|
def metrics_polling_interval(self) -> Optional[int]:
|
6431
5871
|
"""
|
6432
|
-
The data polling interval in seconds
|
5872
|
+
The data polling interval in seconds
|
6433
5873
|
"""
|
6434
5874
|
return pulumi.get(self, "metrics_polling_interval")
|
6435
5875
|
|
@@ -6438,8 +5878,6 @@ class AzureIntegrationsFunctions(dict):
|
|
6438
5878
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6439
5879
|
"""
|
6440
5880
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6441
|
-
|
6442
|
-
Other integration type support an additional argument:
|
6443
5881
|
"""
|
6444
5882
|
return pulumi.get(self, "resource_groups")
|
6445
5883
|
|
@@ -6469,10 +5907,8 @@ class AzureIntegrationsKeyVault(dict):
|
|
6469
5907
|
metrics_polling_interval: Optional[int] = None,
|
6470
5908
|
resource_groups: Optional[Sequence[str]] = None):
|
6471
5909
|
"""
|
6472
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5910
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6473
5911
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6474
|
-
|
6475
|
-
Other integration type support an additional argument:
|
6476
5912
|
"""
|
6477
5913
|
if metrics_polling_interval is not None:
|
6478
5914
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6483,7 +5919,7 @@ class AzureIntegrationsKeyVault(dict):
|
|
6483
5919
|
@pulumi.getter(name="metricsPollingInterval")
|
6484
5920
|
def metrics_polling_interval(self) -> Optional[int]:
|
6485
5921
|
"""
|
6486
|
-
The data polling interval in seconds
|
5922
|
+
The data polling interval in seconds
|
6487
5923
|
"""
|
6488
5924
|
return pulumi.get(self, "metrics_polling_interval")
|
6489
5925
|
|
@@ -6492,8 +5928,6 @@ class AzureIntegrationsKeyVault(dict):
|
|
6492
5928
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6493
5929
|
"""
|
6494
5930
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6495
|
-
|
6496
|
-
Other integration type support an additional argument:
|
6497
5931
|
"""
|
6498
5932
|
return pulumi.get(self, "resource_groups")
|
6499
5933
|
|
@@ -6523,10 +5957,8 @@ class AzureIntegrationsLoadBalancer(dict):
|
|
6523
5957
|
metrics_polling_interval: Optional[int] = None,
|
6524
5958
|
resource_groups: Optional[Sequence[str]] = None):
|
6525
5959
|
"""
|
6526
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
5960
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6527
5961
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6528
|
-
|
6529
|
-
Other integration type support an additional argument:
|
6530
5962
|
"""
|
6531
5963
|
if metrics_polling_interval is not None:
|
6532
5964
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6537,7 +5969,7 @@ class AzureIntegrationsLoadBalancer(dict):
|
|
6537
5969
|
@pulumi.getter(name="metricsPollingInterval")
|
6538
5970
|
def metrics_polling_interval(self) -> Optional[int]:
|
6539
5971
|
"""
|
6540
|
-
The data polling interval in seconds
|
5972
|
+
The data polling interval in seconds
|
6541
5973
|
"""
|
6542
5974
|
return pulumi.get(self, "metrics_polling_interval")
|
6543
5975
|
|
@@ -6546,8 +5978,6 @@ class AzureIntegrationsLoadBalancer(dict):
|
|
6546
5978
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6547
5979
|
"""
|
6548
5980
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6549
|
-
|
6550
|
-
Other integration type support an additional argument:
|
6551
5981
|
"""
|
6552
5982
|
return pulumi.get(self, "resource_groups")
|
6553
5983
|
|
@@ -6577,10 +6007,8 @@ class AzureIntegrationsLogicApps(dict):
|
|
6577
6007
|
metrics_polling_interval: Optional[int] = None,
|
6578
6008
|
resource_groups: Optional[Sequence[str]] = None):
|
6579
6009
|
"""
|
6580
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6010
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6581
6011
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6582
|
-
|
6583
|
-
Other integration type support an additional argument:
|
6584
6012
|
"""
|
6585
6013
|
if metrics_polling_interval is not None:
|
6586
6014
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6591,7 +6019,7 @@ class AzureIntegrationsLogicApps(dict):
|
|
6591
6019
|
@pulumi.getter(name="metricsPollingInterval")
|
6592
6020
|
def metrics_polling_interval(self) -> Optional[int]:
|
6593
6021
|
"""
|
6594
|
-
The data polling interval in seconds
|
6022
|
+
The data polling interval in seconds
|
6595
6023
|
"""
|
6596
6024
|
return pulumi.get(self, "metrics_polling_interval")
|
6597
6025
|
|
@@ -6600,8 +6028,6 @@ class AzureIntegrationsLogicApps(dict):
|
|
6600
6028
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6601
6029
|
"""
|
6602
6030
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6603
|
-
|
6604
|
-
Other integration type support an additional argument:
|
6605
6031
|
"""
|
6606
6032
|
return pulumi.get(self, "resource_groups")
|
6607
6033
|
|
@@ -6631,10 +6057,8 @@ class AzureIntegrationsMachineLearning(dict):
|
|
6631
6057
|
metrics_polling_interval: Optional[int] = None,
|
6632
6058
|
resource_groups: Optional[Sequence[str]] = None):
|
6633
6059
|
"""
|
6634
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6060
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6635
6061
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6636
|
-
|
6637
|
-
Other integration type support an additional argument:
|
6638
6062
|
"""
|
6639
6063
|
if metrics_polling_interval is not None:
|
6640
6064
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6645,7 +6069,7 @@ class AzureIntegrationsMachineLearning(dict):
|
|
6645
6069
|
@pulumi.getter(name="metricsPollingInterval")
|
6646
6070
|
def metrics_polling_interval(self) -> Optional[int]:
|
6647
6071
|
"""
|
6648
|
-
The data polling interval in seconds
|
6072
|
+
The data polling interval in seconds
|
6649
6073
|
"""
|
6650
6074
|
return pulumi.get(self, "metrics_polling_interval")
|
6651
6075
|
|
@@ -6654,8 +6078,6 @@ class AzureIntegrationsMachineLearning(dict):
|
|
6654
6078
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6655
6079
|
"""
|
6656
6080
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6657
|
-
|
6658
|
-
Other integration type support an additional argument:
|
6659
6081
|
"""
|
6660
6082
|
return pulumi.get(self, "resource_groups")
|
6661
6083
|
|
@@ -6685,10 +6107,8 @@ class AzureIntegrationsMariaDb(dict):
|
|
6685
6107
|
metrics_polling_interval: Optional[int] = None,
|
6686
6108
|
resource_groups: Optional[Sequence[str]] = None):
|
6687
6109
|
"""
|
6688
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6110
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6689
6111
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6690
|
-
|
6691
|
-
Other integration type support an additional argument:
|
6692
6112
|
"""
|
6693
6113
|
if metrics_polling_interval is not None:
|
6694
6114
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6699,7 +6119,7 @@ class AzureIntegrationsMariaDb(dict):
|
|
6699
6119
|
@pulumi.getter(name="metricsPollingInterval")
|
6700
6120
|
def metrics_polling_interval(self) -> Optional[int]:
|
6701
6121
|
"""
|
6702
|
-
The data polling interval in seconds
|
6122
|
+
The data polling interval in seconds
|
6703
6123
|
"""
|
6704
6124
|
return pulumi.get(self, "metrics_polling_interval")
|
6705
6125
|
|
@@ -6708,8 +6128,6 @@ class AzureIntegrationsMariaDb(dict):
|
|
6708
6128
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6709
6129
|
"""
|
6710
6130
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6711
|
-
|
6712
|
-
Other integration type support an additional argument:
|
6713
6131
|
"""
|
6714
6132
|
return pulumi.get(self, "resource_groups")
|
6715
6133
|
|
@@ -6749,16 +6167,12 @@ class AzureIntegrationsMonitor(dict):
|
|
6749
6167
|
resource_groups: Optional[Sequence[str]] = None,
|
6750
6168
|
resource_types: Optional[Sequence[str]] = None):
|
6751
6169
|
"""
|
6752
|
-
:param bool enabled: A
|
6753
|
-
|
6754
|
-
|
6755
|
-
:param
|
6756
|
-
:param Sequence[str] include_tags: A list of resource tags associated with the resources that need to be monitored, in a "key:value" format. If this is not specified, all resources will be monitored.
|
6757
|
-
:param int metrics_polling_interval: The data polling interval in seconds.
|
6170
|
+
:param bool enabled: A flag that specifies if the integration is active
|
6171
|
+
:param Sequence[str] exclude_tags: Specify resource tags in 'key:value' form to be excluded from monitoring
|
6172
|
+
:param Sequence[str] include_tags: Specify resource tags in 'key:value' form to be monitored
|
6173
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6758
6174
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6759
|
-
|
6760
|
-
Other integration type support an additional argument:
|
6761
|
-
:param Sequence[str] resource_types: A list of Azure resource types that need to be monitored.
|
6175
|
+
:param Sequence[str] resource_types: Specify each Azure resource type that needs to be monitored
|
6762
6176
|
"""
|
6763
6177
|
if enabled is not None:
|
6764
6178
|
pulumi.set(__self__, "enabled", enabled)
|
@@ -6777,9 +6191,7 @@ class AzureIntegrationsMonitor(dict):
|
|
6777
6191
|
@pulumi.getter
|
6778
6192
|
def enabled(self) -> Optional[bool]:
|
6779
6193
|
"""
|
6780
|
-
A
|
6781
|
-
|
6782
|
-
> **IMPORTANT!** Using the `monitor` integration along with other polling integrations in this resource might lead to duplication of metrics. More information about this scenario may be found in the note in [this section](https://docs.newrelic.com/docs/infrastructure/microsoft-azure-integrations/azure-integrations-list/azure-monitor/#migration-from-polling) of New Relic's documentation on the Azure Monitor integration.
|
6194
|
+
A flag that specifies if the integration is active
|
6783
6195
|
"""
|
6784
6196
|
return pulumi.get(self, "enabled")
|
6785
6197
|
|
@@ -6787,7 +6199,7 @@ class AzureIntegrationsMonitor(dict):
|
|
6787
6199
|
@pulumi.getter(name="excludeTags")
|
6788
6200
|
def exclude_tags(self) -> Optional[Sequence[str]]:
|
6789
6201
|
"""
|
6790
|
-
|
6202
|
+
Specify resource tags in 'key:value' form to be excluded from monitoring
|
6791
6203
|
"""
|
6792
6204
|
return pulumi.get(self, "exclude_tags")
|
6793
6205
|
|
@@ -6795,7 +6207,7 @@ class AzureIntegrationsMonitor(dict):
|
|
6795
6207
|
@pulumi.getter(name="includeTags")
|
6796
6208
|
def include_tags(self) -> Optional[Sequence[str]]:
|
6797
6209
|
"""
|
6798
|
-
|
6210
|
+
Specify resource tags in 'key:value' form to be monitored
|
6799
6211
|
"""
|
6800
6212
|
return pulumi.get(self, "include_tags")
|
6801
6213
|
|
@@ -6803,7 +6215,7 @@ class AzureIntegrationsMonitor(dict):
|
|
6803
6215
|
@pulumi.getter(name="metricsPollingInterval")
|
6804
6216
|
def metrics_polling_interval(self) -> Optional[int]:
|
6805
6217
|
"""
|
6806
|
-
The data polling interval in seconds
|
6218
|
+
The data polling interval in seconds
|
6807
6219
|
"""
|
6808
6220
|
return pulumi.get(self, "metrics_polling_interval")
|
6809
6221
|
|
@@ -6812,8 +6224,6 @@ class AzureIntegrationsMonitor(dict):
|
|
6812
6224
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6813
6225
|
"""
|
6814
6226
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6815
|
-
|
6816
|
-
Other integration type support an additional argument:
|
6817
6227
|
"""
|
6818
6228
|
return pulumi.get(self, "resource_groups")
|
6819
6229
|
|
@@ -6821,7 +6231,7 @@ class AzureIntegrationsMonitor(dict):
|
|
6821
6231
|
@pulumi.getter(name="resourceTypes")
|
6822
6232
|
def resource_types(self) -> Optional[Sequence[str]]:
|
6823
6233
|
"""
|
6824
|
-
|
6234
|
+
Specify each Azure resource type that needs to be monitored
|
6825
6235
|
"""
|
6826
6236
|
return pulumi.get(self, "resource_types")
|
6827
6237
|
|
@@ -6851,10 +6261,8 @@ class AzureIntegrationsMysql(dict):
|
|
6851
6261
|
metrics_polling_interval: Optional[int] = None,
|
6852
6262
|
resource_groups: Optional[Sequence[str]] = None):
|
6853
6263
|
"""
|
6854
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6264
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6855
6265
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6856
|
-
|
6857
|
-
Other integration type support an additional argument:
|
6858
6266
|
"""
|
6859
6267
|
if metrics_polling_interval is not None:
|
6860
6268
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6865,7 +6273,7 @@ class AzureIntegrationsMysql(dict):
|
|
6865
6273
|
@pulumi.getter(name="metricsPollingInterval")
|
6866
6274
|
def metrics_polling_interval(self) -> Optional[int]:
|
6867
6275
|
"""
|
6868
|
-
The data polling interval in seconds
|
6276
|
+
The data polling interval in seconds
|
6869
6277
|
"""
|
6870
6278
|
return pulumi.get(self, "metrics_polling_interval")
|
6871
6279
|
|
@@ -6874,8 +6282,6 @@ class AzureIntegrationsMysql(dict):
|
|
6874
6282
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6875
6283
|
"""
|
6876
6284
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6877
|
-
|
6878
|
-
Other integration type support an additional argument:
|
6879
6285
|
"""
|
6880
6286
|
return pulumi.get(self, "resource_groups")
|
6881
6287
|
|
@@ -6905,10 +6311,8 @@ class AzureIntegrationsMysqlFlexible(dict):
|
|
6905
6311
|
metrics_polling_interval: Optional[int] = None,
|
6906
6312
|
resource_groups: Optional[Sequence[str]] = None):
|
6907
6313
|
"""
|
6908
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6314
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6909
6315
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6910
|
-
|
6911
|
-
Other integration type support an additional argument:
|
6912
6316
|
"""
|
6913
6317
|
if metrics_polling_interval is not None:
|
6914
6318
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6919,7 +6323,7 @@ class AzureIntegrationsMysqlFlexible(dict):
|
|
6919
6323
|
@pulumi.getter(name="metricsPollingInterval")
|
6920
6324
|
def metrics_polling_interval(self) -> Optional[int]:
|
6921
6325
|
"""
|
6922
|
-
The data polling interval in seconds
|
6326
|
+
The data polling interval in seconds
|
6923
6327
|
"""
|
6924
6328
|
return pulumi.get(self, "metrics_polling_interval")
|
6925
6329
|
|
@@ -6928,8 +6332,6 @@ class AzureIntegrationsMysqlFlexible(dict):
|
|
6928
6332
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6929
6333
|
"""
|
6930
6334
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6931
|
-
|
6932
|
-
Other integration type support an additional argument:
|
6933
6335
|
"""
|
6934
6336
|
return pulumi.get(self, "resource_groups")
|
6935
6337
|
|
@@ -6959,10 +6361,8 @@ class AzureIntegrationsPostgresql(dict):
|
|
6959
6361
|
metrics_polling_interval: Optional[int] = None,
|
6960
6362
|
resource_groups: Optional[Sequence[str]] = None):
|
6961
6363
|
"""
|
6962
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6364
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
6963
6365
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6964
|
-
|
6965
|
-
Other integration type support an additional argument:
|
6966
6366
|
"""
|
6967
6367
|
if metrics_polling_interval is not None:
|
6968
6368
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -6973,7 +6373,7 @@ class AzureIntegrationsPostgresql(dict):
|
|
6973
6373
|
@pulumi.getter(name="metricsPollingInterval")
|
6974
6374
|
def metrics_polling_interval(self) -> Optional[int]:
|
6975
6375
|
"""
|
6976
|
-
The data polling interval in seconds
|
6376
|
+
The data polling interval in seconds
|
6977
6377
|
"""
|
6978
6378
|
return pulumi.get(self, "metrics_polling_interval")
|
6979
6379
|
|
@@ -6982,8 +6382,6 @@ class AzureIntegrationsPostgresql(dict):
|
|
6982
6382
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
6983
6383
|
"""
|
6984
6384
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
6985
|
-
|
6986
|
-
Other integration type support an additional argument:
|
6987
6385
|
"""
|
6988
6386
|
return pulumi.get(self, "resource_groups")
|
6989
6387
|
|
@@ -7013,10 +6411,8 @@ class AzureIntegrationsPostgresqlFlexible(dict):
|
|
7013
6411
|
metrics_polling_interval: Optional[int] = None,
|
7014
6412
|
resource_groups: Optional[Sequence[str]] = None):
|
7015
6413
|
"""
|
7016
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6414
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7017
6415
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7018
|
-
|
7019
|
-
Other integration type support an additional argument:
|
7020
6416
|
"""
|
7021
6417
|
if metrics_polling_interval is not None:
|
7022
6418
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7027,7 +6423,7 @@ class AzureIntegrationsPostgresqlFlexible(dict):
|
|
7027
6423
|
@pulumi.getter(name="metricsPollingInterval")
|
7028
6424
|
def metrics_polling_interval(self) -> Optional[int]:
|
7029
6425
|
"""
|
7030
|
-
The data polling interval in seconds
|
6426
|
+
The data polling interval in seconds
|
7031
6427
|
"""
|
7032
6428
|
return pulumi.get(self, "metrics_polling_interval")
|
7033
6429
|
|
@@ -7036,8 +6432,6 @@ class AzureIntegrationsPostgresqlFlexible(dict):
|
|
7036
6432
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7037
6433
|
"""
|
7038
6434
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7039
|
-
|
7040
|
-
Other integration type support an additional argument:
|
7041
6435
|
"""
|
7042
6436
|
return pulumi.get(self, "resource_groups")
|
7043
6437
|
|
@@ -7067,10 +6461,8 @@ class AzureIntegrationsPowerBiDedicated(dict):
|
|
7067
6461
|
metrics_polling_interval: Optional[int] = None,
|
7068
6462
|
resource_groups: Optional[Sequence[str]] = None):
|
7069
6463
|
"""
|
7070
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6464
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7071
6465
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7072
|
-
|
7073
|
-
Other integration type support an additional argument:
|
7074
6466
|
"""
|
7075
6467
|
if metrics_polling_interval is not None:
|
7076
6468
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7081,7 +6473,7 @@ class AzureIntegrationsPowerBiDedicated(dict):
|
|
7081
6473
|
@pulumi.getter(name="metricsPollingInterval")
|
7082
6474
|
def metrics_polling_interval(self) -> Optional[int]:
|
7083
6475
|
"""
|
7084
|
-
The data polling interval in seconds
|
6476
|
+
The data polling interval in seconds
|
7085
6477
|
"""
|
7086
6478
|
return pulumi.get(self, "metrics_polling_interval")
|
7087
6479
|
|
@@ -7090,8 +6482,6 @@ class AzureIntegrationsPowerBiDedicated(dict):
|
|
7090
6482
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7091
6483
|
"""
|
7092
6484
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7093
|
-
|
7094
|
-
Other integration type support an additional argument:
|
7095
6485
|
"""
|
7096
6486
|
return pulumi.get(self, "resource_groups")
|
7097
6487
|
|
@@ -7121,10 +6511,8 @@ class AzureIntegrationsRedisCache(dict):
|
|
7121
6511
|
metrics_polling_interval: Optional[int] = None,
|
7122
6512
|
resource_groups: Optional[Sequence[str]] = None):
|
7123
6513
|
"""
|
7124
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6514
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7125
6515
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7126
|
-
|
7127
|
-
Other integration type support an additional argument:
|
7128
6516
|
"""
|
7129
6517
|
if metrics_polling_interval is not None:
|
7130
6518
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7135,7 +6523,7 @@ class AzureIntegrationsRedisCache(dict):
|
|
7135
6523
|
@pulumi.getter(name="metricsPollingInterval")
|
7136
6524
|
def metrics_polling_interval(self) -> Optional[int]:
|
7137
6525
|
"""
|
7138
|
-
The data polling interval in seconds
|
6526
|
+
The data polling interval in seconds
|
7139
6527
|
"""
|
7140
6528
|
return pulumi.get(self, "metrics_polling_interval")
|
7141
6529
|
|
@@ -7144,8 +6532,6 @@ class AzureIntegrationsRedisCache(dict):
|
|
7144
6532
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7145
6533
|
"""
|
7146
6534
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7147
|
-
|
7148
|
-
Other integration type support an additional argument:
|
7149
6535
|
"""
|
7150
6536
|
return pulumi.get(self, "resource_groups")
|
7151
6537
|
|
@@ -7175,10 +6561,8 @@ class AzureIntegrationsServiceBus(dict):
|
|
7175
6561
|
metrics_polling_interval: Optional[int] = None,
|
7176
6562
|
resource_groups: Optional[Sequence[str]] = None):
|
7177
6563
|
"""
|
7178
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6564
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7179
6565
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7180
|
-
|
7181
|
-
Other integration type support an additional argument:
|
7182
6566
|
"""
|
7183
6567
|
if metrics_polling_interval is not None:
|
7184
6568
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7189,7 +6573,7 @@ class AzureIntegrationsServiceBus(dict):
|
|
7189
6573
|
@pulumi.getter(name="metricsPollingInterval")
|
7190
6574
|
def metrics_polling_interval(self) -> Optional[int]:
|
7191
6575
|
"""
|
7192
|
-
The data polling interval in seconds
|
6576
|
+
The data polling interval in seconds
|
7193
6577
|
"""
|
7194
6578
|
return pulumi.get(self, "metrics_polling_interval")
|
7195
6579
|
|
@@ -7198,8 +6582,6 @@ class AzureIntegrationsServiceBus(dict):
|
|
7198
6582
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7199
6583
|
"""
|
7200
6584
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7201
|
-
|
7202
|
-
Other integration type support an additional argument:
|
7203
6585
|
"""
|
7204
6586
|
return pulumi.get(self, "resource_groups")
|
7205
6587
|
|
@@ -7229,10 +6611,8 @@ class AzureIntegrationsSql(dict):
|
|
7229
6611
|
metrics_polling_interval: Optional[int] = None,
|
7230
6612
|
resource_groups: Optional[Sequence[str]] = None):
|
7231
6613
|
"""
|
7232
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6614
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7233
6615
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7234
|
-
|
7235
|
-
Other integration type support an additional argument:
|
7236
6616
|
"""
|
7237
6617
|
if metrics_polling_interval is not None:
|
7238
6618
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7243,7 +6623,7 @@ class AzureIntegrationsSql(dict):
|
|
7243
6623
|
@pulumi.getter(name="metricsPollingInterval")
|
7244
6624
|
def metrics_polling_interval(self) -> Optional[int]:
|
7245
6625
|
"""
|
7246
|
-
The data polling interval in seconds
|
6626
|
+
The data polling interval in seconds
|
7247
6627
|
"""
|
7248
6628
|
return pulumi.get(self, "metrics_polling_interval")
|
7249
6629
|
|
@@ -7252,8 +6632,6 @@ class AzureIntegrationsSql(dict):
|
|
7252
6632
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7253
6633
|
"""
|
7254
6634
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7255
|
-
|
7256
|
-
Other integration type support an additional argument:
|
7257
6635
|
"""
|
7258
6636
|
return pulumi.get(self, "resource_groups")
|
7259
6637
|
|
@@ -7283,10 +6661,8 @@ class AzureIntegrationsSqlManaged(dict):
|
|
7283
6661
|
metrics_polling_interval: Optional[int] = None,
|
7284
6662
|
resource_groups: Optional[Sequence[str]] = None):
|
7285
6663
|
"""
|
7286
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6664
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7287
6665
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7288
|
-
|
7289
|
-
Other integration type support an additional argument:
|
7290
6666
|
"""
|
7291
6667
|
if metrics_polling_interval is not None:
|
7292
6668
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7297,7 +6673,7 @@ class AzureIntegrationsSqlManaged(dict):
|
|
7297
6673
|
@pulumi.getter(name="metricsPollingInterval")
|
7298
6674
|
def metrics_polling_interval(self) -> Optional[int]:
|
7299
6675
|
"""
|
7300
|
-
The data polling interval in seconds
|
6676
|
+
The data polling interval in seconds
|
7301
6677
|
"""
|
7302
6678
|
return pulumi.get(self, "metrics_polling_interval")
|
7303
6679
|
|
@@ -7306,8 +6682,6 @@ class AzureIntegrationsSqlManaged(dict):
|
|
7306
6682
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7307
6683
|
"""
|
7308
6684
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7309
|
-
|
7310
|
-
Other integration type support an additional argument:
|
7311
6685
|
"""
|
7312
6686
|
return pulumi.get(self, "resource_groups")
|
7313
6687
|
|
@@ -7337,10 +6711,8 @@ class AzureIntegrationsStorage(dict):
|
|
7337
6711
|
metrics_polling_interval: Optional[int] = None,
|
7338
6712
|
resource_groups: Optional[Sequence[str]] = None):
|
7339
6713
|
"""
|
7340
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6714
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7341
6715
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7342
|
-
|
7343
|
-
Other integration type support an additional argument:
|
7344
6716
|
"""
|
7345
6717
|
if metrics_polling_interval is not None:
|
7346
6718
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7351,7 +6723,7 @@ class AzureIntegrationsStorage(dict):
|
|
7351
6723
|
@pulumi.getter(name="metricsPollingInterval")
|
7352
6724
|
def metrics_polling_interval(self) -> Optional[int]:
|
7353
6725
|
"""
|
7354
|
-
The data polling interval in seconds
|
6726
|
+
The data polling interval in seconds
|
7355
6727
|
"""
|
7356
6728
|
return pulumi.get(self, "metrics_polling_interval")
|
7357
6729
|
|
@@ -7360,8 +6732,6 @@ class AzureIntegrationsStorage(dict):
|
|
7360
6732
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7361
6733
|
"""
|
7362
6734
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7363
|
-
|
7364
|
-
Other integration type support an additional argument:
|
7365
6735
|
"""
|
7366
6736
|
return pulumi.get(self, "resource_groups")
|
7367
6737
|
|
@@ -7391,10 +6761,8 @@ class AzureIntegrationsVirtualMachine(dict):
|
|
7391
6761
|
metrics_polling_interval: Optional[int] = None,
|
7392
6762
|
resource_groups: Optional[Sequence[str]] = None):
|
7393
6763
|
"""
|
7394
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6764
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7395
6765
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7396
|
-
|
7397
|
-
Other integration type support an additional argument:
|
7398
6766
|
"""
|
7399
6767
|
if metrics_polling_interval is not None:
|
7400
6768
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7405,7 +6773,7 @@ class AzureIntegrationsVirtualMachine(dict):
|
|
7405
6773
|
@pulumi.getter(name="metricsPollingInterval")
|
7406
6774
|
def metrics_polling_interval(self) -> Optional[int]:
|
7407
6775
|
"""
|
7408
|
-
The data polling interval in seconds
|
6776
|
+
The data polling interval in seconds
|
7409
6777
|
"""
|
7410
6778
|
return pulumi.get(self, "metrics_polling_interval")
|
7411
6779
|
|
@@ -7414,8 +6782,6 @@ class AzureIntegrationsVirtualMachine(dict):
|
|
7414
6782
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7415
6783
|
"""
|
7416
6784
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7417
|
-
|
7418
|
-
Other integration type support an additional argument:
|
7419
6785
|
"""
|
7420
6786
|
return pulumi.get(self, "resource_groups")
|
7421
6787
|
|
@@ -7445,10 +6811,8 @@ class AzureIntegrationsVirtualNetworks(dict):
|
|
7445
6811
|
metrics_polling_interval: Optional[int] = None,
|
7446
6812
|
resource_groups: Optional[Sequence[str]] = None):
|
7447
6813
|
"""
|
7448
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6814
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7449
6815
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7450
|
-
|
7451
|
-
Other integration type support an additional argument:
|
7452
6816
|
"""
|
7453
6817
|
if metrics_polling_interval is not None:
|
7454
6818
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7459,7 +6823,7 @@ class AzureIntegrationsVirtualNetworks(dict):
|
|
7459
6823
|
@pulumi.getter(name="metricsPollingInterval")
|
7460
6824
|
def metrics_polling_interval(self) -> Optional[int]:
|
7461
6825
|
"""
|
7462
|
-
The data polling interval in seconds
|
6826
|
+
The data polling interval in seconds
|
7463
6827
|
"""
|
7464
6828
|
return pulumi.get(self, "metrics_polling_interval")
|
7465
6829
|
|
@@ -7468,8 +6832,6 @@ class AzureIntegrationsVirtualNetworks(dict):
|
|
7468
6832
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7469
6833
|
"""
|
7470
6834
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7471
|
-
|
7472
|
-
Other integration type support an additional argument:
|
7473
6835
|
"""
|
7474
6836
|
return pulumi.get(self, "resource_groups")
|
7475
6837
|
|
@@ -7499,10 +6861,8 @@ class AzureIntegrationsVms(dict):
|
|
7499
6861
|
metrics_polling_interval: Optional[int] = None,
|
7500
6862
|
resource_groups: Optional[Sequence[str]] = None):
|
7501
6863
|
"""
|
7502
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6864
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7503
6865
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7504
|
-
|
7505
|
-
Other integration type support an additional argument:
|
7506
6866
|
"""
|
7507
6867
|
if metrics_polling_interval is not None:
|
7508
6868
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7513,7 +6873,7 @@ class AzureIntegrationsVms(dict):
|
|
7513
6873
|
@pulumi.getter(name="metricsPollingInterval")
|
7514
6874
|
def metrics_polling_interval(self) -> Optional[int]:
|
7515
6875
|
"""
|
7516
|
-
The data polling interval in seconds
|
6876
|
+
The data polling interval in seconds
|
7517
6877
|
"""
|
7518
6878
|
return pulumi.get(self, "metrics_polling_interval")
|
7519
6879
|
|
@@ -7522,8 +6882,6 @@ class AzureIntegrationsVms(dict):
|
|
7522
6882
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7523
6883
|
"""
|
7524
6884
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7525
|
-
|
7526
|
-
Other integration type support an additional argument:
|
7527
6885
|
"""
|
7528
6886
|
return pulumi.get(self, "resource_groups")
|
7529
6887
|
|
@@ -7553,10 +6911,8 @@ class AzureIntegrationsVpnGateway(dict):
|
|
7553
6911
|
metrics_polling_interval: Optional[int] = None,
|
7554
6912
|
resource_groups: Optional[Sequence[str]] = None):
|
7555
6913
|
"""
|
7556
|
-
:param int metrics_polling_interval: The data polling interval in seconds
|
6914
|
+
:param int metrics_polling_interval: The data polling interval in seconds
|
7557
6915
|
:param Sequence[str] resource_groups: Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7558
|
-
|
7559
|
-
Other integration type support an additional argument:
|
7560
6916
|
"""
|
7561
6917
|
if metrics_polling_interval is not None:
|
7562
6918
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7567,7 +6923,7 @@ class AzureIntegrationsVpnGateway(dict):
|
|
7567
6923
|
@pulumi.getter(name="metricsPollingInterval")
|
7568
6924
|
def metrics_polling_interval(self) -> Optional[int]:
|
7569
6925
|
"""
|
7570
|
-
The data polling interval in seconds
|
6926
|
+
The data polling interval in seconds
|
7571
6927
|
"""
|
7572
6928
|
return pulumi.get(self, "metrics_polling_interval")
|
7573
6929
|
|
@@ -7576,8 +6932,6 @@ class AzureIntegrationsVpnGateway(dict):
|
|
7576
6932
|
def resource_groups(self) -> Optional[Sequence[str]]:
|
7577
6933
|
"""
|
7578
6934
|
Specify each Resource group associated with the resources that you want to monitor. Filter values are case-sensitive
|
7579
|
-
|
7580
|
-
Other integration type support an additional argument:
|
7581
6935
|
"""
|
7582
6936
|
return pulumi.get(self, "resource_groups")
|
7583
6937
|
|
@@ -7604,9 +6958,7 @@ class GcpIntegrationsAlloyDb(dict):
|
|
7604
6958
|
def __init__(__self__, *,
|
7605
6959
|
metrics_polling_interval: Optional[int] = None):
|
7606
6960
|
"""
|
7607
|
-
:param int metrics_polling_interval:
|
7608
|
-
|
7609
|
-
Other integration supports an additional argument:
|
6961
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7610
6962
|
"""
|
7611
6963
|
if metrics_polling_interval is not None:
|
7612
6964
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7615,9 +6967,7 @@ class GcpIntegrationsAlloyDb(dict):
|
|
7615
6967
|
@pulumi.getter(name="metricsPollingInterval")
|
7616
6968
|
def metrics_polling_interval(self) -> Optional[int]:
|
7617
6969
|
"""
|
7618
|
-
|
7619
|
-
|
7620
|
-
Other integration supports an additional argument:
|
6970
|
+
the data polling interval in seconds
|
7621
6971
|
"""
|
7622
6972
|
return pulumi.get(self, "metrics_polling_interval")
|
7623
6973
|
|
@@ -7644,9 +6994,7 @@ class GcpIntegrationsAppEngine(dict):
|
|
7644
6994
|
def __init__(__self__, *,
|
7645
6995
|
metrics_polling_interval: Optional[int] = None):
|
7646
6996
|
"""
|
7647
|
-
:param int metrics_polling_interval:
|
7648
|
-
|
7649
|
-
Other integration supports an additional argument:
|
6997
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7650
6998
|
"""
|
7651
6999
|
if metrics_polling_interval is not None:
|
7652
7000
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7655,9 +7003,7 @@ class GcpIntegrationsAppEngine(dict):
|
|
7655
7003
|
@pulumi.getter(name="metricsPollingInterval")
|
7656
7004
|
def metrics_polling_interval(self) -> Optional[int]:
|
7657
7005
|
"""
|
7658
|
-
|
7659
|
-
|
7660
|
-
Other integration supports an additional argument:
|
7006
|
+
the data polling interval in seconds
|
7661
7007
|
"""
|
7662
7008
|
return pulumi.get(self, "metrics_polling_interval")
|
7663
7009
|
|
@@ -7687,10 +7033,8 @@ class GcpIntegrationsBigQuery(dict):
|
|
7687
7033
|
fetch_tags: Optional[bool] = None,
|
7688
7034
|
metrics_polling_interval: Optional[int] = None):
|
7689
7035
|
"""
|
7690
|
-
:param bool fetch_tags:
|
7691
|
-
:param int metrics_polling_interval:
|
7692
|
-
|
7693
|
-
Other integration supports an additional argument:
|
7036
|
+
:param bool fetch_tags: to fetch tags of the resource
|
7037
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7694
7038
|
"""
|
7695
7039
|
if fetch_tags is not None:
|
7696
7040
|
pulumi.set(__self__, "fetch_tags", fetch_tags)
|
@@ -7701,7 +7045,7 @@ class GcpIntegrationsBigQuery(dict):
|
|
7701
7045
|
@pulumi.getter(name="fetchTags")
|
7702
7046
|
def fetch_tags(self) -> Optional[bool]:
|
7703
7047
|
"""
|
7704
|
-
|
7048
|
+
to fetch tags of the resource
|
7705
7049
|
"""
|
7706
7050
|
return pulumi.get(self, "fetch_tags")
|
7707
7051
|
|
@@ -7709,9 +7053,7 @@ class GcpIntegrationsBigQuery(dict):
|
|
7709
7053
|
@pulumi.getter(name="metricsPollingInterval")
|
7710
7054
|
def metrics_polling_interval(self) -> Optional[int]:
|
7711
7055
|
"""
|
7712
|
-
|
7713
|
-
|
7714
|
-
Other integration supports an additional argument:
|
7056
|
+
the data polling interval in seconds
|
7715
7057
|
"""
|
7716
7058
|
return pulumi.get(self, "metrics_polling_interval")
|
7717
7059
|
|
@@ -7738,9 +7080,7 @@ class GcpIntegrationsBigTable(dict):
|
|
7738
7080
|
def __init__(__self__, *,
|
7739
7081
|
metrics_polling_interval: Optional[int] = None):
|
7740
7082
|
"""
|
7741
|
-
:param int metrics_polling_interval:
|
7742
|
-
|
7743
|
-
Other integration supports an additional argument:
|
7083
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7744
7084
|
"""
|
7745
7085
|
if metrics_polling_interval is not None:
|
7746
7086
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7749,9 +7089,7 @@ class GcpIntegrationsBigTable(dict):
|
|
7749
7089
|
@pulumi.getter(name="metricsPollingInterval")
|
7750
7090
|
def metrics_polling_interval(self) -> Optional[int]:
|
7751
7091
|
"""
|
7752
|
-
|
7753
|
-
|
7754
|
-
Other integration supports an additional argument:
|
7092
|
+
the data polling interval in seconds
|
7755
7093
|
"""
|
7756
7094
|
return pulumi.get(self, "metrics_polling_interval")
|
7757
7095
|
|
@@ -7778,9 +7116,7 @@ class GcpIntegrationsComposer(dict):
|
|
7778
7116
|
def __init__(__self__, *,
|
7779
7117
|
metrics_polling_interval: Optional[int] = None):
|
7780
7118
|
"""
|
7781
|
-
:param int metrics_polling_interval:
|
7782
|
-
|
7783
|
-
Other integration supports an additional argument:
|
7119
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7784
7120
|
"""
|
7785
7121
|
if metrics_polling_interval is not None:
|
7786
7122
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7789,9 +7125,7 @@ class GcpIntegrationsComposer(dict):
|
|
7789
7125
|
@pulumi.getter(name="metricsPollingInterval")
|
7790
7126
|
def metrics_polling_interval(self) -> Optional[int]:
|
7791
7127
|
"""
|
7792
|
-
|
7793
|
-
|
7794
|
-
Other integration supports an additional argument:
|
7128
|
+
the data polling interval in seconds
|
7795
7129
|
"""
|
7796
7130
|
return pulumi.get(self, "metrics_polling_interval")
|
7797
7131
|
|
@@ -7818,9 +7152,7 @@ class GcpIntegrationsDataFlow(dict):
|
|
7818
7152
|
def __init__(__self__, *,
|
7819
7153
|
metrics_polling_interval: Optional[int] = None):
|
7820
7154
|
"""
|
7821
|
-
:param int metrics_polling_interval:
|
7822
|
-
|
7823
|
-
Other integration supports an additional argument:
|
7155
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7824
7156
|
"""
|
7825
7157
|
if metrics_polling_interval is not None:
|
7826
7158
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7829,9 +7161,7 @@ class GcpIntegrationsDataFlow(dict):
|
|
7829
7161
|
@pulumi.getter(name="metricsPollingInterval")
|
7830
7162
|
def metrics_polling_interval(self) -> Optional[int]:
|
7831
7163
|
"""
|
7832
|
-
|
7833
|
-
|
7834
|
-
Other integration supports an additional argument:
|
7164
|
+
the data polling interval in seconds
|
7835
7165
|
"""
|
7836
7166
|
return pulumi.get(self, "metrics_polling_interval")
|
7837
7167
|
|
@@ -7858,9 +7188,7 @@ class GcpIntegrationsDataProc(dict):
|
|
7858
7188
|
def __init__(__self__, *,
|
7859
7189
|
metrics_polling_interval: Optional[int] = None):
|
7860
7190
|
"""
|
7861
|
-
:param int metrics_polling_interval:
|
7862
|
-
|
7863
|
-
Other integration supports an additional argument:
|
7191
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7864
7192
|
"""
|
7865
7193
|
if metrics_polling_interval is not None:
|
7866
7194
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7869,9 +7197,7 @@ class GcpIntegrationsDataProc(dict):
|
|
7869
7197
|
@pulumi.getter(name="metricsPollingInterval")
|
7870
7198
|
def metrics_polling_interval(self) -> Optional[int]:
|
7871
7199
|
"""
|
7872
|
-
|
7873
|
-
|
7874
|
-
Other integration supports an additional argument:
|
7200
|
+
the data polling interval in seconds
|
7875
7201
|
"""
|
7876
7202
|
return pulumi.get(self, "metrics_polling_interval")
|
7877
7203
|
|
@@ -7898,9 +7224,7 @@ class GcpIntegrationsDataStore(dict):
|
|
7898
7224
|
def __init__(__self__, *,
|
7899
7225
|
metrics_polling_interval: Optional[int] = None):
|
7900
7226
|
"""
|
7901
|
-
:param int metrics_polling_interval:
|
7902
|
-
|
7903
|
-
Other integration supports an additional argument:
|
7227
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7904
7228
|
"""
|
7905
7229
|
if metrics_polling_interval is not None:
|
7906
7230
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7909,9 +7233,7 @@ class GcpIntegrationsDataStore(dict):
|
|
7909
7233
|
@pulumi.getter(name="metricsPollingInterval")
|
7910
7234
|
def metrics_polling_interval(self) -> Optional[int]:
|
7911
7235
|
"""
|
7912
|
-
|
7913
|
-
|
7914
|
-
Other integration supports an additional argument:
|
7236
|
+
the data polling interval in seconds
|
7915
7237
|
"""
|
7916
7238
|
return pulumi.get(self, "metrics_polling_interval")
|
7917
7239
|
|
@@ -7938,9 +7260,7 @@ class GcpIntegrationsFireBaseDatabase(dict):
|
|
7938
7260
|
def __init__(__self__, *,
|
7939
7261
|
metrics_polling_interval: Optional[int] = None):
|
7940
7262
|
"""
|
7941
|
-
:param int metrics_polling_interval:
|
7942
|
-
|
7943
|
-
Other integration supports an additional argument:
|
7263
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7944
7264
|
"""
|
7945
7265
|
if metrics_polling_interval is not None:
|
7946
7266
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7949,9 +7269,7 @@ class GcpIntegrationsFireBaseDatabase(dict):
|
|
7949
7269
|
@pulumi.getter(name="metricsPollingInterval")
|
7950
7270
|
def metrics_polling_interval(self) -> Optional[int]:
|
7951
7271
|
"""
|
7952
|
-
|
7953
|
-
|
7954
|
-
Other integration supports an additional argument:
|
7272
|
+
the data polling interval in seconds
|
7955
7273
|
"""
|
7956
7274
|
return pulumi.get(self, "metrics_polling_interval")
|
7957
7275
|
|
@@ -7978,9 +7296,7 @@ class GcpIntegrationsFireBaseHosting(dict):
|
|
7978
7296
|
def __init__(__self__, *,
|
7979
7297
|
metrics_polling_interval: Optional[int] = None):
|
7980
7298
|
"""
|
7981
|
-
:param int metrics_polling_interval:
|
7982
|
-
|
7983
|
-
Other integration supports an additional argument:
|
7299
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
7984
7300
|
"""
|
7985
7301
|
if metrics_polling_interval is not None:
|
7986
7302
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -7989,9 +7305,7 @@ class GcpIntegrationsFireBaseHosting(dict):
|
|
7989
7305
|
@pulumi.getter(name="metricsPollingInterval")
|
7990
7306
|
def metrics_polling_interval(self) -> Optional[int]:
|
7991
7307
|
"""
|
7992
|
-
|
7993
|
-
|
7994
|
-
Other integration supports an additional argument:
|
7308
|
+
the data polling interval in seconds
|
7995
7309
|
"""
|
7996
7310
|
return pulumi.get(self, "metrics_polling_interval")
|
7997
7311
|
|
@@ -8018,9 +7332,7 @@ class GcpIntegrationsFireBaseStorage(dict):
|
|
8018
7332
|
def __init__(__self__, *,
|
8019
7333
|
metrics_polling_interval: Optional[int] = None):
|
8020
7334
|
"""
|
8021
|
-
:param int metrics_polling_interval:
|
8022
|
-
|
8023
|
-
Other integration supports an additional argument:
|
7335
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8024
7336
|
"""
|
8025
7337
|
if metrics_polling_interval is not None:
|
8026
7338
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8029,9 +7341,7 @@ class GcpIntegrationsFireBaseStorage(dict):
|
|
8029
7341
|
@pulumi.getter(name="metricsPollingInterval")
|
8030
7342
|
def metrics_polling_interval(self) -> Optional[int]:
|
8031
7343
|
"""
|
8032
|
-
|
8033
|
-
|
8034
|
-
Other integration supports an additional argument:
|
7344
|
+
the data polling interval in seconds
|
8035
7345
|
"""
|
8036
7346
|
return pulumi.get(self, "metrics_polling_interval")
|
8037
7347
|
|
@@ -8058,9 +7368,7 @@ class GcpIntegrationsFireStore(dict):
|
|
8058
7368
|
def __init__(__self__, *,
|
8059
7369
|
metrics_polling_interval: Optional[int] = None):
|
8060
7370
|
"""
|
8061
|
-
:param int metrics_polling_interval:
|
8062
|
-
|
8063
|
-
Other integration supports an additional argument:
|
7371
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8064
7372
|
"""
|
8065
7373
|
if metrics_polling_interval is not None:
|
8066
7374
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8069,9 +7377,7 @@ class GcpIntegrationsFireStore(dict):
|
|
8069
7377
|
@pulumi.getter(name="metricsPollingInterval")
|
8070
7378
|
def metrics_polling_interval(self) -> Optional[int]:
|
8071
7379
|
"""
|
8072
|
-
|
8073
|
-
|
8074
|
-
Other integration supports an additional argument:
|
7380
|
+
the data polling interval in seconds
|
8075
7381
|
"""
|
8076
7382
|
return pulumi.get(self, "metrics_polling_interval")
|
8077
7383
|
|
@@ -8098,9 +7404,7 @@ class GcpIntegrationsFunctions(dict):
|
|
8098
7404
|
def __init__(__self__, *,
|
8099
7405
|
metrics_polling_interval: Optional[int] = None):
|
8100
7406
|
"""
|
8101
|
-
:param int metrics_polling_interval:
|
8102
|
-
|
8103
|
-
Other integration supports an additional argument:
|
7407
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8104
7408
|
"""
|
8105
7409
|
if metrics_polling_interval is not None:
|
8106
7410
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8109,9 +7413,7 @@ class GcpIntegrationsFunctions(dict):
|
|
8109
7413
|
@pulumi.getter(name="metricsPollingInterval")
|
8110
7414
|
def metrics_polling_interval(self) -> Optional[int]:
|
8111
7415
|
"""
|
8112
|
-
|
8113
|
-
|
8114
|
-
Other integration supports an additional argument:
|
7416
|
+
the data polling interval in seconds
|
8115
7417
|
"""
|
8116
7418
|
return pulumi.get(self, "metrics_polling_interval")
|
8117
7419
|
|
@@ -8138,9 +7440,7 @@ class GcpIntegrationsInterconnect(dict):
|
|
8138
7440
|
def __init__(__self__, *,
|
8139
7441
|
metrics_polling_interval: Optional[int] = None):
|
8140
7442
|
"""
|
8141
|
-
:param int metrics_polling_interval:
|
8142
|
-
|
8143
|
-
Other integration supports an additional argument:
|
7443
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8144
7444
|
"""
|
8145
7445
|
if metrics_polling_interval is not None:
|
8146
7446
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8149,9 +7449,7 @@ class GcpIntegrationsInterconnect(dict):
|
|
8149
7449
|
@pulumi.getter(name="metricsPollingInterval")
|
8150
7450
|
def metrics_polling_interval(self) -> Optional[int]:
|
8151
7451
|
"""
|
8152
|
-
|
8153
|
-
|
8154
|
-
Other integration supports an additional argument:
|
7452
|
+
the data polling interval in seconds
|
8155
7453
|
"""
|
8156
7454
|
return pulumi.get(self, "metrics_polling_interval")
|
8157
7455
|
|
@@ -8178,9 +7476,7 @@ class GcpIntegrationsKubernetes(dict):
|
|
8178
7476
|
def __init__(__self__, *,
|
8179
7477
|
metrics_polling_interval: Optional[int] = None):
|
8180
7478
|
"""
|
8181
|
-
:param int metrics_polling_interval:
|
8182
|
-
|
8183
|
-
Other integration supports an additional argument:
|
7479
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8184
7480
|
"""
|
8185
7481
|
if metrics_polling_interval is not None:
|
8186
7482
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8189,9 +7485,7 @@ class GcpIntegrationsKubernetes(dict):
|
|
8189
7485
|
@pulumi.getter(name="metricsPollingInterval")
|
8190
7486
|
def metrics_polling_interval(self) -> Optional[int]:
|
8191
7487
|
"""
|
8192
|
-
|
8193
|
-
|
8194
|
-
Other integration supports an additional argument:
|
7488
|
+
the data polling interval in seconds
|
8195
7489
|
"""
|
8196
7490
|
return pulumi.get(self, "metrics_polling_interval")
|
8197
7491
|
|
@@ -8218,9 +7512,7 @@ class GcpIntegrationsLoadBalancing(dict):
|
|
8218
7512
|
def __init__(__self__, *,
|
8219
7513
|
metrics_polling_interval: Optional[int] = None):
|
8220
7514
|
"""
|
8221
|
-
:param int metrics_polling_interval:
|
8222
|
-
|
8223
|
-
Other integration supports an additional argument:
|
7515
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8224
7516
|
"""
|
8225
7517
|
if metrics_polling_interval is not None:
|
8226
7518
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8229,9 +7521,7 @@ class GcpIntegrationsLoadBalancing(dict):
|
|
8229
7521
|
@pulumi.getter(name="metricsPollingInterval")
|
8230
7522
|
def metrics_polling_interval(self) -> Optional[int]:
|
8231
7523
|
"""
|
8232
|
-
|
8233
|
-
|
8234
|
-
Other integration supports an additional argument:
|
7524
|
+
the data polling interval in seconds
|
8235
7525
|
"""
|
8236
7526
|
return pulumi.get(self, "metrics_polling_interval")
|
8237
7527
|
|
@@ -8258,9 +7548,7 @@ class GcpIntegrationsMemCache(dict):
|
|
8258
7548
|
def __init__(__self__, *,
|
8259
7549
|
metrics_polling_interval: Optional[int] = None):
|
8260
7550
|
"""
|
8261
|
-
:param int metrics_polling_interval:
|
8262
|
-
|
8263
|
-
Other integration supports an additional argument:
|
7551
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8264
7552
|
"""
|
8265
7553
|
if metrics_polling_interval is not None:
|
8266
7554
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8269,9 +7557,7 @@ class GcpIntegrationsMemCache(dict):
|
|
8269
7557
|
@pulumi.getter(name="metricsPollingInterval")
|
8270
7558
|
def metrics_polling_interval(self) -> Optional[int]:
|
8271
7559
|
"""
|
8272
|
-
|
8273
|
-
|
8274
|
-
Other integration supports an additional argument:
|
7560
|
+
the data polling interval in seconds
|
8275
7561
|
"""
|
8276
7562
|
return pulumi.get(self, "metrics_polling_interval")
|
8277
7563
|
|
@@ -8301,10 +7587,8 @@ class GcpIntegrationsPubSub(dict):
|
|
8301
7587
|
fetch_tags: Optional[bool] = None,
|
8302
7588
|
metrics_polling_interval: Optional[int] = None):
|
8303
7589
|
"""
|
8304
|
-
:param bool fetch_tags:
|
8305
|
-
:param int metrics_polling_interval:
|
8306
|
-
|
8307
|
-
Other integration supports an additional argument:
|
7590
|
+
:param bool fetch_tags: to fetch tags of the resource
|
7591
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8308
7592
|
"""
|
8309
7593
|
if fetch_tags is not None:
|
8310
7594
|
pulumi.set(__self__, "fetch_tags", fetch_tags)
|
@@ -8315,7 +7599,7 @@ class GcpIntegrationsPubSub(dict):
|
|
8315
7599
|
@pulumi.getter(name="fetchTags")
|
8316
7600
|
def fetch_tags(self) -> Optional[bool]:
|
8317
7601
|
"""
|
8318
|
-
|
7602
|
+
to fetch tags of the resource
|
8319
7603
|
"""
|
8320
7604
|
return pulumi.get(self, "fetch_tags")
|
8321
7605
|
|
@@ -8323,9 +7607,7 @@ class GcpIntegrationsPubSub(dict):
|
|
8323
7607
|
@pulumi.getter(name="metricsPollingInterval")
|
8324
7608
|
def metrics_polling_interval(self) -> Optional[int]:
|
8325
7609
|
"""
|
8326
|
-
|
8327
|
-
|
8328
|
-
Other integration supports an additional argument:
|
7610
|
+
the data polling interval in seconds
|
8329
7611
|
"""
|
8330
7612
|
return pulumi.get(self, "metrics_polling_interval")
|
8331
7613
|
|
@@ -8352,9 +7634,7 @@ class GcpIntegrationsRedis(dict):
|
|
8352
7634
|
def __init__(__self__, *,
|
8353
7635
|
metrics_polling_interval: Optional[int] = None):
|
8354
7636
|
"""
|
8355
|
-
:param int metrics_polling_interval:
|
8356
|
-
|
8357
|
-
Other integration supports an additional argument:
|
7637
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8358
7638
|
"""
|
8359
7639
|
if metrics_polling_interval is not None:
|
8360
7640
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8363,9 +7643,7 @@ class GcpIntegrationsRedis(dict):
|
|
8363
7643
|
@pulumi.getter(name="metricsPollingInterval")
|
8364
7644
|
def metrics_polling_interval(self) -> Optional[int]:
|
8365
7645
|
"""
|
8366
|
-
|
8367
|
-
|
8368
|
-
Other integration supports an additional argument:
|
7646
|
+
the data polling interval in seconds
|
8369
7647
|
"""
|
8370
7648
|
return pulumi.get(self, "metrics_polling_interval")
|
8371
7649
|
|
@@ -8392,9 +7670,7 @@ class GcpIntegrationsRouter(dict):
|
|
8392
7670
|
def __init__(__self__, *,
|
8393
7671
|
metrics_polling_interval: Optional[int] = None):
|
8394
7672
|
"""
|
8395
|
-
:param int metrics_polling_interval:
|
8396
|
-
|
8397
|
-
Other integration supports an additional argument:
|
7673
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8398
7674
|
"""
|
8399
7675
|
if metrics_polling_interval is not None:
|
8400
7676
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8403,9 +7679,7 @@ class GcpIntegrationsRouter(dict):
|
|
8403
7679
|
@pulumi.getter(name="metricsPollingInterval")
|
8404
7680
|
def metrics_polling_interval(self) -> Optional[int]:
|
8405
7681
|
"""
|
8406
|
-
|
8407
|
-
|
8408
|
-
Other integration supports an additional argument:
|
7682
|
+
the data polling interval in seconds
|
8409
7683
|
"""
|
8410
7684
|
return pulumi.get(self, "metrics_polling_interval")
|
8411
7685
|
|
@@ -8432,9 +7706,7 @@ class GcpIntegrationsRun(dict):
|
|
8432
7706
|
def __init__(__self__, *,
|
8433
7707
|
metrics_polling_interval: Optional[int] = None):
|
8434
7708
|
"""
|
8435
|
-
:param int metrics_polling_interval:
|
8436
|
-
|
8437
|
-
Other integration supports an additional argument:
|
7709
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8438
7710
|
"""
|
8439
7711
|
if metrics_polling_interval is not None:
|
8440
7712
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8443,9 +7715,7 @@ class GcpIntegrationsRun(dict):
|
|
8443
7715
|
@pulumi.getter(name="metricsPollingInterval")
|
8444
7716
|
def metrics_polling_interval(self) -> Optional[int]:
|
8445
7717
|
"""
|
8446
|
-
|
8447
|
-
|
8448
|
-
Other integration supports an additional argument:
|
7718
|
+
the data polling interval in seconds
|
8449
7719
|
"""
|
8450
7720
|
return pulumi.get(self, "metrics_polling_interval")
|
8451
7721
|
|
@@ -8475,10 +7745,8 @@ class GcpIntegrationsSpanner(dict):
|
|
8475
7745
|
fetch_tags: Optional[bool] = None,
|
8476
7746
|
metrics_polling_interval: Optional[int] = None):
|
8477
7747
|
"""
|
8478
|
-
:param bool fetch_tags:
|
8479
|
-
:param int metrics_polling_interval:
|
8480
|
-
|
8481
|
-
Other integration supports an additional argument:
|
7748
|
+
:param bool fetch_tags: to fetch tags of the resource
|
7749
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8482
7750
|
"""
|
8483
7751
|
if fetch_tags is not None:
|
8484
7752
|
pulumi.set(__self__, "fetch_tags", fetch_tags)
|
@@ -8489,7 +7757,7 @@ class GcpIntegrationsSpanner(dict):
|
|
8489
7757
|
@pulumi.getter(name="fetchTags")
|
8490
7758
|
def fetch_tags(self) -> Optional[bool]:
|
8491
7759
|
"""
|
8492
|
-
|
7760
|
+
to fetch tags of the resource
|
8493
7761
|
"""
|
8494
7762
|
return pulumi.get(self, "fetch_tags")
|
8495
7763
|
|
@@ -8497,9 +7765,7 @@ class GcpIntegrationsSpanner(dict):
|
|
8497
7765
|
@pulumi.getter(name="metricsPollingInterval")
|
8498
7766
|
def metrics_polling_interval(self) -> Optional[int]:
|
8499
7767
|
"""
|
8500
|
-
|
8501
|
-
|
8502
|
-
Other integration supports an additional argument:
|
7768
|
+
the data polling interval in seconds
|
8503
7769
|
"""
|
8504
7770
|
return pulumi.get(self, "metrics_polling_interval")
|
8505
7771
|
|
@@ -8526,9 +7792,7 @@ class GcpIntegrationsSql(dict):
|
|
8526
7792
|
def __init__(__self__, *,
|
8527
7793
|
metrics_polling_interval: Optional[int] = None):
|
8528
7794
|
"""
|
8529
|
-
:param int metrics_polling_interval:
|
8530
|
-
|
8531
|
-
Other integration supports an additional argument:
|
7795
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8532
7796
|
"""
|
8533
7797
|
if metrics_polling_interval is not None:
|
8534
7798
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8537,9 +7801,7 @@ class GcpIntegrationsSql(dict):
|
|
8537
7801
|
@pulumi.getter(name="metricsPollingInterval")
|
8538
7802
|
def metrics_polling_interval(self) -> Optional[int]:
|
8539
7803
|
"""
|
8540
|
-
|
8541
|
-
|
8542
|
-
Other integration supports an additional argument:
|
7804
|
+
the data polling interval in seconds
|
8543
7805
|
"""
|
8544
7806
|
return pulumi.get(self, "metrics_polling_interval")
|
8545
7807
|
|
@@ -8569,10 +7831,8 @@ class GcpIntegrationsStorage(dict):
|
|
8569
7831
|
fetch_tags: Optional[bool] = None,
|
8570
7832
|
metrics_polling_interval: Optional[int] = None):
|
8571
7833
|
"""
|
8572
|
-
:param bool fetch_tags:
|
8573
|
-
:param int metrics_polling_interval:
|
8574
|
-
|
8575
|
-
Other integration supports an additional argument:
|
7834
|
+
:param bool fetch_tags: to fetch tags of the resource
|
7835
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8576
7836
|
"""
|
8577
7837
|
if fetch_tags is not None:
|
8578
7838
|
pulumi.set(__self__, "fetch_tags", fetch_tags)
|
@@ -8583,7 +7843,7 @@ class GcpIntegrationsStorage(dict):
|
|
8583
7843
|
@pulumi.getter(name="fetchTags")
|
8584
7844
|
def fetch_tags(self) -> Optional[bool]:
|
8585
7845
|
"""
|
8586
|
-
|
7846
|
+
to fetch tags of the resource
|
8587
7847
|
"""
|
8588
7848
|
return pulumi.get(self, "fetch_tags")
|
8589
7849
|
|
@@ -8591,9 +7851,7 @@ class GcpIntegrationsStorage(dict):
|
|
8591
7851
|
@pulumi.getter(name="metricsPollingInterval")
|
8592
7852
|
def metrics_polling_interval(self) -> Optional[int]:
|
8593
7853
|
"""
|
8594
|
-
|
8595
|
-
|
8596
|
-
Other integration supports an additional argument:
|
7854
|
+
the data polling interval in seconds
|
8597
7855
|
"""
|
8598
7856
|
return pulumi.get(self, "metrics_polling_interval")
|
8599
7857
|
|
@@ -8620,9 +7878,7 @@ class GcpIntegrationsVirtualMachines(dict):
|
|
8620
7878
|
def __init__(__self__, *,
|
8621
7879
|
metrics_polling_interval: Optional[int] = None):
|
8622
7880
|
"""
|
8623
|
-
:param int metrics_polling_interval:
|
8624
|
-
|
8625
|
-
Other integration supports an additional argument:
|
7881
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8626
7882
|
"""
|
8627
7883
|
if metrics_polling_interval is not None:
|
8628
7884
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8631,9 +7887,7 @@ class GcpIntegrationsVirtualMachines(dict):
|
|
8631
7887
|
@pulumi.getter(name="metricsPollingInterval")
|
8632
7888
|
def metrics_polling_interval(self) -> Optional[int]:
|
8633
7889
|
"""
|
8634
|
-
|
8635
|
-
|
8636
|
-
Other integration supports an additional argument:
|
7890
|
+
the data polling interval in seconds
|
8637
7891
|
"""
|
8638
7892
|
return pulumi.get(self, "metrics_polling_interval")
|
8639
7893
|
|
@@ -8660,9 +7914,7 @@ class GcpIntegrationsVpcAccess(dict):
|
|
8660
7914
|
def __init__(__self__, *,
|
8661
7915
|
metrics_polling_interval: Optional[int] = None):
|
8662
7916
|
"""
|
8663
|
-
:param int metrics_polling_interval:
|
8664
|
-
|
8665
|
-
Other integration supports an additional argument:
|
7917
|
+
:param int metrics_polling_interval: the data polling interval in seconds
|
8666
7918
|
"""
|
8667
7919
|
if metrics_polling_interval is not None:
|
8668
7920
|
pulumi.set(__self__, "metrics_polling_interval", metrics_polling_interval)
|
@@ -8671,9 +7923,7 @@ class GcpIntegrationsVpcAccess(dict):
|
|
8671
7923
|
@pulumi.getter(name="metricsPollingInterval")
|
8672
7924
|
def metrics_polling_interval(self) -> Optional[int]:
|
8673
7925
|
"""
|
8674
|
-
|
8675
|
-
|
8676
|
-
Other integration supports an additional argument:
|
7926
|
+
the data polling interval in seconds
|
8677
7927
|
"""
|
8678
7928
|
return pulumi.get(self, "metrics_polling_interval")
|
8679
7929
|
|