pulumi-newrelic 5.54.0a1758857472__py3-none-any.whl → 5.54.1a1758943554__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.
Potentially problematic release.
This version of pulumi-newrelic might be problematic. Click here for more details.
- pulumi_newrelic/_inputs.py +296 -0
- pulumi_newrelic/outputs.py +212 -0
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/RECORD +7 -7
- {pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
|
@@ -111,6 +111,14 @@ __all__ = [
|
|
|
111
111
|
'OneDashboardPageWidgetBarUnitSeriesOverrideArgsDict',
|
|
112
112
|
'OneDashboardPageWidgetBillboardArgs',
|
|
113
113
|
'OneDashboardPageWidgetBillboardArgsDict',
|
|
114
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsArgs',
|
|
115
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsArgsDict',
|
|
116
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs',
|
|
117
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgsDict',
|
|
118
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs',
|
|
119
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsLinkArgsDict',
|
|
120
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs',
|
|
121
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsVisualArgsDict',
|
|
114
122
|
'OneDashboardPageWidgetBillboardColorArgs',
|
|
115
123
|
'OneDashboardPageWidgetBillboardColorArgsDict',
|
|
116
124
|
'OneDashboardPageWidgetBillboardColorSeriesOverrideArgs',
|
|
@@ -4972,6 +4980,10 @@ if not MYPY:
|
|
|
4972
4980
|
"""
|
|
4973
4981
|
(Optional) A human-friendly display string for this value.
|
|
4974
4982
|
"""
|
|
4983
|
+
billboard_settings: NotRequired[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsArgsDict']]
|
|
4984
|
+
"""
|
|
4985
|
+
(Optional) A nested block that describes billboard specific settings. See Nested billboard\\_settings blocks below for details.
|
|
4986
|
+
"""
|
|
4975
4987
|
colors: NotRequired[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardColorArgsDict']]]]
|
|
4976
4988
|
"""
|
|
4977
4989
|
(Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -5043,6 +5055,7 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
|
5043
5055
|
nrql_queries: pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardNrqlQueryArgs']]],
|
|
5044
5056
|
row: pulumi.Input[_builtins.int],
|
|
5045
5057
|
title: pulumi.Input[_builtins.str],
|
|
5058
|
+
billboard_settings: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsArgs']] = None,
|
|
5046
5059
|
colors: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardColorArgs']]]] = None,
|
|
5047
5060
|
critical: Optional[pulumi.Input[_builtins.str]] = None,
|
|
5048
5061
|
data_formats: Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardDataFormatArgs']]]] = None,
|
|
@@ -5064,6 +5077,7 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
|
5064
5077
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardNrqlQueryArgs']]] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
5065
5078
|
:param pulumi.Input[_builtins.int] row: (Required) Row position of widget from top left, starting at `1`.
|
|
5066
5079
|
:param pulumi.Input[_builtins.str] title: (Optional) A human-friendly display string for this value.
|
|
5080
|
+
:param pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsArgs'] billboard_settings: (Optional) A nested block that describes billboard specific settings. See Nested billboard\\_settings blocks below for details.
|
|
5067
5081
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardColorArgs']]] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
5068
5082
|
:param pulumi.Input[_builtins.str] critical: (Optional) Threshold above which the displayed value will be styled with a red color.
|
|
5069
5083
|
:param pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardDataFormatArgs']]] data_formats: (Optional) A nested block that describes data format. See Nested data_format blocks below for details.
|
|
@@ -5084,6 +5098,8 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
|
5084
5098
|
pulumi.set(__self__, "nrql_queries", nrql_queries)
|
|
5085
5099
|
pulumi.set(__self__, "row", row)
|
|
5086
5100
|
pulumi.set(__self__, "title", title)
|
|
5101
|
+
if billboard_settings is not None:
|
|
5102
|
+
pulumi.set(__self__, "billboard_settings", billboard_settings)
|
|
5087
5103
|
if colors is not None:
|
|
5088
5104
|
pulumi.set(__self__, "colors", colors)
|
|
5089
5105
|
if critical is not None:
|
|
@@ -5165,6 +5181,18 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
|
5165
5181
|
def title(self, value: pulumi.Input[_builtins.str]):
|
|
5166
5182
|
pulumi.set(self, "title", value)
|
|
5167
5183
|
|
|
5184
|
+
@_builtins.property
|
|
5185
|
+
@pulumi.getter(name="billboardSettings")
|
|
5186
|
+
def billboard_settings(self) -> Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsArgs']]:
|
|
5187
|
+
"""
|
|
5188
|
+
(Optional) A nested block that describes billboard specific settings. See Nested billboard\\_settings blocks below for details.
|
|
5189
|
+
"""
|
|
5190
|
+
return pulumi.get(self, "billboard_settings")
|
|
5191
|
+
|
|
5192
|
+
@billboard_settings.setter
|
|
5193
|
+
def billboard_settings(self, value: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsArgs']]):
|
|
5194
|
+
pulumi.set(self, "billboard_settings", value)
|
|
5195
|
+
|
|
5168
5196
|
@_builtins.property
|
|
5169
5197
|
@pulumi.getter
|
|
5170
5198
|
def colors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OneDashboardPageWidgetBillboardColorArgs']]]]:
|
|
@@ -5355,6 +5383,274 @@ class OneDashboardPageWidgetBillboardArgs:
|
|
|
5355
5383
|
pulumi.set(self, "y_axis_left_min", value)
|
|
5356
5384
|
|
|
5357
5385
|
|
|
5386
|
+
if not MYPY:
|
|
5387
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsArgsDict(TypedDict):
|
|
5388
|
+
grid_options: NotRequired[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgsDict']]
|
|
5389
|
+
"""
|
|
5390
|
+
(Optional) A nested block that configures grid layout options for the billboard widget. This block supports:
|
|
5391
|
+
"""
|
|
5392
|
+
link: NotRequired[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsLinkArgsDict']]
|
|
5393
|
+
"""
|
|
5394
|
+
(Optional) A nested block that configures clickable links for the billboard widget. This block supports:
|
|
5395
|
+
"""
|
|
5396
|
+
visual: NotRequired[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsVisualArgsDict']]
|
|
5397
|
+
"""
|
|
5398
|
+
(Optional) A nested block that configures the visual settings of the billboard widget. This block supports:
|
|
5399
|
+
"""
|
|
5400
|
+
elif False:
|
|
5401
|
+
OneDashboardPageWidgetBillboardBillboardSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
5402
|
+
|
|
5403
|
+
@pulumi.input_type
|
|
5404
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsArgs:
|
|
5405
|
+
def __init__(__self__, *,
|
|
5406
|
+
grid_options: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs']] = None,
|
|
5407
|
+
link: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs']] = None,
|
|
5408
|
+
visual: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs']] = None):
|
|
5409
|
+
"""
|
|
5410
|
+
:param pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs'] grid_options: (Optional) A nested block that configures grid layout options for the billboard widget. This block supports:
|
|
5411
|
+
:param pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs'] link: (Optional) A nested block that configures clickable links for the billboard widget. This block supports:
|
|
5412
|
+
:param pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs'] visual: (Optional) A nested block that configures the visual settings of the billboard widget. This block supports:
|
|
5413
|
+
"""
|
|
5414
|
+
if grid_options is not None:
|
|
5415
|
+
pulumi.set(__self__, "grid_options", grid_options)
|
|
5416
|
+
if link is not None:
|
|
5417
|
+
pulumi.set(__self__, "link", link)
|
|
5418
|
+
if visual is not None:
|
|
5419
|
+
pulumi.set(__self__, "visual", visual)
|
|
5420
|
+
|
|
5421
|
+
@_builtins.property
|
|
5422
|
+
@pulumi.getter(name="gridOptions")
|
|
5423
|
+
def grid_options(self) -> Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs']]:
|
|
5424
|
+
"""
|
|
5425
|
+
(Optional) A nested block that configures grid layout options for the billboard widget. This block supports:
|
|
5426
|
+
"""
|
|
5427
|
+
return pulumi.get(self, "grid_options")
|
|
5428
|
+
|
|
5429
|
+
@grid_options.setter
|
|
5430
|
+
def grid_options(self, value: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs']]):
|
|
5431
|
+
pulumi.set(self, "grid_options", value)
|
|
5432
|
+
|
|
5433
|
+
@_builtins.property
|
|
5434
|
+
@pulumi.getter
|
|
5435
|
+
def link(self) -> Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs']]:
|
|
5436
|
+
"""
|
|
5437
|
+
(Optional) A nested block that configures clickable links for the billboard widget. This block supports:
|
|
5438
|
+
"""
|
|
5439
|
+
return pulumi.get(self, "link")
|
|
5440
|
+
|
|
5441
|
+
@link.setter
|
|
5442
|
+
def link(self, value: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs']]):
|
|
5443
|
+
pulumi.set(self, "link", value)
|
|
5444
|
+
|
|
5445
|
+
@_builtins.property
|
|
5446
|
+
@pulumi.getter
|
|
5447
|
+
def visual(self) -> Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs']]:
|
|
5448
|
+
"""
|
|
5449
|
+
(Optional) A nested block that configures the visual settings of the billboard widget. This block supports:
|
|
5450
|
+
"""
|
|
5451
|
+
return pulumi.get(self, "visual")
|
|
5452
|
+
|
|
5453
|
+
@visual.setter
|
|
5454
|
+
def visual(self, value: Optional[pulumi.Input['OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs']]):
|
|
5455
|
+
pulumi.set(self, "visual", value)
|
|
5456
|
+
|
|
5457
|
+
|
|
5458
|
+
if not MYPY:
|
|
5459
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgsDict(TypedDict):
|
|
5460
|
+
columns: NotRequired[pulumi.Input[_builtins.int]]
|
|
5461
|
+
"""
|
|
5462
|
+
(Optional) Number of columns to use for the grid layout.
|
|
5463
|
+
"""
|
|
5464
|
+
label: NotRequired[pulumi.Input[_builtins.int]]
|
|
5465
|
+
"""
|
|
5466
|
+
(Optional) Grid configuration for label.
|
|
5467
|
+
"""
|
|
5468
|
+
value: NotRequired[pulumi.Input[_builtins.int]]
|
|
5469
|
+
"""
|
|
5470
|
+
(Required) A possible variable value
|
|
5471
|
+
"""
|
|
5472
|
+
elif False:
|
|
5473
|
+
OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
5474
|
+
|
|
5475
|
+
@pulumi.input_type
|
|
5476
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs:
|
|
5477
|
+
def __init__(__self__, *,
|
|
5478
|
+
columns: Optional[pulumi.Input[_builtins.int]] = None,
|
|
5479
|
+
label: Optional[pulumi.Input[_builtins.int]] = None,
|
|
5480
|
+
value: Optional[pulumi.Input[_builtins.int]] = None):
|
|
5481
|
+
"""
|
|
5482
|
+
:param pulumi.Input[_builtins.int] columns: (Optional) Number of columns to use for the grid layout.
|
|
5483
|
+
:param pulumi.Input[_builtins.int] label: (Optional) Grid configuration for label.
|
|
5484
|
+
:param pulumi.Input[_builtins.int] value: (Required) A possible variable value
|
|
5485
|
+
"""
|
|
5486
|
+
if columns is not None:
|
|
5487
|
+
pulumi.set(__self__, "columns", columns)
|
|
5488
|
+
if label is not None:
|
|
5489
|
+
pulumi.set(__self__, "label", label)
|
|
5490
|
+
if value is not None:
|
|
5491
|
+
pulumi.set(__self__, "value", value)
|
|
5492
|
+
|
|
5493
|
+
@_builtins.property
|
|
5494
|
+
@pulumi.getter
|
|
5495
|
+
def columns(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
5496
|
+
"""
|
|
5497
|
+
(Optional) Number of columns to use for the grid layout.
|
|
5498
|
+
"""
|
|
5499
|
+
return pulumi.get(self, "columns")
|
|
5500
|
+
|
|
5501
|
+
@columns.setter
|
|
5502
|
+
def columns(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
5503
|
+
pulumi.set(self, "columns", value)
|
|
5504
|
+
|
|
5505
|
+
@_builtins.property
|
|
5506
|
+
@pulumi.getter
|
|
5507
|
+
def label(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
5508
|
+
"""
|
|
5509
|
+
(Optional) Grid configuration for label.
|
|
5510
|
+
"""
|
|
5511
|
+
return pulumi.get(self, "label")
|
|
5512
|
+
|
|
5513
|
+
@label.setter
|
|
5514
|
+
def label(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
5515
|
+
pulumi.set(self, "label", value)
|
|
5516
|
+
|
|
5517
|
+
@_builtins.property
|
|
5518
|
+
@pulumi.getter
|
|
5519
|
+
def value(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
5520
|
+
"""
|
|
5521
|
+
(Required) A possible variable value
|
|
5522
|
+
"""
|
|
5523
|
+
return pulumi.get(self, "value")
|
|
5524
|
+
|
|
5525
|
+
@value.setter
|
|
5526
|
+
def value(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
5527
|
+
pulumi.set(self, "value", value)
|
|
5528
|
+
|
|
5529
|
+
|
|
5530
|
+
if not MYPY:
|
|
5531
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsLinkArgsDict(TypedDict):
|
|
5532
|
+
new_tab: NotRequired[pulumi.Input[_builtins.bool]]
|
|
5533
|
+
"""
|
|
5534
|
+
(Optional) Boolean value indicating whether the link should open in a new tab. Defaults to `false`.
|
|
5535
|
+
"""
|
|
5536
|
+
title: NotRequired[pulumi.Input[_builtins.str]]
|
|
5537
|
+
"""
|
|
5538
|
+
(Optional) A human-friendly display string for this value.
|
|
5539
|
+
"""
|
|
5540
|
+
url: NotRequired[pulumi.Input[_builtins.str]]
|
|
5541
|
+
"""
|
|
5542
|
+
(Optional) The URL to navigate to when the billboard is clicked.
|
|
5543
|
+
"""
|
|
5544
|
+
elif False:
|
|
5545
|
+
OneDashboardPageWidgetBillboardBillboardSettingsLinkArgsDict: TypeAlias = Mapping[str, Any]
|
|
5546
|
+
|
|
5547
|
+
@pulumi.input_type
|
|
5548
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs:
|
|
5549
|
+
def __init__(__self__, *,
|
|
5550
|
+
new_tab: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
5551
|
+
title: Optional[pulumi.Input[_builtins.str]] = None,
|
|
5552
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
|
5553
|
+
"""
|
|
5554
|
+
:param pulumi.Input[_builtins.bool] new_tab: (Optional) Boolean value indicating whether the link should open in a new tab. Defaults to `false`.
|
|
5555
|
+
:param pulumi.Input[_builtins.str] title: (Optional) A human-friendly display string for this value.
|
|
5556
|
+
:param pulumi.Input[_builtins.str] url: (Optional) The URL to navigate to when the billboard is clicked.
|
|
5557
|
+
"""
|
|
5558
|
+
if new_tab is not None:
|
|
5559
|
+
pulumi.set(__self__, "new_tab", new_tab)
|
|
5560
|
+
if title is not None:
|
|
5561
|
+
pulumi.set(__self__, "title", title)
|
|
5562
|
+
if url is not None:
|
|
5563
|
+
pulumi.set(__self__, "url", url)
|
|
5564
|
+
|
|
5565
|
+
@_builtins.property
|
|
5566
|
+
@pulumi.getter(name="newTab")
|
|
5567
|
+
def new_tab(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
5568
|
+
"""
|
|
5569
|
+
(Optional) Boolean value indicating whether the link should open in a new tab. Defaults to `false`.
|
|
5570
|
+
"""
|
|
5571
|
+
return pulumi.get(self, "new_tab")
|
|
5572
|
+
|
|
5573
|
+
@new_tab.setter
|
|
5574
|
+
def new_tab(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
5575
|
+
pulumi.set(self, "new_tab", value)
|
|
5576
|
+
|
|
5577
|
+
@_builtins.property
|
|
5578
|
+
@pulumi.getter
|
|
5579
|
+
def title(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5580
|
+
"""
|
|
5581
|
+
(Optional) A human-friendly display string for this value.
|
|
5582
|
+
"""
|
|
5583
|
+
return pulumi.get(self, "title")
|
|
5584
|
+
|
|
5585
|
+
@title.setter
|
|
5586
|
+
def title(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5587
|
+
pulumi.set(self, "title", value)
|
|
5588
|
+
|
|
5589
|
+
@_builtins.property
|
|
5590
|
+
@pulumi.getter
|
|
5591
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5592
|
+
"""
|
|
5593
|
+
(Optional) The URL to navigate to when the billboard is clicked.
|
|
5594
|
+
"""
|
|
5595
|
+
return pulumi.get(self, "url")
|
|
5596
|
+
|
|
5597
|
+
@url.setter
|
|
5598
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5599
|
+
pulumi.set(self, "url", value)
|
|
5600
|
+
|
|
5601
|
+
|
|
5602
|
+
if not MYPY:
|
|
5603
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsVisualArgsDict(TypedDict):
|
|
5604
|
+
alignment: NotRequired[pulumi.Input[_builtins.str]]
|
|
5605
|
+
"""
|
|
5606
|
+
(Optional) Controls the alignment of the billboard content. Accepted values are `inline` or `stacked`.
|
|
5607
|
+
"""
|
|
5608
|
+
display: NotRequired[pulumi.Input[_builtins.str]]
|
|
5609
|
+
"""
|
|
5610
|
+
(Optional) Controls how the billboard content is displayed. Accepted values are `auto`, `all`, `none`, `label` or `value`.
|
|
5611
|
+
"""
|
|
5612
|
+
elif False:
|
|
5613
|
+
OneDashboardPageWidgetBillboardBillboardSettingsVisualArgsDict: TypeAlias = Mapping[str, Any]
|
|
5614
|
+
|
|
5615
|
+
@pulumi.input_type
|
|
5616
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs:
|
|
5617
|
+
def __init__(__self__, *,
|
|
5618
|
+
alignment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
5619
|
+
display: Optional[pulumi.Input[_builtins.str]] = None):
|
|
5620
|
+
"""
|
|
5621
|
+
:param pulumi.Input[_builtins.str] alignment: (Optional) Controls the alignment of the billboard content. Accepted values are `inline` or `stacked`.
|
|
5622
|
+
:param pulumi.Input[_builtins.str] display: (Optional) Controls how the billboard content is displayed. Accepted values are `auto`, `all`, `none`, `label` or `value`.
|
|
5623
|
+
"""
|
|
5624
|
+
if alignment is not None:
|
|
5625
|
+
pulumi.set(__self__, "alignment", alignment)
|
|
5626
|
+
if display is not None:
|
|
5627
|
+
pulumi.set(__self__, "display", display)
|
|
5628
|
+
|
|
5629
|
+
@_builtins.property
|
|
5630
|
+
@pulumi.getter
|
|
5631
|
+
def alignment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5632
|
+
"""
|
|
5633
|
+
(Optional) Controls the alignment of the billboard content. Accepted values are `inline` or `stacked`.
|
|
5634
|
+
"""
|
|
5635
|
+
return pulumi.get(self, "alignment")
|
|
5636
|
+
|
|
5637
|
+
@alignment.setter
|
|
5638
|
+
def alignment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5639
|
+
pulumi.set(self, "alignment", value)
|
|
5640
|
+
|
|
5641
|
+
@_builtins.property
|
|
5642
|
+
@pulumi.getter
|
|
5643
|
+
def display(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5644
|
+
"""
|
|
5645
|
+
(Optional) Controls how the billboard content is displayed. Accepted values are `auto`, `all`, `none`, `label` or `value`.
|
|
5646
|
+
"""
|
|
5647
|
+
return pulumi.get(self, "display")
|
|
5648
|
+
|
|
5649
|
+
@display.setter
|
|
5650
|
+
def display(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5651
|
+
pulumi.set(self, "display", value)
|
|
5652
|
+
|
|
5653
|
+
|
|
5358
5654
|
if not MYPY:
|
|
5359
5655
|
class OneDashboardPageWidgetBillboardColorArgsDict(TypedDict):
|
|
5360
5656
|
color: NotRequired[pulumi.Input[_builtins.str]]
|
pulumi_newrelic/outputs.py
CHANGED
|
@@ -64,6 +64,10 @@ __all__ = [
|
|
|
64
64
|
'OneDashboardPageWidgetBarUnit',
|
|
65
65
|
'OneDashboardPageWidgetBarUnitSeriesOverride',
|
|
66
66
|
'OneDashboardPageWidgetBillboard',
|
|
67
|
+
'OneDashboardPageWidgetBillboardBillboardSettings',
|
|
68
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsGridOptions',
|
|
69
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsLink',
|
|
70
|
+
'OneDashboardPageWidgetBillboardBillboardSettingsVisual',
|
|
67
71
|
'OneDashboardPageWidgetBillboardColor',
|
|
68
72
|
'OneDashboardPageWidgetBillboardColorSeriesOverride',
|
|
69
73
|
'OneDashboardPageWidgetBillboardDataFormat',
|
|
@@ -3662,6 +3666,8 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3662
3666
|
suggest = None
|
|
3663
3667
|
if key == "nrqlQueries":
|
|
3664
3668
|
suggest = "nrql_queries"
|
|
3669
|
+
elif key == "billboardSettings":
|
|
3670
|
+
suggest = "billboard_settings"
|
|
3665
3671
|
elif key == "dataFormats":
|
|
3666
3672
|
suggest = "data_formats"
|
|
3667
3673
|
elif key == "facetShowOtherSeries":
|
|
@@ -3697,6 +3703,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3697
3703
|
nrql_queries: Sequence['outputs.OneDashboardPageWidgetBillboardNrqlQuery'],
|
|
3698
3704
|
row: _builtins.int,
|
|
3699
3705
|
title: _builtins.str,
|
|
3706
|
+
billboard_settings: Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettings'] = None,
|
|
3700
3707
|
colors: Optional[Sequence['outputs.OneDashboardPageWidgetBillboardColor']] = None,
|
|
3701
3708
|
critical: Optional[_builtins.str] = None,
|
|
3702
3709
|
data_formats: Optional[Sequence['outputs.OneDashboardPageWidgetBillboardDataFormat']] = None,
|
|
@@ -3718,6 +3725,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3718
3725
|
:param Sequence['OneDashboardPageWidgetBillboardNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
3719
3726
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
3720
3727
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
3728
|
+
:param 'OneDashboardPageWidgetBillboardBillboardSettingsArgs' billboard_settings: (Optional) A nested block that describes billboard specific settings. See Nested billboard\\_settings blocks below for details.
|
|
3721
3729
|
:param Sequence['OneDashboardPageWidgetBillboardColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
3722
3730
|
:param _builtins.str critical: (Optional) Threshold above which the displayed value will be styled with a red color.
|
|
3723
3731
|
:param Sequence['OneDashboardPageWidgetBillboardDataFormatArgs'] data_formats: (Optional) A nested block that describes data format. See Nested data_format blocks below for details.
|
|
@@ -3738,6 +3746,8 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3738
3746
|
pulumi.set(__self__, "nrql_queries", nrql_queries)
|
|
3739
3747
|
pulumi.set(__self__, "row", row)
|
|
3740
3748
|
pulumi.set(__self__, "title", title)
|
|
3749
|
+
if billboard_settings is not None:
|
|
3750
|
+
pulumi.set(__self__, "billboard_settings", billboard_settings)
|
|
3741
3751
|
if colors is not None:
|
|
3742
3752
|
pulumi.set(__self__, "colors", colors)
|
|
3743
3753
|
if critical is not None:
|
|
@@ -3803,6 +3813,14 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3803
3813
|
"""
|
|
3804
3814
|
return pulumi.get(self, "title")
|
|
3805
3815
|
|
|
3816
|
+
@_builtins.property
|
|
3817
|
+
@pulumi.getter(name="billboardSettings")
|
|
3818
|
+
def billboard_settings(self) -> Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettings']:
|
|
3819
|
+
"""
|
|
3820
|
+
(Optional) A nested block that describes billboard specific settings. See Nested billboard\\_settings blocks below for details.
|
|
3821
|
+
"""
|
|
3822
|
+
return pulumi.get(self, "billboard_settings")
|
|
3823
|
+
|
|
3806
3824
|
@_builtins.property
|
|
3807
3825
|
@pulumi.getter
|
|
3808
3826
|
def colors(self) -> Optional[Sequence['outputs.OneDashboardPageWidgetBillboardColor']]:
|
|
@@ -3929,6 +3947,200 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3929
3947
|
return pulumi.get(self, "y_axis_left_min")
|
|
3930
3948
|
|
|
3931
3949
|
|
|
3950
|
+
@pulumi.output_type
|
|
3951
|
+
class OneDashboardPageWidgetBillboardBillboardSettings(dict):
|
|
3952
|
+
@staticmethod
|
|
3953
|
+
def __key_warning(key: str):
|
|
3954
|
+
suggest = None
|
|
3955
|
+
if key == "gridOptions":
|
|
3956
|
+
suggest = "grid_options"
|
|
3957
|
+
|
|
3958
|
+
if suggest:
|
|
3959
|
+
pulumi.log.warn(f"Key '{key}' not found in OneDashboardPageWidgetBillboardBillboardSettings. Access the value via the '{suggest}' property getter instead.")
|
|
3960
|
+
|
|
3961
|
+
def __getitem__(self, key: str) -> Any:
|
|
3962
|
+
OneDashboardPageWidgetBillboardBillboardSettings.__key_warning(key)
|
|
3963
|
+
return super().__getitem__(key)
|
|
3964
|
+
|
|
3965
|
+
def get(self, key: str, default = None) -> Any:
|
|
3966
|
+
OneDashboardPageWidgetBillboardBillboardSettings.__key_warning(key)
|
|
3967
|
+
return super().get(key, default)
|
|
3968
|
+
|
|
3969
|
+
def __init__(__self__, *,
|
|
3970
|
+
grid_options: Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsGridOptions'] = None,
|
|
3971
|
+
link: Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsLink'] = None,
|
|
3972
|
+
visual: Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsVisual'] = None):
|
|
3973
|
+
"""
|
|
3974
|
+
:param 'OneDashboardPageWidgetBillboardBillboardSettingsGridOptionsArgs' grid_options: (Optional) A nested block that configures grid layout options for the billboard widget. This block supports:
|
|
3975
|
+
:param 'OneDashboardPageWidgetBillboardBillboardSettingsLinkArgs' link: (Optional) A nested block that configures clickable links for the billboard widget. This block supports:
|
|
3976
|
+
:param 'OneDashboardPageWidgetBillboardBillboardSettingsVisualArgs' visual: (Optional) A nested block that configures the visual settings of the billboard widget. This block supports:
|
|
3977
|
+
"""
|
|
3978
|
+
if grid_options is not None:
|
|
3979
|
+
pulumi.set(__self__, "grid_options", grid_options)
|
|
3980
|
+
if link is not None:
|
|
3981
|
+
pulumi.set(__self__, "link", link)
|
|
3982
|
+
if visual is not None:
|
|
3983
|
+
pulumi.set(__self__, "visual", visual)
|
|
3984
|
+
|
|
3985
|
+
@_builtins.property
|
|
3986
|
+
@pulumi.getter(name="gridOptions")
|
|
3987
|
+
def grid_options(self) -> Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsGridOptions']:
|
|
3988
|
+
"""
|
|
3989
|
+
(Optional) A nested block that configures grid layout options for the billboard widget. This block supports:
|
|
3990
|
+
"""
|
|
3991
|
+
return pulumi.get(self, "grid_options")
|
|
3992
|
+
|
|
3993
|
+
@_builtins.property
|
|
3994
|
+
@pulumi.getter
|
|
3995
|
+
def link(self) -> Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsLink']:
|
|
3996
|
+
"""
|
|
3997
|
+
(Optional) A nested block that configures clickable links for the billboard widget. This block supports:
|
|
3998
|
+
"""
|
|
3999
|
+
return pulumi.get(self, "link")
|
|
4000
|
+
|
|
4001
|
+
@_builtins.property
|
|
4002
|
+
@pulumi.getter
|
|
4003
|
+
def visual(self) -> Optional['outputs.OneDashboardPageWidgetBillboardBillboardSettingsVisual']:
|
|
4004
|
+
"""
|
|
4005
|
+
(Optional) A nested block that configures the visual settings of the billboard widget. This block supports:
|
|
4006
|
+
"""
|
|
4007
|
+
return pulumi.get(self, "visual")
|
|
4008
|
+
|
|
4009
|
+
|
|
4010
|
+
@pulumi.output_type
|
|
4011
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsGridOptions(dict):
|
|
4012
|
+
def __init__(__self__, *,
|
|
4013
|
+
columns: Optional[_builtins.int] = None,
|
|
4014
|
+
label: Optional[_builtins.int] = None,
|
|
4015
|
+
value: Optional[_builtins.int] = None):
|
|
4016
|
+
"""
|
|
4017
|
+
:param _builtins.int columns: (Optional) Number of columns to use for the grid layout.
|
|
4018
|
+
:param _builtins.int label: (Optional) Grid configuration for label.
|
|
4019
|
+
:param _builtins.int value: (Required) A possible variable value
|
|
4020
|
+
"""
|
|
4021
|
+
if columns is not None:
|
|
4022
|
+
pulumi.set(__self__, "columns", columns)
|
|
4023
|
+
if label is not None:
|
|
4024
|
+
pulumi.set(__self__, "label", label)
|
|
4025
|
+
if value is not None:
|
|
4026
|
+
pulumi.set(__self__, "value", value)
|
|
4027
|
+
|
|
4028
|
+
@_builtins.property
|
|
4029
|
+
@pulumi.getter
|
|
4030
|
+
def columns(self) -> Optional[_builtins.int]:
|
|
4031
|
+
"""
|
|
4032
|
+
(Optional) Number of columns to use for the grid layout.
|
|
4033
|
+
"""
|
|
4034
|
+
return pulumi.get(self, "columns")
|
|
4035
|
+
|
|
4036
|
+
@_builtins.property
|
|
4037
|
+
@pulumi.getter
|
|
4038
|
+
def label(self) -> Optional[_builtins.int]:
|
|
4039
|
+
"""
|
|
4040
|
+
(Optional) Grid configuration for label.
|
|
4041
|
+
"""
|
|
4042
|
+
return pulumi.get(self, "label")
|
|
4043
|
+
|
|
4044
|
+
@_builtins.property
|
|
4045
|
+
@pulumi.getter
|
|
4046
|
+
def value(self) -> Optional[_builtins.int]:
|
|
4047
|
+
"""
|
|
4048
|
+
(Required) A possible variable value
|
|
4049
|
+
"""
|
|
4050
|
+
return pulumi.get(self, "value")
|
|
4051
|
+
|
|
4052
|
+
|
|
4053
|
+
@pulumi.output_type
|
|
4054
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsLink(dict):
|
|
4055
|
+
@staticmethod
|
|
4056
|
+
def __key_warning(key: str):
|
|
4057
|
+
suggest = None
|
|
4058
|
+
if key == "newTab":
|
|
4059
|
+
suggest = "new_tab"
|
|
4060
|
+
|
|
4061
|
+
if suggest:
|
|
4062
|
+
pulumi.log.warn(f"Key '{key}' not found in OneDashboardPageWidgetBillboardBillboardSettingsLink. Access the value via the '{suggest}' property getter instead.")
|
|
4063
|
+
|
|
4064
|
+
def __getitem__(self, key: str) -> Any:
|
|
4065
|
+
OneDashboardPageWidgetBillboardBillboardSettingsLink.__key_warning(key)
|
|
4066
|
+
return super().__getitem__(key)
|
|
4067
|
+
|
|
4068
|
+
def get(self, key: str, default = None) -> Any:
|
|
4069
|
+
OneDashboardPageWidgetBillboardBillboardSettingsLink.__key_warning(key)
|
|
4070
|
+
return super().get(key, default)
|
|
4071
|
+
|
|
4072
|
+
def __init__(__self__, *,
|
|
4073
|
+
new_tab: Optional[_builtins.bool] = None,
|
|
4074
|
+
title: Optional[_builtins.str] = None,
|
|
4075
|
+
url: Optional[_builtins.str] = None):
|
|
4076
|
+
"""
|
|
4077
|
+
:param _builtins.bool new_tab: (Optional) Boolean value indicating whether the link should open in a new tab. Defaults to `false`.
|
|
4078
|
+
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
4079
|
+
:param _builtins.str url: (Optional) The URL to navigate to when the billboard is clicked.
|
|
4080
|
+
"""
|
|
4081
|
+
if new_tab is not None:
|
|
4082
|
+
pulumi.set(__self__, "new_tab", new_tab)
|
|
4083
|
+
if title is not None:
|
|
4084
|
+
pulumi.set(__self__, "title", title)
|
|
4085
|
+
if url is not None:
|
|
4086
|
+
pulumi.set(__self__, "url", url)
|
|
4087
|
+
|
|
4088
|
+
@_builtins.property
|
|
4089
|
+
@pulumi.getter(name="newTab")
|
|
4090
|
+
def new_tab(self) -> Optional[_builtins.bool]:
|
|
4091
|
+
"""
|
|
4092
|
+
(Optional) Boolean value indicating whether the link should open in a new tab. Defaults to `false`.
|
|
4093
|
+
"""
|
|
4094
|
+
return pulumi.get(self, "new_tab")
|
|
4095
|
+
|
|
4096
|
+
@_builtins.property
|
|
4097
|
+
@pulumi.getter
|
|
4098
|
+
def title(self) -> Optional[_builtins.str]:
|
|
4099
|
+
"""
|
|
4100
|
+
(Optional) A human-friendly display string for this value.
|
|
4101
|
+
"""
|
|
4102
|
+
return pulumi.get(self, "title")
|
|
4103
|
+
|
|
4104
|
+
@_builtins.property
|
|
4105
|
+
@pulumi.getter
|
|
4106
|
+
def url(self) -> Optional[_builtins.str]:
|
|
4107
|
+
"""
|
|
4108
|
+
(Optional) The URL to navigate to when the billboard is clicked.
|
|
4109
|
+
"""
|
|
4110
|
+
return pulumi.get(self, "url")
|
|
4111
|
+
|
|
4112
|
+
|
|
4113
|
+
@pulumi.output_type
|
|
4114
|
+
class OneDashboardPageWidgetBillboardBillboardSettingsVisual(dict):
|
|
4115
|
+
def __init__(__self__, *,
|
|
4116
|
+
alignment: Optional[_builtins.str] = None,
|
|
4117
|
+
display: Optional[_builtins.str] = None):
|
|
4118
|
+
"""
|
|
4119
|
+
:param _builtins.str alignment: (Optional) Controls the alignment of the billboard content. Accepted values are `inline` or `stacked`.
|
|
4120
|
+
:param _builtins.str display: (Optional) Controls how the billboard content is displayed. Accepted values are `auto`, `all`, `none`, `label` or `value`.
|
|
4121
|
+
"""
|
|
4122
|
+
if alignment is not None:
|
|
4123
|
+
pulumi.set(__self__, "alignment", alignment)
|
|
4124
|
+
if display is not None:
|
|
4125
|
+
pulumi.set(__self__, "display", display)
|
|
4126
|
+
|
|
4127
|
+
@_builtins.property
|
|
4128
|
+
@pulumi.getter
|
|
4129
|
+
def alignment(self) -> Optional[_builtins.str]:
|
|
4130
|
+
"""
|
|
4131
|
+
(Optional) Controls the alignment of the billboard content. Accepted values are `inline` or `stacked`.
|
|
4132
|
+
"""
|
|
4133
|
+
return pulumi.get(self, "alignment")
|
|
4134
|
+
|
|
4135
|
+
@_builtins.property
|
|
4136
|
+
@pulumi.getter
|
|
4137
|
+
def display(self) -> Optional[_builtins.str]:
|
|
4138
|
+
"""
|
|
4139
|
+
(Optional) Controls how the billboard content is displayed. Accepted values are `auto`, `all`, `none`, `label` or `value`.
|
|
4140
|
+
"""
|
|
4141
|
+
return pulumi.get(self, "display")
|
|
4142
|
+
|
|
4143
|
+
|
|
3932
4144
|
@pulumi.output_type
|
|
3933
4145
|
class OneDashboardPageWidgetBillboardColor(dict):
|
|
3934
4146
|
@staticmethod
|
{pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ma56W4OeGlJh2pTw9kc6w_x005-3zos6IvfN3fpqB-c,11951
|
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=hlcDlM9gB0ZuZum0qn7XIy140SPW2HRCS1dVh1uQho8,874665
|
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_newrelic/account_management.py,sha256=BkirbUsR5h8x4Y_JSA_08xzF7bKiQQapAO-PdMk9YAA,9375
|
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=35awkvt2Hw1E2o0wvJUo91m4PKte-M7wAtzbUxlBVOo,22427
|
|
@@ -40,10 +40,10 @@ pulumi_newrelic/obfuscation_rule.py,sha256=i-7TgU5nsjsSAM5cLdKPKiReUMGVlkvDyAgCk
|
|
|
40
40
|
pulumi_newrelic/one_dashboard.py,sha256=siAjVf7CK3wJeOuprhFyhiAoO06KHWqkdNf5BX3Vf9A,21836
|
|
41
41
|
pulumi_newrelic/one_dashboard_json.py,sha256=jZ3BH18YiQjUzS0AyJGpFcyj3Ai8ZlKuVrMT-bWV5Dc,13476
|
|
42
42
|
pulumi_newrelic/one_dashboard_raw.py,sha256=bTp__xyOtRYfwLR81YQLYyi_9NQNpTee7B_dIhnMGaM,24626
|
|
43
|
-
pulumi_newrelic/outputs.py,sha256=
|
|
43
|
+
pulumi_newrelic/outputs.py,sha256=JoLnE95YqfEuG8lOYpUILpHsWI6DD829e63iPK-1Lqg,630645
|
|
44
44
|
pulumi_newrelic/pipeline_cloud_rule.py,sha256=I6874bmRCGe0b_ClHs86qyYkpFML2QvD_iMzJ-NN_ws,13644
|
|
45
45
|
pulumi_newrelic/provider.py,sha256=644yJkWitRT_BZOlW_q-_W0x_bnLAIfOrFx_O1V_CEA,20441
|
|
46
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
|
46
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=ztudz4YRNM32D_ZxA5p4uRhzDjEOh8uSeQqYb78Ofdc,85
|
|
47
47
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
pulumi_newrelic/service_level.py,sha256=gxclcbnMv1zxbt3ZSR1QCHSzcKiYXUCJfFjbyn3mKvE,29792
|
|
49
49
|
pulumi_newrelic/user.py,sha256=CTl-KJ2yLDl8dwmRGksYCHCQ2KvUyA8U81WV4cGpaj4,19842
|
|
@@ -86,7 +86,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=RInZWYYxloyzGmgaVTsEO_fGrn
|
|
|
86
86
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=Ijs_jSriw0BFjqEt7sS5jfaiunBhmEB-Li-ED3lYhaM,73319
|
|
87
87
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=f4gs62_FcBaeO6YMZLMKwBuOS73qxpKmudoelXbmtso,16701
|
|
88
88
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=1PtSgEInngOinmSSPaPqIxwJx2iSRoMSa9Fw6zlh-rQ,52671
|
|
89
|
-
pulumi_newrelic-5.54.
|
|
90
|
-
pulumi_newrelic-5.54.
|
|
91
|
-
pulumi_newrelic-5.54.
|
|
92
|
-
pulumi_newrelic-5.54.
|
|
89
|
+
pulumi_newrelic-5.54.1a1758943554.dist-info/METADATA,sha256=hmflLdgragUl2dm-usiD-gUH8BjU53jUU2cwePND7rw,3966
|
|
90
|
+
pulumi_newrelic-5.54.1a1758943554.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
91
|
+
pulumi_newrelic-5.54.1a1758943554.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
|
92
|
+
pulumi_newrelic-5.54.1a1758943554.dist-info/RECORD,,
|
{pulumi_newrelic-5.54.0a1758857472.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|