pulumi-newrelic 5.52.0__py3-none-any.whl → 5.58.0a1764915474__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 +362 -46
- pulumi_newrelic/alert_channel.py +6 -6
- pulumi_newrelic/api_access_key.py +109 -77
- pulumi_newrelic/cloud/__init__.py +1 -0
- pulumi_newrelic/cloud/_inputs.py +54 -0
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +4 -0
- pulumi_newrelic/cloud/azure_integrations.py +47 -0
- pulumi_newrelic/cloud/oci_link_account.py +926 -0
- pulumi_newrelic/cloud/outputs.py +51 -0
- pulumi_newrelic/entity_tags.py +56 -0
- pulumi_newrelic/get_alert_channel.py +32 -0
- pulumi_newrelic/get_alert_policy.py +26 -0
- pulumi_newrelic/notification_channel.py +44 -44
- pulumi_newrelic/nrql_alert_condition.py +49 -0
- pulumi_newrelic/one_dashboard_raw.py +24 -24
- pulumi_newrelic/outputs.py +257 -31
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/script_monitor.py +62 -0
- {pulumi_newrelic-5.52.0.dist-info → pulumi_newrelic-5.58.0a1764915474.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.52.0.dist-info → pulumi_newrelic-5.58.0a1764915474.dist-info}/RECORD +23 -22
- {pulumi_newrelic-5.52.0.dist-info → pulumi_newrelic-5.58.0a1764915474.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.52.0.dist-info → pulumi_newrelic-5.58.0a1764915474.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,7 @@ class AzureIntegrationsArgs:
|
|
|
26
26
|
api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
|
|
27
27
|
app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
|
|
28
28
|
app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
|
|
29
|
+
auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
|
|
29
30
|
containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
|
|
30
31
|
cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
|
|
31
32
|
cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
|
|
@@ -65,6 +66,7 @@ class AzureIntegrationsArgs:
|
|
|
65
66
|
:param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
|
|
66
67
|
:param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
|
67
68
|
:param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
|
|
69
|
+
:param pulumi.Input['AzureIntegrationsAutoDiscoveryArgs'] auto_discovery: Azure Auto Discovery
|
|
68
70
|
:param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
|
|
69
71
|
:param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
|
70
72
|
:param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
|
|
@@ -110,6 +112,8 @@ class AzureIntegrationsArgs:
|
|
|
110
112
|
pulumi.set(__self__, "app_gateway", app_gateway)
|
|
111
113
|
if app_service is not None:
|
|
112
114
|
pulumi.set(__self__, "app_service", app_service)
|
|
115
|
+
if auto_discovery is not None:
|
|
116
|
+
pulumi.set(__self__, "auto_discovery", auto_discovery)
|
|
113
117
|
if containers is not None:
|
|
114
118
|
pulumi.set(__self__, "containers", containers)
|
|
115
119
|
if cosmos_db is not None:
|
|
@@ -232,6 +236,18 @@ class AzureIntegrationsArgs:
|
|
|
232
236
|
def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
|
|
233
237
|
pulumi.set(self, "app_service", value)
|
|
234
238
|
|
|
239
|
+
@_builtins.property
|
|
240
|
+
@pulumi.getter(name="autoDiscovery")
|
|
241
|
+
def auto_discovery(self) -> Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]:
|
|
242
|
+
"""
|
|
243
|
+
Azure Auto Discovery
|
|
244
|
+
"""
|
|
245
|
+
return pulumi.get(self, "auto_discovery")
|
|
246
|
+
|
|
247
|
+
@auto_discovery.setter
|
|
248
|
+
def auto_discovery(self, value: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]):
|
|
249
|
+
pulumi.set(self, "auto_discovery", value)
|
|
250
|
+
|
|
235
251
|
@_builtins.property
|
|
236
252
|
@pulumi.getter
|
|
237
253
|
def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
|
|
@@ -594,6 +610,7 @@ class _AzureIntegrationsState:
|
|
|
594
610
|
api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
|
|
595
611
|
app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
|
|
596
612
|
app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
|
|
613
|
+
auto_discovery: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']] = None,
|
|
597
614
|
containers: Optional[pulumi.Input['AzureIntegrationsContainersArgs']] = None,
|
|
598
615
|
cosmos_db: Optional[pulumi.Input['AzureIntegrationsCosmosDbArgs']] = None,
|
|
599
616
|
cost_management: Optional[pulumi.Input['AzureIntegrationsCostManagementArgs']] = None,
|
|
@@ -630,6 +647,7 @@ class _AzureIntegrationsState:
|
|
|
630
647
|
:param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
|
|
631
648
|
:param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
|
632
649
|
:param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
|
|
650
|
+
:param pulumi.Input['AzureIntegrationsAutoDiscoveryArgs'] auto_discovery: Azure Auto Discovery
|
|
633
651
|
:param pulumi.Input['AzureIntegrationsContainersArgs'] containers: Azure Containers. See Integration blocks below for details.
|
|
634
652
|
:param pulumi.Input['AzureIntegrationsCosmosDbArgs'] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
|
635
653
|
:param pulumi.Input['AzureIntegrationsCostManagementArgs'] cost_management: Azure Cost Management. See Integration blocks below for details.
|
|
@@ -678,6 +696,8 @@ class _AzureIntegrationsState:
|
|
|
678
696
|
pulumi.set(__self__, "app_gateway", app_gateway)
|
|
679
697
|
if app_service is not None:
|
|
680
698
|
pulumi.set(__self__, "app_service", app_service)
|
|
699
|
+
if auto_discovery is not None:
|
|
700
|
+
pulumi.set(__self__, "auto_discovery", auto_discovery)
|
|
681
701
|
if containers is not None:
|
|
682
702
|
pulumi.set(__self__, "containers", containers)
|
|
683
703
|
if cosmos_db is not None:
|
|
@@ -787,6 +807,18 @@ class _AzureIntegrationsState:
|
|
|
787
807
|
def app_service(self, value: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']]):
|
|
788
808
|
pulumi.set(self, "app_service", value)
|
|
789
809
|
|
|
810
|
+
@_builtins.property
|
|
811
|
+
@pulumi.getter(name="autoDiscovery")
|
|
812
|
+
def auto_discovery(self) -> Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]:
|
|
813
|
+
"""
|
|
814
|
+
Azure Auto Discovery
|
|
815
|
+
"""
|
|
816
|
+
return pulumi.get(self, "auto_discovery")
|
|
817
|
+
|
|
818
|
+
@auto_discovery.setter
|
|
819
|
+
def auto_discovery(self, value: Optional[pulumi.Input['AzureIntegrationsAutoDiscoveryArgs']]):
|
|
820
|
+
pulumi.set(self, "auto_discovery", value)
|
|
821
|
+
|
|
790
822
|
@_builtins.property
|
|
791
823
|
@pulumi.getter
|
|
792
824
|
def containers(self) -> Optional[pulumi.Input['AzureIntegrationsContainersArgs']]:
|
|
@@ -1167,6 +1199,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1167
1199
|
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
|
1168
1200
|
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
|
1169
1201
|
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
|
1202
|
+
auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
|
|
1170
1203
|
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
|
1171
1204
|
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
|
1172
1205
|
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
|
@@ -1380,6 +1413,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1380
1413
|
:param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
|
|
1381
1414
|
:param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
|
1382
1415
|
:param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
|
|
1416
|
+
:param pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']] auto_discovery: Azure Auto Discovery
|
|
1383
1417
|
:param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
|
|
1384
1418
|
:param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
|
1385
1419
|
:param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
|
|
@@ -1621,6 +1655,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1621
1655
|
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
|
1622
1656
|
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
|
1623
1657
|
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
|
1658
|
+
auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
|
|
1624
1659
|
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
|
1625
1660
|
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
|
1626
1661
|
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
|
@@ -1664,6 +1699,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1664
1699
|
__props__.__dict__["api_management"] = api_management
|
|
1665
1700
|
__props__.__dict__["app_gateway"] = app_gateway
|
|
1666
1701
|
__props__.__dict__["app_service"] = app_service
|
|
1702
|
+
__props__.__dict__["auto_discovery"] = auto_discovery
|
|
1667
1703
|
__props__.__dict__["containers"] = containers
|
|
1668
1704
|
__props__.__dict__["cosmos_db"] = cosmos_db
|
|
1669
1705
|
__props__.__dict__["cost_management"] = cost_management
|
|
@@ -1710,6 +1746,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1710
1746
|
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
|
1711
1747
|
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
|
1712
1748
|
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
|
1749
|
+
auto_discovery: Optional[pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']]] = None,
|
|
1713
1750
|
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
|
1714
1751
|
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
|
1715
1752
|
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
|
@@ -1751,6 +1788,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1751
1788
|
:param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
|
|
1752
1789
|
:param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
|
1753
1790
|
:param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
|
|
1791
|
+
:param pulumi.Input[Union['AzureIntegrationsAutoDiscoveryArgs', 'AzureIntegrationsAutoDiscoveryArgsDict']] auto_discovery: Azure Auto Discovery
|
|
1754
1792
|
:param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
|
|
1755
1793
|
:param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
|
1756
1794
|
:param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
|
|
@@ -1799,6 +1837,7 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1799
1837
|
__props__.__dict__["api_management"] = api_management
|
|
1800
1838
|
__props__.__dict__["app_gateway"] = app_gateway
|
|
1801
1839
|
__props__.__dict__["app_service"] = app_service
|
|
1840
|
+
__props__.__dict__["auto_discovery"] = auto_discovery
|
|
1802
1841
|
__props__.__dict__["containers"] = containers
|
|
1803
1842
|
__props__.__dict__["cosmos_db"] = cosmos_db
|
|
1804
1843
|
__props__.__dict__["cost_management"] = cost_management
|
|
@@ -1863,6 +1902,14 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
|
1863
1902
|
"""
|
|
1864
1903
|
return pulumi.get(self, "app_service")
|
|
1865
1904
|
|
|
1905
|
+
@_builtins.property
|
|
1906
|
+
@pulumi.getter(name="autoDiscovery")
|
|
1907
|
+
def auto_discovery(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsAutoDiscovery']]:
|
|
1908
|
+
"""
|
|
1909
|
+
Azure Auto Discovery
|
|
1910
|
+
"""
|
|
1911
|
+
return pulumi.get(self, "auto_discovery")
|
|
1912
|
+
|
|
1866
1913
|
@_builtins.property
|
|
1867
1914
|
@pulumi.getter
|
|
1868
1915
|
def containers(self) -> pulumi.Output[Optional['outputs.AzureIntegrationsContainers']]:
|