pulumi-newrelic 5.54.0a1758782193__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/__init__.py +8 -0
- pulumi_newrelic/_inputs.py +341 -45
- pulumi_newrelic/cloud/__init__.py +1 -0
- pulumi_newrelic/cloud/oci_link_account.py +980 -0
- pulumi_newrelic/outputs.py +242 -30
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.54.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.54.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/RECORD +10 -9
- {pulumi_newrelic-5.54.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.54.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/top_level.txt +0 -0
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',
|
|
@@ -2314,7 +2318,7 @@ class OneDashboardPageWidgetArea(dict):
|
|
|
2314
2318
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
2315
2319
|
"""
|
|
2316
2320
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
2317
|
-
:param Sequence['OneDashboardPageWidgetAreaNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
2321
|
+
:param Sequence['OneDashboardPageWidgetAreaNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
2318
2322
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
2319
2323
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
2320
2324
|
:param Sequence['OneDashboardPageWidgetAreaColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -2379,7 +2383,7 @@ class OneDashboardPageWidgetArea(dict):
|
|
|
2379
2383
|
@pulumi.getter(name="nrqlQueries")
|
|
2380
2384
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetAreaNrqlQuery']:
|
|
2381
2385
|
"""
|
|
2382
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
2386
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
2383
2387
|
"""
|
|
2384
2388
|
return pulumi.get(self, "nrql_queries")
|
|
2385
2389
|
|
|
@@ -3020,7 +3024,7 @@ class OneDashboardPageWidgetBar(dict):
|
|
|
3020
3024
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
3021
3025
|
"""
|
|
3022
3026
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
3023
|
-
:param Sequence['OneDashboardPageWidgetBarNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
3027
|
+
:param Sequence['OneDashboardPageWidgetBarNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
3024
3028
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
3025
3029
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
3026
3030
|
:param Sequence['OneDashboardPageWidgetBarColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -3088,7 +3092,7 @@ class OneDashboardPageWidgetBar(dict):
|
|
|
3088
3092
|
@pulumi.getter(name="nrqlQueries")
|
|
3089
3093
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetBarNrqlQuery']:
|
|
3090
3094
|
"""
|
|
3091
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
3095
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
3092
3096
|
"""
|
|
3093
3097
|
return pulumi.get(self, "nrql_queries")
|
|
3094
3098
|
|
|
@@ -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,
|
|
@@ -3715,9 +3722,10 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3715
3722
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
3716
3723
|
"""
|
|
3717
3724
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
3718
|
-
:param Sequence['OneDashboardPageWidgetBillboardNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
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:
|
|
@@ -3783,7 +3793,7 @@ class OneDashboardPageWidgetBillboard(dict):
|
|
|
3783
3793
|
@pulumi.getter(name="nrqlQueries")
|
|
3784
3794
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetBillboardNrqlQuery']:
|
|
3785
3795
|
"""
|
|
3786
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
3796
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
3787
3797
|
"""
|
|
3788
3798
|
return pulumi.get(self, "nrql_queries")
|
|
3789
3799
|
|
|
@@ -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
|
|
@@ -4410,7 +4622,7 @@ class OneDashboardPageWidgetBullet(dict):
|
|
|
4410
4622
|
"""
|
|
4411
4623
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
4412
4624
|
:param _builtins.float limit: (Required) Visualization limit for the widget.
|
|
4413
|
-
:param Sequence['OneDashboardPageWidgetBulletNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
4625
|
+
:param Sequence['OneDashboardPageWidgetBulletNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
4414
4626
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
4415
4627
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
4416
4628
|
:param Sequence['OneDashboardPageWidgetBulletColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -4481,7 +4693,7 @@ class OneDashboardPageWidgetBullet(dict):
|
|
|
4481
4693
|
@pulumi.getter(name="nrqlQueries")
|
|
4482
4694
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetBulletNrqlQuery']:
|
|
4483
4695
|
"""
|
|
4484
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
4696
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
4485
4697
|
"""
|
|
4486
4698
|
return pulumi.get(self, "nrql_queries")
|
|
4487
4699
|
|
|
@@ -5090,7 +5302,7 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
|
5090
5302
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
5091
5303
|
"""
|
|
5092
5304
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
5093
|
-
:param Sequence['OneDashboardPageWidgetFunnelNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
5305
|
+
:param Sequence['OneDashboardPageWidgetFunnelNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
5094
5306
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
5095
5307
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
5096
5308
|
:param Sequence['OneDashboardPageWidgetFunnelColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -5152,7 +5364,7 @@ class OneDashboardPageWidgetFunnel(dict):
|
|
|
5152
5364
|
@pulumi.getter(name="nrqlQueries")
|
|
5153
5365
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetFunnelNrqlQuery']:
|
|
5154
5366
|
"""
|
|
5155
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
5367
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
5156
5368
|
"""
|
|
5157
5369
|
return pulumi.get(self, "nrql_queries")
|
|
5158
5370
|
|
|
@@ -5767,7 +5979,7 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
|
5767
5979
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
5768
5980
|
"""
|
|
5769
5981
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
5770
|
-
:param Sequence['OneDashboardPageWidgetHeatmapNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
5982
|
+
:param Sequence['OneDashboardPageWidgetHeatmapNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
5771
5983
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
5772
5984
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
5773
5985
|
:param Sequence['OneDashboardPageWidgetHeatmapColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -5835,7 +6047,7 @@ class OneDashboardPageWidgetHeatmap(dict):
|
|
|
5835
6047
|
@pulumi.getter(name="nrqlQueries")
|
|
5836
6048
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetHeatmapNrqlQuery']:
|
|
5837
6049
|
"""
|
|
5838
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
6050
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
5839
6051
|
"""
|
|
5840
6052
|
return pulumi.get(self, "nrql_queries")
|
|
5841
6053
|
|
|
@@ -6460,7 +6672,7 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
|
6460
6672
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
6461
6673
|
"""
|
|
6462
6674
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
6463
|
-
:param Sequence['OneDashboardPageWidgetHistogramNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
6675
|
+
:param Sequence['OneDashboardPageWidgetHistogramNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
6464
6676
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
6465
6677
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
6466
6678
|
:param Sequence['OneDashboardPageWidgetHistogramColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -6522,7 +6734,7 @@ class OneDashboardPageWidgetHistogram(dict):
|
|
|
6522
6734
|
@pulumi.getter(name="nrqlQueries")
|
|
6523
6735
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetHistogramNrqlQuery']:
|
|
6524
6736
|
"""
|
|
6525
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
6737
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
6526
6738
|
"""
|
|
6527
6739
|
return pulumi.get(self, "nrql_queries")
|
|
6528
6740
|
|
|
@@ -7131,7 +7343,7 @@ class OneDashboardPageWidgetJson(dict):
|
|
|
7131
7343
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
7132
7344
|
"""
|
|
7133
7345
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
7134
|
-
:param Sequence['OneDashboardPageWidgetJsonNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
7346
|
+
:param Sequence['OneDashboardPageWidgetJsonNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
7135
7347
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
7136
7348
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
7137
7349
|
:param Sequence['OneDashboardPageWidgetJsonColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -7193,7 +7405,7 @@ class OneDashboardPageWidgetJson(dict):
|
|
|
7193
7405
|
@pulumi.getter(name="nrqlQueries")
|
|
7194
7406
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetJsonNrqlQuery']:
|
|
7195
7407
|
"""
|
|
7196
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
7408
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
7197
7409
|
"""
|
|
7198
7410
|
return pulumi.get(self, "nrql_queries")
|
|
7199
7411
|
|
|
@@ -7813,7 +8025,7 @@ class OneDashboardPageWidgetLine(dict):
|
|
|
7813
8025
|
y_axis_right: Optional['outputs.OneDashboardPageWidgetLineYAxisRight'] = None):
|
|
7814
8026
|
"""
|
|
7815
8027
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
7816
|
-
:param Sequence['OneDashboardPageWidgetLineNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
8028
|
+
:param Sequence['OneDashboardPageWidgetLineNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
7817
8029
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
7818
8030
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
7819
8031
|
:param Sequence['OneDashboardPageWidgetLineColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -7890,7 +8102,7 @@ class OneDashboardPageWidgetLine(dict):
|
|
|
7890
8102
|
@pulumi.getter(name="nrqlQueries")
|
|
7891
8103
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetLineNrqlQuery']:
|
|
7892
8104
|
"""
|
|
7893
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
8105
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
7894
8106
|
"""
|
|
7895
8107
|
return pulumi.get(self, "nrql_queries")
|
|
7896
8108
|
|
|
@@ -8707,7 +8919,7 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
|
8707
8919
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
8708
8920
|
"""
|
|
8709
8921
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
8710
|
-
:param Sequence['OneDashboardPageWidgetLogTableNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
8922
|
+
:param Sequence['OneDashboardPageWidgetLogTableNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
8711
8923
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
8712
8924
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
8713
8925
|
:param Sequence['OneDashboardPageWidgetLogTableColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -8769,7 +8981,7 @@ class OneDashboardPageWidgetLogTable(dict):
|
|
|
8769
8981
|
@pulumi.getter(name="nrqlQueries")
|
|
8770
8982
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetLogTableNrqlQuery']:
|
|
8771
8983
|
"""
|
|
8772
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
8984
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
8773
8985
|
"""
|
|
8774
8986
|
return pulumi.get(self, "nrql_queries")
|
|
8775
8987
|
|
|
@@ -10006,7 +10218,7 @@ class OneDashboardPageWidgetPy(dict):
|
|
|
10006
10218
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
10007
10219
|
"""
|
|
10008
10220
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
10009
|
-
:param Sequence['OneDashboardPageWidgetPyNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
10221
|
+
:param Sequence['OneDashboardPageWidgetPyNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
10010
10222
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
10011
10223
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
10012
10224
|
:param Sequence['OneDashboardPageWidgetPyColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -10074,7 +10286,7 @@ class OneDashboardPageWidgetPy(dict):
|
|
|
10074
10286
|
@pulumi.getter(name="nrqlQueries")
|
|
10075
10287
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetPyNrqlQuery']:
|
|
10076
10288
|
"""
|
|
10077
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
10289
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
10078
10290
|
"""
|
|
10079
10291
|
return pulumi.get(self, "nrql_queries")
|
|
10080
10292
|
|
|
@@ -10700,7 +10912,7 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
|
10700
10912
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
10701
10913
|
"""
|
|
10702
10914
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
10703
|
-
:param Sequence['OneDashboardPageWidgetStackedBarNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
10915
|
+
:param Sequence['OneDashboardPageWidgetStackedBarNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
10704
10916
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
10705
10917
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
10706
10918
|
:param Sequence['OneDashboardPageWidgetStackedBarColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -10765,7 +10977,7 @@ class OneDashboardPageWidgetStackedBar(dict):
|
|
|
10765
10977
|
@pulumi.getter(name="nrqlQueries")
|
|
10766
10978
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetStackedBarNrqlQuery']:
|
|
10767
10979
|
"""
|
|
10768
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
10980
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
10769
10981
|
"""
|
|
10770
10982
|
return pulumi.get(self, "nrql_queries")
|
|
10771
10983
|
|
|
@@ -11407,7 +11619,7 @@ class OneDashboardPageWidgetTable(dict):
|
|
|
11407
11619
|
y_axis_left_min: Optional[_builtins.float] = None):
|
|
11408
11620
|
"""
|
|
11409
11621
|
:param _builtins.int column: (Required) Column position of widget from top left, starting at `1`.
|
|
11410
|
-
:param Sequence['OneDashboardPageWidgetTableNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
11622
|
+
:param Sequence['OneDashboardPageWidgetTableNrqlQueryArgs'] nrql_queries: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
11411
11623
|
:param _builtins.int row: (Required) Row position of widget from top left, starting at `1`.
|
|
11412
11624
|
:param _builtins.str title: (Optional) A human-friendly display string for this value.
|
|
11413
11625
|
:param Sequence['OneDashboardPageWidgetTableColorArgs'] colors: (Optional) A nested block that describes colors of your charts per series. See Nested Colors blocks below for details.
|
|
@@ -11478,7 +11690,7 @@ class OneDashboardPageWidgetTable(dict):
|
|
|
11478
11690
|
@pulumi.getter(name="nrqlQueries")
|
|
11479
11691
|
def nrql_queries(self) -> Sequence['outputs.OneDashboardPageWidgetTableNrqlQuery']:
|
|
11480
11692
|
"""
|
|
11481
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
11693
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
11482
11694
|
"""
|
|
11483
11695
|
return pulumi.get(self, "nrql_queries")
|
|
11484
11696
|
|
|
@@ -12353,7 +12565,7 @@ class OneDashboardVariable(dict):
|
|
|
12353
12565
|
:param Sequence[_builtins.str] default_values: (Optional) A list of default values for this variable. To select **all** default values, the appropriate value to be used with this argument would be `["*"]`.
|
|
12354
12566
|
:param _builtins.bool is_multi_selection: (Optional) Indicates whether this variable supports multiple selection or not. Only applies to variables of type `nrql` or `enum`.
|
|
12355
12567
|
:param Sequence['OneDashboardVariableItemArgs'] items: (Optional) List of possible values for variables of type `enum`. See Nested item blocks below for details.
|
|
12356
|
-
:param 'OneDashboardVariableNrqlQueryArgs' nrql_query: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
12568
|
+
:param 'OneDashboardVariableNrqlQueryArgs' nrql_query: (Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
12357
12569
|
:param Sequence['OneDashboardVariableOptionArgs'] options: (Optional) Specifies additional options to be added to dashboard variables. Supports the following nested attribute(s) -
|
|
12358
12570
|
"""
|
|
12359
12571
|
pulumi.set(__self__, "name", name)
|
|
@@ -12431,7 +12643,7 @@ class OneDashboardVariable(dict):
|
|
|
12431
12643
|
@pulumi.getter(name="nrqlQuery")
|
|
12432
12644
|
def nrql_query(self) -> Optional['outputs.OneDashboardVariableNrqlQuery']:
|
|
12433
12645
|
"""
|
|
12434
|
-
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for details.
|
|
12646
|
+
(Optional) Configuration for variables of type `nrql`. See Nested nrql\\_query blocks for Variables for details.
|
|
12435
12647
|
"""
|
|
12436
12648
|
return pulumi.get(self, "nrql_query")
|
|
12437
12649
|
|
|
@@ -12498,7 +12710,7 @@ class OneDashboardVariableNrqlQuery(dict):
|
|
|
12498
12710
|
account_ids: Optional[Sequence[_builtins.str]] = None):
|
|
12499
12711
|
"""
|
|
12500
12712
|
:param _builtins.str query: (Required) Valid NRQL query string. See [Writing NRQL Queries](https://docs.newrelic.com/docs/insights/nrql-new-relic-query-language/using-nrql/introduction-nrql) for help.
|
|
12501
|
-
:param Sequence[_builtins.str] account_ids:
|
|
12713
|
+
:param Sequence[_builtins.str] account_ids: (Required) List of account IDs such as `[12345, 67890]`.
|
|
12502
12714
|
"""
|
|
12503
12715
|
pulumi.set(__self__, "query", query)
|
|
12504
12716
|
if account_ids is not None:
|
|
@@ -12516,7 +12728,7 @@ class OneDashboardVariableNrqlQuery(dict):
|
|
|
12516
12728
|
@pulumi.getter(name="accountIds")
|
|
12517
12729
|
def account_ids(self) -> Optional[Sequence[_builtins.str]]:
|
|
12518
12730
|
"""
|
|
12519
|
-
|
|
12731
|
+
(Required) List of account IDs such as `[12345, 67890]`.
|
|
12520
12732
|
"""
|
|
12521
12733
|
return pulumi.get(self, "account_ids")
|
|
12522
12734
|
|
{pulumi_newrelic-5.54.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_newrelic/__init__.py,sha256=
|
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
|
1
|
+
pulumi_newrelic/__init__.py,sha256=Ma56W4OeGlJh2pTw9kc6w_x005-3zos6IvfN3fpqB-c,11951
|
|
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,15 +40,15 @@ 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
|
|
50
50
|
pulumi_newrelic/workflow.py,sha256=tuJiT4Kp1J8DEzhigSF9QJjETewd0efiVG0P_nx1VT8,44221
|
|
51
|
-
pulumi_newrelic/cloud/__init__.py,sha256=
|
|
51
|
+
pulumi_newrelic/cloud/__init__.py,sha256=5s_YksnfVoN7CFDTly58zX6t-Mf-A_kHoY7KTrOHQfM,635
|
|
52
52
|
pulumi_newrelic/cloud/_inputs.py,sha256=8-i7Pd7nFzLHNWd62mlOSvUtyDxUAwpnpKnkYs2FRis,405332
|
|
53
53
|
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=2T-fA-Be3FrVNsLsVdNO3ZdJkidz3Wki9nluPHXMSVk,66437
|
|
54
54
|
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=08wV9Cyyqqg7OYPfRDTR6H2AaGxtaSIIg6wm3GpyYB8,19514
|
|
@@ -58,6 +58,7 @@ pulumi_newrelic/cloud/azure_integrations.py,sha256=2jIYzZpH69zMbAVH6FAeUYNpDaRrd
|
|
|
58
58
|
pulumi_newrelic/cloud/azure_link_account.py,sha256=fUXPateGNfUBvpCTe4oj9_qpufMSIX-nu7xysFqrP7M,20173
|
|
59
59
|
pulumi_newrelic/cloud/gcp_integrations.py,sha256=GwJN-Y21T_nxazazEaz6FFNbzZGfREIzweAATBKeQus,87157
|
|
60
60
|
pulumi_newrelic/cloud/gcp_link_account.py,sha256=1bb4bHrSCuc7DuB-2jE8Zpb-QiqNXquKW4Ic41t8VsQ,13183
|
|
61
|
+
pulumi_newrelic/cloud/oci_link_account.py,sha256=lXMuqVqhhEwD_EVHNh0iiIv10ViVldTmjmT_nI2aEA8,50410
|
|
61
62
|
pulumi_newrelic/cloud/outputs.py,sha256=0s22T-Aitp2_fl_TdTDEmDXBZ6uL6DCcP8K6C439U60,332522
|
|
62
63
|
pulumi_newrelic/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
63
64
|
pulumi_newrelic/config/__init__.pyi,sha256=S-oMyG4GP-hf6N1Rkq7MIujfNkkNWZM9LnUWK_6E5yI,1018
|
|
@@ -85,7 +86,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=RInZWYYxloyzGmgaVTsEO_fGrn
|
|
|
85
86
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=Ijs_jSriw0BFjqEt7sS5jfaiunBhmEB-Li-ED3lYhaM,73319
|
|
86
87
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=f4gs62_FcBaeO6YMZLMKwBuOS73qxpKmudoelXbmtso,16701
|
|
87
88
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=1PtSgEInngOinmSSPaPqIxwJx2iSRoMSa9Fw6zlh-rQ,52671
|
|
88
|
-
pulumi_newrelic-5.54.
|
|
89
|
-
pulumi_newrelic-5.54.
|
|
90
|
-
pulumi_newrelic-5.54.
|
|
91
|
-
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.0a1758782193.dist-info → pulumi_newrelic-5.54.1a1758943554.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|