pulumi-signalfx 7.7.0a1737526929__py3-none-any.whl → 7.7.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ class IntegrationArgs:
24
24
  enabled: pulumi.Input[bool],
25
25
  integration_id: pulumi.Input[str],
26
26
  regions: pulumi.Input[Sequence[pulumi.Input[str]]],
27
+ collect_only_recommended_stats: Optional[pulumi.Input[bool]] = None,
27
28
  custom_cloudwatch_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
28
29
  custom_namespace_sync_rules: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespaceSyncRuleArgs']]]] = None,
29
30
  enable_aws_usage: Optional[pulumi.Input[bool]] = None,
@@ -46,6 +47,7 @@ class IntegrationArgs:
46
47
  :param pulumi.Input[bool] enabled: Whether the integration is enabled.
47
48
  :param pulumi.Input[str] integration_id: The id of one of a `aws.ExternalIntegration` or `aws.TokenIntegration`.
48
49
  :param pulumi.Input[Sequence[pulumi.Input[str]]] regions: List of AWS regions that Splunk Observability Cloud should monitor. It cannot be empty.
50
+ :param pulumi.Input[bool] collect_only_recommended_stats: Indicates that Splunk Observability should only sync recommended statistics
49
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
50
52
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespaceSyncRuleArgs']]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
51
53
  :param pulumi.Input[bool] enable_aws_usage: Flag that controls how Splunk Observability Cloud imports usage metrics from AWS to use with AWS Cost Optimizer. If `true`, Splunk Observability Cloud imports the metrics.
@@ -69,6 +71,8 @@ class IntegrationArgs:
69
71
  pulumi.set(__self__, "enabled", enabled)
70
72
  pulumi.set(__self__, "integration_id", integration_id)
71
73
  pulumi.set(__self__, "regions", regions)
74
+ if collect_only_recommended_stats is not None:
75
+ pulumi.set(__self__, "collect_only_recommended_stats", collect_only_recommended_stats)
72
76
  if custom_cloudwatch_namespaces is not None:
73
77
  pulumi.set(__self__, "custom_cloudwatch_namespaces", custom_cloudwatch_namespaces)
74
78
  if custom_namespace_sync_rules is not None:
@@ -140,6 +144,18 @@ class IntegrationArgs:
140
144
  def regions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
141
145
  pulumi.set(self, "regions", value)
142
146
 
147
+ @property
148
+ @pulumi.getter(name="collectOnlyRecommendedStats")
149
+ def collect_only_recommended_stats(self) -> Optional[pulumi.Input[bool]]:
150
+ """
151
+ Indicates that Splunk Observability should only sync recommended statistics
152
+ """
153
+ return pulumi.get(self, "collect_only_recommended_stats")
154
+
155
+ @collect_only_recommended_stats.setter
156
+ def collect_only_recommended_stats(self, value: Optional[pulumi.Input[bool]]):
157
+ pulumi.set(self, "collect_only_recommended_stats", value)
158
+
143
159
  @property
144
160
  @pulumi.getter(name="customCloudwatchNamespaces")
145
161
  def custom_cloudwatch_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -351,6 +367,7 @@ class IntegrationArgs:
351
367
  class _IntegrationState:
352
368
  def __init__(__self__, *,
353
369
  auth_method: Optional[pulumi.Input[str]] = None,
370
+ collect_only_recommended_stats: Optional[pulumi.Input[bool]] = None,
354
371
  custom_cloudwatch_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
355
372
  custom_namespace_sync_rules: Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespaceSyncRuleArgs']]]] = None,
356
373
  enable_aws_usage: Optional[pulumi.Input[bool]] = None,
@@ -376,6 +393,7 @@ class _IntegrationState:
376
393
  Input properties used for looking up and filtering Integration resources.
377
394
  :param pulumi.Input[str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
378
395
  this
396
+ :param pulumi.Input[bool] collect_only_recommended_stats: Indicates that Splunk Observability should only sync recommended statistics
379
397
  :param pulumi.Input[Sequence[pulumi.Input[str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
380
398
  :param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespaceSyncRuleArgs']]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
381
399
  :param pulumi.Input[bool] enable_aws_usage: Flag that controls how Splunk Observability Cloud imports usage metrics from AWS to use with AWS Cost Optimizer. If `true`, Splunk Observability Cloud imports the metrics.
@@ -402,6 +420,8 @@ class _IntegrationState:
402
420
  """
403
421
  if auth_method is not None:
404
422
  pulumi.set(__self__, "auth_method", auth_method)
423
+ if collect_only_recommended_stats is not None:
424
+ pulumi.set(__self__, "collect_only_recommended_stats", collect_only_recommended_stats)
405
425
  if custom_cloudwatch_namespaces is not None:
406
426
  pulumi.set(__self__, "custom_cloudwatch_namespaces", custom_cloudwatch_namespaces)
407
427
  if custom_namespace_sync_rules is not None:
@@ -458,6 +478,18 @@ class _IntegrationState:
458
478
  def auth_method(self, value: Optional[pulumi.Input[str]]):
459
479
  pulumi.set(self, "auth_method", value)
460
480
 
481
+ @property
482
+ @pulumi.getter(name="collectOnlyRecommendedStats")
483
+ def collect_only_recommended_stats(self) -> Optional[pulumi.Input[bool]]:
484
+ """
485
+ Indicates that Splunk Observability should only sync recommended statistics
486
+ """
487
+ return pulumi.get(self, "collect_only_recommended_stats")
488
+
489
+ @collect_only_recommended_stats.setter
490
+ def collect_only_recommended_stats(self, value: Optional[pulumi.Input[bool]]):
491
+ pulumi.set(self, "collect_only_recommended_stats", value)
492
+
461
493
  @property
462
494
  @pulumi.getter(name="customCloudwatchNamespaces")
463
495
  def custom_cloudwatch_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -718,6 +750,7 @@ class Integration(pulumi.CustomResource):
718
750
  def __init__(__self__,
719
751
  resource_name: str,
720
752
  opts: Optional[pulumi.ResourceOptions] = None,
753
+ collect_only_recommended_stats: Optional[pulumi.Input[bool]] = None,
721
754
  custom_cloudwatch_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
722
755
  custom_namespace_sync_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]]] = None,
723
756
  enable_aws_usage: Optional[pulumi.Input[bool]] = None,
@@ -787,6 +820,7 @@ class Integration(pulumi.CustomResource):
787
820
 
788
821
  :param str resource_name: The name of the resource.
789
822
  :param pulumi.ResourceOptions opts: Options for the resource.
823
+ :param pulumi.Input[bool] collect_only_recommended_stats: Indicates that Splunk Observability should only sync recommended statistics
790
824
  :param pulumi.Input[Sequence[pulumi.Input[str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
791
825
  :param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
792
826
  :param pulumi.Input[bool] enable_aws_usage: Flag that controls how Splunk Observability Cloud imports usage metrics from AWS to use with AWS Cost Optimizer. If `true`, Splunk Observability Cloud imports the metrics.
@@ -877,6 +911,7 @@ class Integration(pulumi.CustomResource):
877
911
  def _internal_init(__self__,
878
912
  resource_name: str,
879
913
  opts: Optional[pulumi.ResourceOptions] = None,
914
+ collect_only_recommended_stats: Optional[pulumi.Input[bool]] = None,
880
915
  custom_cloudwatch_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
881
916
  custom_namespace_sync_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]]] = None,
882
917
  enable_aws_usage: Optional[pulumi.Input[bool]] = None,
@@ -906,6 +941,7 @@ class Integration(pulumi.CustomResource):
906
941
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
907
942
  __props__ = IntegrationArgs.__new__(IntegrationArgs)
908
943
 
944
+ __props__.__dict__["collect_only_recommended_stats"] = collect_only_recommended_stats
909
945
  __props__.__dict__["custom_cloudwatch_namespaces"] = custom_cloudwatch_namespaces
910
946
  __props__.__dict__["custom_namespace_sync_rules"] = custom_namespace_sync_rules
911
947
  __props__.__dict__["enable_aws_usage"] = enable_aws_usage
@@ -947,6 +983,7 @@ class Integration(pulumi.CustomResource):
947
983
  id: pulumi.Input[str],
948
984
  opts: Optional[pulumi.ResourceOptions] = None,
949
985
  auth_method: Optional[pulumi.Input[str]] = None,
986
+ collect_only_recommended_stats: Optional[pulumi.Input[bool]] = None,
950
987
  custom_cloudwatch_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
951
988
  custom_namespace_sync_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]]] = None,
952
989
  enable_aws_usage: Optional[pulumi.Input[bool]] = None,
@@ -977,6 +1014,7 @@ class Integration(pulumi.CustomResource):
977
1014
  :param pulumi.ResourceOptions opts: Options for the resource.
978
1015
  :param pulumi.Input[str] auth_method: The mechanism used to authenticate with AWS. Use one of `aws.ExternalIntegration` or `aws.TokenIntegration` to define
979
1016
  this
1017
+ :param pulumi.Input[bool] collect_only_recommended_stats: Indicates that Splunk Observability should only sync recommended statistics
980
1018
  :param pulumi.Input[Sequence[pulumi.Input[str]]] custom_cloudwatch_namespaces: List of custom AWS CloudWatch namespaces to monitor. Custom namespaces contain custom metrics that you define in AWS; Splunk Observability Cloud imports the metrics so you can monitor them.
981
1019
  :param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespaceSyncRuleArgs', 'IntegrationCustomNamespaceSyncRuleArgsDict']]]] custom_namespace_sync_rules: Each element controls the data collected by Splunk Observability Cloud for the specified namespace. Conflicts with the `custom_cloudwatch_namespaces` property.
982
1020
  :param pulumi.Input[bool] enable_aws_usage: Flag that controls how Splunk Observability Cloud imports usage metrics from AWS to use with AWS Cost Optimizer. If `true`, Splunk Observability Cloud imports the metrics.
@@ -1006,6 +1044,7 @@ class Integration(pulumi.CustomResource):
1006
1044
  __props__ = _IntegrationState.__new__(_IntegrationState)
1007
1045
 
1008
1046
  __props__.__dict__["auth_method"] = auth_method
1047
+ __props__.__dict__["collect_only_recommended_stats"] = collect_only_recommended_stats
1009
1048
  __props__.__dict__["custom_cloudwatch_namespaces"] = custom_cloudwatch_namespaces
1010
1049
  __props__.__dict__["custom_namespace_sync_rules"] = custom_namespace_sync_rules
1011
1050
  __props__.__dict__["enable_aws_usage"] = enable_aws_usage
@@ -1038,6 +1077,14 @@ class Integration(pulumi.CustomResource):
1038
1077
  """
1039
1078
  return pulumi.get(self, "auth_method")
1040
1079
 
1080
+ @property
1081
+ @pulumi.getter(name="collectOnlyRecommendedStats")
1082
+ def collect_only_recommended_stats(self) -> pulumi.Output[Optional[bool]]:
1083
+ """
1084
+ Indicates that Splunk Observability should only sync recommended statistics
1085
+ """
1086
+ return pulumi.get(self, "collect_only_recommended_stats")
1087
+
1041
1088
  @property
1042
1089
  @pulumi.getter(name="customCloudwatchNamespaces")
1043
1090
  def custom_cloudwatch_namespaces(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "signalfx",
4
- "version": "7.7.0-alpha.1737526929"
4
+ "version": "7.7.1"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_signalfx
3
- Version: 7.7.0a1737526929
3
+ Version: 7.7.1
4
4
  Summary: A Pulumi package for creating and managing SignalFx resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -14,7 +14,7 @@ pulumi_signalfx/metric_ruleset.py,sha256=TyHSz4BEE-kB3zNST8_7lYKIP84opAYGPWH8mO-
14
14
  pulumi_signalfx/org_token.py,sha256=bQjmT2Pgam8tqboY1cimNUTqqO85m-jqa4IC6QNwIfA,23454
15
15
  pulumi_signalfx/outputs.py,sha256=PP3377yYtpBxtu6deu83JwYEu0c44GcvTuFQP85fv9E,163989
16
16
  pulumi_signalfx/provider.py,sha256=N1a8K9M_TXw--dnpKy5TA-SXFWSC3tbQu6mJD12dBDQ,16412
17
- pulumi_signalfx/pulumi-plugin.json,sha256=D1I4QtkqUPKwJx3psNJJrMu5JGiWUpBxChBR8eP6BrY,84
17
+ pulumi_signalfx/pulumi-plugin.json,sha256=EfXI5X8l1abN7e8Sgjp_UnGvkFLeuol3zW9ep5SZfqs,67
18
18
  pulumi_signalfx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  pulumi_signalfx/single_value_chart.py,sha256=0AxPiYjIqNfKZynSIexpPRkiIZgPCi34w0YGIXban_4,40641
20
20
  pulumi_signalfx/slo.py,sha256=kkwS2PG1vxQggEmSOEyWZskE4A5NYVB5etcTcf7ra4w,19190
@@ -27,7 +27,7 @@ pulumi_signalfx/webhook_integration.py,sha256=wHe-50lTKP4X5zeOAuPqbUIxmRv00U463L
27
27
  pulumi_signalfx/aws/__init__.py,sha256=HhTTZvYh0MSTjoaN3i_bKYGFpFjwdX6dGJNnwvBXZkA,410
28
28
  pulumi_signalfx/aws/_inputs.py,sha256=cVXSjxCUckCT3IUoCJJQC9JxsPRi1eP8ikjwO0mwXwM,14422
29
29
  pulumi_signalfx/aws/external_integration.py,sha256=vVV5awFuRcCRLWrnMAgrolqU1nxSv9HZhv5OY104X-U,9825
30
- pulumi_signalfx/aws/integration.py,sha256=NHWAbDE4b5zLjOjuL6tYy7Vp-3AiRAvBe3mA293XeFc,82160
30
+ pulumi_signalfx/aws/integration.py,sha256=jtVI291y5H-8Sn6dmgcB31ERiLLWddDoldrGsxH5d64,85006
31
31
  pulumi_signalfx/aws/outputs.py,sha256=POfOXKHyiUEInisrnsT3qZ-ba8xXQI-r3sbyZY0WjFk,10350
32
32
  pulumi_signalfx/aws/token_integration.py,sha256=3PnjUZkvFsJIwM1EfYuoBOoZawDmzGJSH5-A6nN9Fu8,12011
33
33
  pulumi_signalfx/azure/__init__.py,sha256=9midm_dXXAEZjnpibVkvt65lhrpCQeCq6nUgTlf2moU,341
@@ -59,7 +59,7 @@ pulumi_signalfx/slack/__init__.py,sha256=dW7oOb7XTcehW7dQFHfEJyFhZNnOTYoo3FSRMUz
59
59
  pulumi_signalfx/slack/integration.py,sha256=dFkgEVYGJTulfau070YkmN2SJglRp730dlo_LxeBj4c,10605
60
60
  pulumi_signalfx/victorops/__init__.py,sha256=dW7oOb7XTcehW7dQFHfEJyFhZNnOTYoo3FSRMUzgudU,296
61
61
  pulumi_signalfx/victorops/integration.py,sha256=KeGVGgQLyN1cItyuXkNu2GbRyhznUroxMni5PB4E1mc,10450
62
- pulumi_signalfx-7.7.0a1737526929.dist-info/METADATA,sha256=WM1Yx9njsX0OcbwO9eFS1ZV_1F_LN7miITe6ne-SvaE,3090
63
- pulumi_signalfx-7.7.0a1737526929.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
64
- pulumi_signalfx-7.7.0a1737526929.dist-info/top_level.txt,sha256=96zW1Lm-bEkyaNlSwcR6g0cPvusFulK_kulBOfoN6DI,16
65
- pulumi_signalfx-7.7.0a1737526929.dist-info/RECORD,,
62
+ pulumi_signalfx-7.7.1.dist-info/METADATA,sha256=Tcom3IZ0K8UtdpdmO-ZYQ0iX3PddHd5Tafyp8hHNFAI,3079
63
+ pulumi_signalfx-7.7.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
64
+ pulumi_signalfx-7.7.1.dist-info/top_level.txt,sha256=96zW1Lm-bEkyaNlSwcR6g0cPvusFulK_kulBOfoN6DI,16
65
+ pulumi_signalfx-7.7.1.dist-info/RECORD,,