pulumi-wavefront 3.2.0a1709368803__py3-none-any.whl → 3.2.0a1736836107__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. pulumi_wavefront/_inputs.py +528 -3
  2. pulumi_wavefront/_utilities.py +41 -5
  3. pulumi_wavefront/alert.py +18 -11
  4. pulumi_wavefront/alert_target.py +22 -15
  5. pulumi_wavefront/cloud_integration_app_dynamics.py +15 -8
  6. pulumi_wavefront/cloud_integration_aws_external_id.py +9 -4
  7. pulumi_wavefront/cloud_integration_azure.py +11 -4
  8. pulumi_wavefront/cloud_integration_azure_activity_log.py +11 -4
  9. pulumi_wavefront/cloud_integration_cloud_trail.py +11 -4
  10. pulumi_wavefront/cloud_integration_cloud_watch.py +11 -4
  11. pulumi_wavefront/cloud_integration_ec2.py +11 -4
  12. pulumi_wavefront/cloud_integration_gcp.py +13 -10
  13. pulumi_wavefront/cloud_integration_gcp_billing.py +15 -12
  14. pulumi_wavefront/cloud_integration_new_relic.py +18 -9
  15. pulumi_wavefront/config/__init__.pyi +5 -0
  16. pulumi_wavefront/config/vars.py +5 -0
  17. pulumi_wavefront/dashboard.py +17 -12
  18. pulumi_wavefront/dashboard_json.py +235 -232
  19. pulumi_wavefront/derived_metric.py +9 -2
  20. pulumi_wavefront/event.py +11 -4
  21. pulumi_wavefront/external_link.py +9 -2
  22. pulumi_wavefront/get_alert.py +39 -5
  23. pulumi_wavefront/get_alerts.py +18 -5
  24. pulumi_wavefront/get_dashboard.py +49 -6
  25. pulumi_wavefront/get_dashboards.py +18 -5
  26. pulumi_wavefront/get_default_user_group.py +14 -5
  27. pulumi_wavefront/get_derived_metric.py +37 -5
  28. pulumi_wavefront/get_derived_metrics.py +18 -5
  29. pulumi_wavefront/get_event.py +23 -5
  30. pulumi_wavefront/get_events.py +28 -11
  31. pulumi_wavefront/get_external_link.py +25 -5
  32. pulumi_wavefront/get_external_links.py +18 -5
  33. pulumi_wavefront/get_maintenance_window.py +31 -5
  34. pulumi_wavefront/get_maintenance_window_all.py +16 -5
  35. pulumi_wavefront/get_metrics_policy.py +15 -5
  36. pulumi_wavefront/get_role.py +17 -5
  37. pulumi_wavefront/get_roles.py +18 -5
  38. pulumi_wavefront/get_user.py +19 -5
  39. pulumi_wavefront/get_user_group.py +18 -5
  40. pulumi_wavefront/get_user_groups.py +18 -5
  41. pulumi_wavefront/get_users.py +14 -5
  42. pulumi_wavefront/ingestion_policy.py +16 -7
  43. pulumi_wavefront/maintenance_window.py +15 -10
  44. pulumi_wavefront/metrics_policy.py +34 -27
  45. pulumi_wavefront/outputs.py +13 -8
  46. pulumi_wavefront/provider.py +5 -0
  47. pulumi_wavefront/pulumi-plugin.json +2 -1
  48. pulumi_wavefront/role.py +9 -4
  49. pulumi_wavefront/service_account.py +11 -6
  50. pulumi_wavefront/user.py +7 -2
  51. pulumi_wavefront/user_group.py +13 -4
  52. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/METADATA +7 -6
  53. pulumi_wavefront-3.2.0a1736836107.dist-info/RECORD +58 -0
  54. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/WHEEL +1 -1
  55. pulumi_wavefront-3.2.0a1709368803.dist-info/RECORD +0 -58
  56. {pulumi_wavefront-3.2.0a1709368803.dist-info → pulumi_wavefront-3.2.0a1736836107.dist-info}/top_level.txt +0 -0
@@ -4,27 +4,61 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = [
13
18
  'AlertAlertTriageDashboardArgs',
19
+ 'AlertAlertTriageDashboardArgsDict',
14
20
  'AlertAlertTriageDashboardParametersArgs',
21
+ 'AlertAlertTriageDashboardParametersArgsDict',
15
22
  'AlertTargetRouteArgs',
23
+ 'AlertTargetRouteArgsDict',
16
24
  'CloudIntegrationNewRelicMetricFilterArgs',
25
+ 'CloudIntegrationNewRelicMetricFilterArgsDict',
17
26
  'DashboardParameterDetailArgs',
27
+ 'DashboardParameterDetailArgsDict',
18
28
  'DashboardSectionArgs',
29
+ 'DashboardSectionArgsDict',
19
30
  'DashboardSectionRowArgs',
31
+ 'DashboardSectionRowArgsDict',
20
32
  'DashboardSectionRowChartArgs',
33
+ 'DashboardSectionRowChartArgsDict',
21
34
  'DashboardSectionRowChartChartSettingArgs',
35
+ 'DashboardSectionRowChartChartSettingArgsDict',
22
36
  'DashboardSectionRowChartSourceArgs',
37
+ 'DashboardSectionRowChartSourceArgsDict',
23
38
  'IngestionPolicyTagArgs',
39
+ 'IngestionPolicyTagArgsDict',
24
40
  'MetricsPolicyPolicyRuleArgs',
41
+ 'MetricsPolicyPolicyRuleArgsDict',
25
42
  'MetricsPolicyPolicyRuleTagArgs',
43
+ 'MetricsPolicyPolicyRuleTagArgsDict',
26
44
  ]
27
45
 
46
+ MYPY = False
47
+
48
+ if not MYPY:
49
+ class AlertAlertTriageDashboardArgsDict(TypedDict):
50
+ dashboard_id: pulumi.Input[str]
51
+ """
52
+ Dashboard ID
53
+ """
54
+ description: pulumi.Input[str]
55
+ """
56
+ Dashboard Description
57
+ """
58
+ parameters: NotRequired[pulumi.Input['AlertAlertTriageDashboardParametersArgsDict']]
59
+ elif False:
60
+ AlertAlertTriageDashboardArgsDict: TypeAlias = Mapping[str, Any]
61
+
28
62
  @pulumi.input_type
29
63
  class AlertAlertTriageDashboardArgs:
30
64
  def __init__(__self__, *,
@@ -74,23 +108,48 @@ class AlertAlertTriageDashboardArgs:
74
108
  pulumi.set(self, "parameters", value)
75
109
 
76
110
 
111
+ if not MYPY:
112
+ class AlertAlertTriageDashboardParametersArgsDict(TypedDict):
113
+ constants: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
114
+ elif False:
115
+ AlertAlertTriageDashboardParametersArgsDict: TypeAlias = Mapping[str, Any]
116
+
77
117
  @pulumi.input_type
78
118
  class AlertAlertTriageDashboardParametersArgs:
79
119
  def __init__(__self__, *,
80
- constants: Optional[pulumi.Input[Mapping[str, Any]]] = None):
120
+ constants: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
81
121
  if constants is not None:
82
122
  pulumi.set(__self__, "constants", constants)
83
123
 
84
124
  @property
85
125
  @pulumi.getter
86
- def constants(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
126
+ def constants(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
87
127
  return pulumi.get(self, "constants")
88
128
 
89
129
  @constants.setter
90
- def constants(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
130
+ def constants(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
91
131
  pulumi.set(self, "constants", value)
92
132
 
93
133
 
134
+ if not MYPY:
135
+ class AlertTargetRouteArgsDict(TypedDict):
136
+ method: pulumi.Input[str]
137
+ """
138
+ The notification method used for notification target. One of `WEBHOOK`, `EMAIL`, `PAGERDUTY`.
139
+ """
140
+ target: pulumi.Input[str]
141
+ """
142
+ (Required) The endpoint for the alert route. `EMAIL`: email address. `PAGERDUTY`: PagerDuty routing
143
+ key. `WEBHOOK`: URL endpoint.
144
+ """
145
+ filter: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
146
+ """
147
+ (Required) String that filters the route. Space delimited. Currently only allows a single key value pair.
148
+ (e.g. `env prod`)
149
+ """
150
+ elif False:
151
+ AlertTargetRouteArgsDict: TypeAlias = Mapping[str, Any]
152
+
94
153
  @pulumi.input_type
95
154
  class AlertTargetRouteArgs:
96
155
  def __init__(__self__, *,
@@ -148,6 +207,19 @@ class AlertTargetRouteArgs:
148
207
  pulumi.set(self, "filter", value)
149
208
 
150
209
 
210
+ if not MYPY:
211
+ class CloudIntegrationNewRelicMetricFilterArgsDict(TypedDict):
212
+ app_name: pulumi.Input[str]
213
+ """
214
+ The name of a NewRelic App.
215
+ """
216
+ metric_filter_regex: pulumi.Input[str]
217
+ """
218
+ A regular expression that a metric name must match (case-insensitively) in order to be ingested.
219
+ """
220
+ elif False:
221
+ CloudIntegrationNewRelicMetricFilterArgsDict: TypeAlias = Mapping[str, Any]
222
+
151
223
  @pulumi.input_type
152
224
  class CloudIntegrationNewRelicMetricFilterArgs:
153
225
  def __init__(__self__, *,
@@ -185,6 +257,49 @@ class CloudIntegrationNewRelicMetricFilterArgs:
185
257
  pulumi.set(self, "metric_filter_regex", value)
186
258
 
187
259
 
260
+ if not MYPY:
261
+ class DashboardParameterDetailArgsDict(TypedDict):
262
+ default_value: pulumi.Input[str]
263
+ """
264
+ The default value of the parameter.
265
+ """
266
+ hide_from_view: pulumi.Input[bool]
267
+ """
268
+ If `true` the parameter will only be shown on the edit view of the dashboard.
269
+ """
270
+ label: pulumi.Input[str]
271
+ """
272
+ The label for the parameter.
273
+ """
274
+ name: pulumi.Input[str]
275
+ """
276
+ The name of the parameters.
277
+ """
278
+ parameter_type: pulumi.Input[str]
279
+ """
280
+ The type of the parameter. `SIMPLE`, `LIST`, or `DYNAMIC`.
281
+ """
282
+ values_to_readable_strings: pulumi.Input[Mapping[str, pulumi.Input[str]]]
283
+ """
284
+ A string->string map. At least one of the keys must match the value of
285
+ `default_value`.
286
+ """
287
+ dynamic_field_type: NotRequired[pulumi.Input[str]]
288
+ """
289
+ For `DYNAMIC` parameter types, the type of the field. Valid options are `SOURCE`,
290
+ `SOURCE_TAG`, `METRIC_NAME`, `TAG_KEY`, and `MATCHING_SOURCE_TAG`.
291
+ """
292
+ query_value: NotRequired[pulumi.Input[str]]
293
+ """
294
+ For `DYNAMIC` parameter types, the query to execute to return values.
295
+ """
296
+ tag_key: NotRequired[pulumi.Input[str]]
297
+ """
298
+ for `TAG_KEY` dynamic field types, the tag key to return.
299
+ """
300
+ elif False:
301
+ DashboardParameterDetailArgsDict: TypeAlias = Mapping[str, Any]
302
+
188
303
  @pulumi.input_type
189
304
  class DashboardParameterDetailArgs:
190
305
  def __init__(__self__, *,
@@ -334,6 +449,19 @@ class DashboardParameterDetailArgs:
334
449
  pulumi.set(self, "tag_key", value)
335
450
 
336
451
 
452
+ if not MYPY:
453
+ class DashboardSectionArgsDict(TypedDict):
454
+ name: pulumi.Input[str]
455
+ """
456
+ Name of this section.
457
+ """
458
+ rows: pulumi.Input[Sequence[pulumi.Input['DashboardSectionRowArgsDict']]]
459
+ """
460
+ See dashboard section rows.
461
+ """
462
+ elif False:
463
+ DashboardSectionArgsDict: TypeAlias = Mapping[str, Any]
464
+
337
465
  @pulumi.input_type
338
466
  class DashboardSectionArgs:
339
467
  def __init__(__self__, *,
@@ -371,6 +499,15 @@ class DashboardSectionArgs:
371
499
  pulumi.set(self, "rows", value)
372
500
 
373
501
 
502
+ if not MYPY:
503
+ class DashboardSectionRowArgsDict(TypedDict):
504
+ charts: pulumi.Input[Sequence[pulumi.Input['DashboardSectionRowChartArgsDict']]]
505
+ """
506
+ Charts in this section. See dashboard chart.
507
+ """
508
+ elif False:
509
+ DashboardSectionRowArgsDict: TypeAlias = Mapping[str, Any]
510
+
374
511
  @pulumi.input_type
375
512
  class DashboardSectionRowArgs:
376
513
  def __init__(__self__, *,
@@ -393,6 +530,45 @@ class DashboardSectionRowArgs:
393
530
  pulumi.set(self, "charts", value)
394
531
 
395
532
 
533
+ if not MYPY:
534
+ class DashboardSectionRowChartArgsDict(TypedDict):
535
+ chart_setting: pulumi.Input['DashboardSectionRowChartChartSettingArgsDict']
536
+ """
537
+ Chart settings. See chart settings.
538
+ """
539
+ name: pulumi.Input[str]
540
+ """
541
+ Name of the source.
542
+ """
543
+ sources: pulumi.Input[Sequence[pulumi.Input['DashboardSectionRowChartSourceArgsDict']]]
544
+ """
545
+ Query expression to plot on the chart. See chart source queries.
546
+ """
547
+ summarization: pulumi.Input[str]
548
+ """
549
+ Summarization strategy for the chart. MEAN is default. Valid options are, `MEAN`,
550
+ `MEDIAN`, `MIN`, `MAX`, `SUM`, `COUNT`, `LAST`, `FIRST`.
551
+ """
552
+ units: pulumi.Input[str]
553
+ """
554
+ String to label the units of the chart on the Y-Axis.
555
+ """
556
+ base: NotRequired[pulumi.Input[int]]
557
+ """
558
+ The base of logarithmic scale charts. Omit or set to 0 for the default linear scale. Usually set to 10 for the traditional logarithmic scale.
559
+ """
560
+ chart_attribute: NotRequired[pulumi.Input[str]]
561
+ description: NotRequired[pulumi.Input[str]]
562
+ """
563
+ Description of the chart.
564
+ """
565
+ no_default_events: NotRequired[pulumi.Input[bool]]
566
+ """
567
+ Show events related to the sources included in queries
568
+ """
569
+ elif False:
570
+ DashboardSectionRowChartArgsDict: TypeAlias = Mapping[str, Any]
571
+
396
572
  @pulumi.input_type
397
573
  class DashboardSectionRowChartArgs:
398
574
  def __init__(__self__, *,
@@ -537,6 +713,265 @@ class DashboardSectionRowChartArgs:
537
713
  pulumi.set(self, "no_default_events", value)
538
714
 
539
715
 
716
+ if not MYPY:
717
+ class DashboardSectionRowChartChartSettingArgsDict(TypedDict):
718
+ type: pulumi.Input[str]
719
+ """
720
+ Chart Type. `line` refers to the Line Plot, `scatter` to the Point Plot, `stacked-area` to
721
+ the Stacked Area plot, `table` to the Tabular View, `scatterplot-xy` to Scatter Plot, `markdown-widget` to the
722
+ Markdown display, and `sparkline` to the Single Stat view. Valid options are`line`, `scatterplot`,
723
+ `stacked-area`, `stacked-column`, `table`, `scatterplot-xy`, `markdown-widget`, `sparkline`, `globe`, `nodemap`,
724
+ `top-k`, `status-list`, and `histogram`.
725
+ """
726
+ auto_column_tags: NotRequired[pulumi.Input[bool]]
727
+ """
728
+ This setting is deprecated.
729
+ """
730
+ column_tags: NotRequired[pulumi.Input[str]]
731
+ """
732
+ This setting is deprecated.
733
+ """
734
+ custom_tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
735
+ """
736
+ For the tabular view, a list of point tags to display when using the `custom` tag display mode.
737
+ """
738
+ expected_data_spacing: NotRequired[pulumi.Input[int]]
739
+ """
740
+ Threshold (in seconds) for time delta between consecutive points in a series
741
+ above which a dotted line will replace a solid in in line plots. Default is 60.
742
+ """
743
+ fixed_legend_display_stats: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
744
+ """
745
+ For a chart with a fixed legend, a list of statistics to display in the legend.
746
+ """
747
+ fixed_legend_enabled: NotRequired[pulumi.Input[bool]]
748
+ """
749
+ Whether to enable a fixed tabular legend adjacent to the chart.
750
+ """
751
+ fixed_legend_filter_field: NotRequired[pulumi.Input[str]]
752
+ """
753
+ Statistic to use for determining whether a series is displayed on the fixed legend.
754
+ Valid options are `CURRENT`, `MEAN`, `MEDIAN`, `SUM`, `MIN`, `MAX`, and `COUNT`.
755
+ """
756
+ fixed_legend_filter_limit: NotRequired[pulumi.Input[int]]
757
+ """
758
+ Number of series to include in the fixed legend.
759
+ """
760
+ fixed_legend_filter_sort: NotRequired[pulumi.Input[str]]
761
+ """
762
+ Whether to display `TOP` or `BOTTOM` ranked series in a fixed legend. Valid options
763
+ are `TOP`, and `BOTTOM`.
764
+ """
765
+ fixed_legend_hide_label: NotRequired[pulumi.Input[bool]]
766
+ """
767
+ This setting is deprecated.
768
+ """
769
+ fixed_legend_position: NotRequired[pulumi.Input[str]]
770
+ """
771
+ Where the fixed legend should be displayed with respect to the chart.
772
+ Valid options are `RIGHT`, `TOP`, `LEFT`, `BOTTOM`.
773
+ """
774
+ fixed_legend_use_raw_stats: NotRequired[pulumi.Input[bool]]
775
+ """
776
+ If `true`, the legend uses non-summarized stats instead of summarized.
777
+ """
778
+ group_by_source: NotRequired[pulumi.Input[bool]]
779
+ """
780
+ For the tabular view, whether to group multi metrics into a single row by a common source.
781
+ If `false`, each source is displayed in its own row. if `true`, multiple metrics for the same host are displayed as different
782
+ columns in the same row.
783
+ """
784
+ invert_dynamic_legend_hover_control: NotRequired[pulumi.Input[bool]]
785
+ """
786
+ Whether to disable the display of the floating legend (but
787
+ reenable it when the ctrl-key is pressed).
788
+ """
789
+ line_type: NotRequired[pulumi.Input[str]]
790
+ """
791
+ Plot interpolation type. `linear` is default. Valid options are `linear`, `step-before`,
792
+ `step-after`, `basis`, `cardinal`, and `monotone`.
793
+ """
794
+ max: NotRequired[pulumi.Input[float]]
795
+ """
796
+ Max value of the Y-axis. Set to null or leave blank for auto.
797
+ """
798
+ min: NotRequired[pulumi.Input[float]]
799
+ """
800
+ Min value of the Y-axis. Set to null or leave blank for auto.
801
+ """
802
+ num_tags: NotRequired[pulumi.Input[int]]
803
+ """
804
+ For the tabular view defines how many point tags to display.
805
+ """
806
+ plain_markdown_content: NotRequired[pulumi.Input[str]]
807
+ """
808
+ The markdown content for a Markdown display, in plain text.
809
+ """
810
+ show_hosts: NotRequired[pulumi.Input[bool]]
811
+ """
812
+ For the tabular view, whether to display sources. Default is `true`.
813
+ """
814
+ show_labels: NotRequired[pulumi.Input[bool]]
815
+ """
816
+ For the tabular view, whether to display labels. Default is `true`.
817
+ """
818
+ show_raw_values: NotRequired[pulumi.Input[bool]]
819
+ """
820
+ For the tabular view, whether to display raw values. Default is `false`.
821
+ """
822
+ sort_values_descending: NotRequired[pulumi.Input[bool]]
823
+ """
824
+ For the tabular view, whether to display values in descending order. Default is `false`.
825
+ """
826
+ sparkline_decimal_precision: NotRequired[pulumi.Input[int]]
827
+ """
828
+ For the single stat view, the decimal precision of the displayed number.
829
+ """
830
+ sparkline_display_color: NotRequired[pulumi.Input[str]]
831
+ """
832
+ For the single stat view, the color of the displayed text (when not dynamically determined).
833
+ Values should be in `rgba(,,,,)` format.
834
+ """
835
+ sparkline_display_font_size: NotRequired[pulumi.Input[str]]
836
+ """
837
+ For the single stat view, the font size of the displayed text, in percent.
838
+ """
839
+ sparkline_display_horizontal_position: NotRequired[pulumi.Input[str]]
840
+ """
841
+ For the single stat view, the horizontal position of the displayed text.
842
+ Valid options are `MIDDLE`, `LEFT`, `RIGHT`.
843
+ """
844
+ sparkline_display_postfix: NotRequired[pulumi.Input[str]]
845
+ """
846
+ For the single stat view, a string to append to the displayed text.
847
+ """
848
+ sparkline_display_prefix: NotRequired[pulumi.Input[str]]
849
+ """
850
+ For the single stat view, a string to add before the displayed text.
851
+ """
852
+ sparkline_display_value_type: NotRequired[pulumi.Input[str]]
853
+ """
854
+ For the single stat view, where to display the name of the query or the value of the query.
855
+ Valid options are `VALUE` or `LABEL`.
856
+ """
857
+ sparkline_display_vertical_position: NotRequired[pulumi.Input[str]]
858
+ """
859
+ This setting is deprecated.
860
+ """
861
+ sparkline_fill_color: NotRequired[pulumi.Input[str]]
862
+ """
863
+ For the single stat view, the color of the background fill. Values should be
864
+ in `rgba(,,,,)`.
865
+ """
866
+ sparkline_line_color: NotRequired[pulumi.Input[str]]
867
+ """
868
+ For the single stat view, the color of the line. Values should be in `rgba(,,,,)` format.
869
+ """
870
+ sparkline_size: NotRequired[pulumi.Input[str]]
871
+ """
872
+ For the single stat view, this determines whether the sparkline of the statistic is displayed in the chart.
873
+ Valid options are `BACKGROUND`, `BOTTOM`, `NONE`.
874
+ """
875
+ sparkline_value_color_map_apply_to: NotRequired[pulumi.Input[str]]
876
+ """
877
+ For the single stat view, whether to apply dynamic color settings to
878
+ the displayed `TEXT` or `BACKGROUND`. Valid options are `TEXT` or `BACKGROUND`.
879
+ """
880
+ sparkline_value_color_map_colors: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
881
+ """
882
+ For the single stat view, A list of colors that differing query values map to.
883
+ Must contain one more element than `sparkline_value_color_map_values_v2`. Values should be in `rgba(,,,,)`.
884
+ """
885
+ sparkline_value_color_map_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
886
+ """
887
+ This setting is deprecated.
888
+ """
889
+ sparkline_value_color_map_values_v2s: NotRequired[pulumi.Input[Sequence[pulumi.Input[float]]]]
890
+ """
891
+ For the single stat view, a list of boundaries for mapping different
892
+ query values to colors. Must contain one element less than `sparkline_value_color_map_colors`.
893
+ """
894
+ sparkline_value_text_map_texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
895
+ """
896
+ For the single stat view, a list of display text values that different query
897
+ values map to. Must contain one more element than `sparkline_value_text_map_thresholds`.
898
+ """
899
+ sparkline_value_text_map_thresholds: NotRequired[pulumi.Input[Sequence[pulumi.Input[float]]]]
900
+ """
901
+ For the single stat view, a list of threshold boundaries for
902
+ mapping different query values to display text. Must contain one element less than `sparkline_value_text_map_text`.
903
+ """
904
+ stack_type: NotRequired[pulumi.Input[str]]
905
+ """
906
+ Type of stacked chart (applicable only if chart type is `stacked`). `zero` (default) means
907
+ stacked from y=0. `expand` means normalized from 0 to 1. `wiggle` means minimize weighted changes. `silhouette` means to
908
+ center the stream. Valid options are `zero`, `expand`, `wiggle`, `silhouette`, and `bars`.
909
+ """
910
+ tag_mode: NotRequired[pulumi.Input[str]]
911
+ """
912
+ For the tabular view, which mode to use to determine which point tags to display.
913
+ Valid options are `all`, `top`, or `custom`.
914
+ """
915
+ time_based_coloring: NotRequired[pulumi.Input[bool]]
916
+ """
917
+ For x-y scatterplots, whether to color more recent points as darker than older points.
918
+ """
919
+ window_size: NotRequired[pulumi.Input[int]]
920
+ """
921
+ Width, in minutes, of the time window to use for `last` windowing.
922
+ """
923
+ windowing: NotRequired[pulumi.Input[str]]
924
+ """
925
+ For the tabular view, whether to use the full time window for the query or the last X minutes.
926
+ Valid options are `full` or `last`.
927
+ """
928
+ xmax: NotRequired[pulumi.Input[float]]
929
+ """
930
+ For x-y scatterplots, max value for the X-axis. Set to null for auto.
931
+ """
932
+ xmin: NotRequired[pulumi.Input[float]]
933
+ """
934
+ For x-y scatterplots, min value for the X-axis. Set to null for auto.
935
+ """
936
+ y0_scale_si_by1024: NotRequired[pulumi.Input[bool]]
937
+ """
938
+ Whether to scale numerical magnitude labels for left Y-axis by 1024 in the IEC/Binary manner (instead of by 1000 like SI).
939
+ """
940
+ y0_unit_autoscaling: NotRequired[pulumi.Input[bool]]
941
+ """
942
+ Whether to automatically adjust magnitude labels and units for the left Y-axis to favor smaller magnitudes and larger units.
943
+ """
944
+ y1_scale_si_by1024: NotRequired[pulumi.Input[bool]]
945
+ """
946
+ Whether to scale numerical magnitude labels for right Y-axis by 1024 in the IEC/Binary manner (instead of by 1000 like SI).
947
+ """
948
+ y1_unit_autoscaling: NotRequired[pulumi.Input[bool]]
949
+ """
950
+ Whether to automatically adjust magnitude labels and units for the right Y-axis to favor smaller magnitudes and larger units.
951
+ """
952
+ y1_units: NotRequired[pulumi.Input[str]]
953
+ """
954
+ For plots with multiple Y-axes, units for right side Y-axis.
955
+ """
956
+ y1max: NotRequired[pulumi.Input[float]]
957
+ """
958
+ For plots with multiple Y-axes, max value for the right side Y-axis. Set null for auto.
959
+ """
960
+ y1min: NotRequired[pulumi.Input[float]]
961
+ """
962
+ For plots with multiple Y-axes, min value for the right side Y-axis. Set null for auto.
963
+ """
964
+ ymax: NotRequired[pulumi.Input[float]]
965
+ """
966
+ For x-y scatterplots, max value for the Y-axis. Set to null for auto.
967
+ """
968
+ ymin: NotRequired[pulumi.Input[float]]
969
+ """
970
+ For x-y scatterplots, min value for the Y-axis. Set to null for auto.
971
+ """
972
+ elif False:
973
+ DashboardSectionRowChartChartSettingArgsDict: TypeAlias = Mapping[str, Any]
974
+
540
975
  @pulumi.input_type
541
976
  class DashboardSectionRowChartChartSettingArgs:
542
977
  def __init__(__self__, *,
@@ -1507,6 +1942,35 @@ class DashboardSectionRowChartChartSettingArgs:
1507
1942
  pulumi.set(self, "ymin", value)
1508
1943
 
1509
1944
 
1945
+ if not MYPY:
1946
+ class DashboardSectionRowChartSourceArgsDict(TypedDict):
1947
+ name: pulumi.Input[str]
1948
+ """
1949
+ Name of the source.
1950
+ """
1951
+ query: pulumi.Input[str]
1952
+ """
1953
+ Query expression to plot on the chart.
1954
+ """
1955
+ disabled: NotRequired[pulumi.Input[bool]]
1956
+ """
1957
+ Whether the source is disabled.
1958
+ """
1959
+ query_builder_enabled: NotRequired[pulumi.Input[bool]]
1960
+ """
1961
+ Whether or not this source line should have the query builder enabled.
1962
+ """
1963
+ scatter_plot_source: NotRequired[pulumi.Input[str]]
1964
+ """
1965
+ For scatter plots, does this query source the X-axis or the Y-axis, `X`, or `Y`.
1966
+ """
1967
+ source_description: NotRequired[pulumi.Input[str]]
1968
+ """
1969
+ A description for the purpose of this source.
1970
+ """
1971
+ elif False:
1972
+ DashboardSectionRowChartSourceArgsDict: TypeAlias = Mapping[str, Any]
1973
+
1510
1974
  @pulumi.input_type
1511
1975
  class DashboardSectionRowChartSourceArgs:
1512
1976
  def __init__(__self__, *,
@@ -1608,6 +2072,13 @@ class DashboardSectionRowChartSourceArgs:
1608
2072
  pulumi.set(self, "source_description", value)
1609
2073
 
1610
2074
 
2075
+ if not MYPY:
2076
+ class IngestionPolicyTagArgsDict(TypedDict):
2077
+ key: pulumi.Input[str]
2078
+ value: pulumi.Input[str]
2079
+ elif False:
2080
+ IngestionPolicyTagArgsDict: TypeAlias = Mapping[str, Any]
2081
+
1611
2082
  @pulumi.input_type
1612
2083
  class IngestionPolicyTagArgs:
1613
2084
  def __init__(__self__, *,
@@ -1635,6 +2106,47 @@ class IngestionPolicyTagArgs:
1635
2106
  pulumi.set(self, "value", value)
1636
2107
 
1637
2108
 
2109
+ if not MYPY:
2110
+ class MetricsPolicyPolicyRuleArgsDict(TypedDict):
2111
+ access_type: pulumi.Input[str]
2112
+ """
2113
+ Valid options are `ALLOW` and `BLOCK`.
2114
+ """
2115
+ description: pulumi.Input[str]
2116
+ """
2117
+ A detailed description of the Metrics Policy. The description is visible only when you edit the rule.
2118
+ """
2119
+ name: pulumi.Input[str]
2120
+ """
2121
+ The unique name identifier for a Metrics Policy. The name is visible on the Metrics Security Policy page.
2122
+ """
2123
+ prefixes: pulumi.Input[Sequence[pulumi.Input[str]]]
2124
+ """
2125
+ List of prefixes to match metrics on. You can specify the full metric name or use a wildcard character in metric names, sources, or point tags. The wildcard character alone (*) means all metrics.
2126
+ """
2127
+ tags_anded: pulumi.Input[bool]
2128
+ """
2129
+ Bool where `true` require all tags are met by selected metrics, else `false` select metrics that match any give tag.
2130
+ """
2131
+ account_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2132
+ """
2133
+ List of account ids to apply Metrics Policy to. Must have at least one associated account_id, user_group_id, or role_id.
2134
+ """
2135
+ role_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2136
+ """
2137
+ List of role ids to apply Metrics Policy to. Must have at least one associated account_id, user_group_id, or role_id.
2138
+ """
2139
+ tags: NotRequired[pulumi.Input[Sequence[pulumi.Input['MetricsPolicyPolicyRuleTagArgsDict']]]]
2140
+ """
2141
+ List of Key/Value tags to select target metrics for policy.
2142
+ """
2143
+ user_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2144
+ """
2145
+ List of user group ids to apply Metrics Policy to. Must have at least one associated account_id, user_group_id, or role_id.
2146
+ """
2147
+ elif False:
2148
+ MetricsPolicyPolicyRuleArgsDict: TypeAlias = Mapping[str, Any]
2149
+
1638
2150
  @pulumi.input_type
1639
2151
  class MetricsPolicyPolicyRuleArgs:
1640
2152
  def __init__(__self__, *,
@@ -1781,6 +2293,19 @@ class MetricsPolicyPolicyRuleArgs:
1781
2293
  pulumi.set(self, "user_group_ids", value)
1782
2294
 
1783
2295
 
2296
+ if not MYPY:
2297
+ class MetricsPolicyPolicyRuleTagArgsDict(TypedDict):
2298
+ key: pulumi.Input[str]
2299
+ """
2300
+ The tag's key.
2301
+ """
2302
+ value: pulumi.Input[str]
2303
+ """
2304
+ The tag's value.
2305
+ """
2306
+ elif False:
2307
+ MetricsPolicyPolicyRuleTagArgsDict: TypeAlias = Mapping[str, Any]
2308
+
1784
2309
  @pulumi.input_type
1785
2310
  class MetricsPolicyPolicyRuleTagArgs:
1786
2311
  def __init__(__self__, *,