pulumi-newrelic 5.28.0a1723009616__py3-none-any.whl → 5.29.0__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.
- pulumi_newrelic/_inputs.py +18 -18
- pulumi_newrelic/alert_channel.py +69 -69
- pulumi_newrelic/alert_condition.py +49 -49
- pulumi_newrelic/alert_muting_rule.py +54 -54
- pulumi_newrelic/alert_policy.py +16 -16
- pulumi_newrelic/alert_policy_channel.py +16 -16
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +100 -100
- pulumi_newrelic/cloud/aws_integrations.py +798 -798
- pulumi_newrelic/cloud/azure_integrations.py +424 -424
- pulumi_newrelic/cloud/gcp_integrations.py +288 -288
- pulumi_newrelic/entity_tags.py +21 -21
- pulumi_newrelic/get_application.py +14 -14
- pulumi_newrelic/get_entity.py +4 -4
- pulumi_newrelic/get_key_transaction.py +14 -14
- pulumi_newrelic/get_notification_destination.py +5 -5
- pulumi_newrelic/get_obfuscation_expression.py +10 -10
- pulumi_newrelic/get_service_level_alert_helper.py +76 -76
- pulumi_newrelic/infra_alert_condition.py +90 -90
- pulumi_newrelic/insights/event.py +43 -43
- pulumi_newrelic/monitor_downtime.py +52 -52
- pulumi_newrelic/notification_channel.py +218 -194
- pulumi_newrelic/notification_destination.py +46 -39
- pulumi_newrelic/nrql_alert_condition.py +262 -164
- pulumi_newrelic/obfuscation_rule.py +15 -15
- pulumi_newrelic/one_dashboard.py +10 -10
- pulumi_newrelic/one_dashboard_raw.py +75 -75
- pulumi_newrelic/outputs.py +14 -14
- pulumi_newrelic/plugins/workload.py +101 -101
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/service_level.py +164 -164
- pulumi_newrelic/synthetics/alert_condition.py +32 -32
- pulumi_newrelic/synthetics/broken_links_monitor.py +21 -21
- pulumi_newrelic/synthetics/cert_check_monitor.py +21 -21
- pulumi_newrelic/synthetics/get_private_location.py +6 -6
- pulumi_newrelic/synthetics/monitor.py +74 -74
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +66 -66
- pulumi_newrelic/synthetics/script_monitor.py +58 -58
- pulumi_newrelic/synthetics/step_monitor.py +59 -59
- pulumi_newrelic/workflow.py +155 -155
- {pulumi_newrelic-5.28.0a1723009616.dist-info → pulumi_newrelic-5.29.0.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.28.0a1723009616.dist-info → pulumi_newrelic-5.29.0.dist-info}/RECORD +43 -43
- {pulumi_newrelic-5.28.0a1723009616.dist-info → pulumi_newrelic-5.29.0.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.28.0a1723009616.dist-info → pulumi_newrelic-5.29.0.dist-info}/top_level.txt +0 -0
@@ -1158,39 +1158,39 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1158
1158
|
resource_name: str,
|
1159
1159
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1160
1160
|
account_id: Optional[pulumi.Input[str]] = None,
|
1161
|
-
api_management: Optional[pulumi.Input[
|
1162
|
-
app_gateway: Optional[pulumi.Input[
|
1163
|
-
app_service: Optional[pulumi.Input[
|
1164
|
-
containers: Optional[pulumi.Input[
|
1165
|
-
cosmos_db: Optional[pulumi.Input[
|
1166
|
-
cost_management: Optional[pulumi.Input[
|
1167
|
-
data_factory: Optional[pulumi.Input[
|
1168
|
-
event_hub: Optional[pulumi.Input[
|
1169
|
-
express_route: Optional[pulumi.Input[
|
1170
|
-
firewalls: Optional[pulumi.Input[
|
1171
|
-
front_door: Optional[pulumi.Input[
|
1172
|
-
functions: Optional[pulumi.Input[
|
1173
|
-
key_vault: Optional[pulumi.Input[
|
1161
|
+
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
1162
|
+
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
1163
|
+
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
1164
|
+
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
1165
|
+
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
1166
|
+
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
1167
|
+
data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
|
1168
|
+
event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
|
1169
|
+
express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
|
1170
|
+
firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
|
1171
|
+
front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
|
1172
|
+
functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
|
1173
|
+
key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
|
1174
1174
|
linked_account_id: Optional[pulumi.Input[str]] = None,
|
1175
|
-
load_balancer: Optional[pulumi.Input[
|
1176
|
-
logic_apps: Optional[pulumi.Input[
|
1177
|
-
machine_learning: Optional[pulumi.Input[
|
1178
|
-
maria_db: Optional[pulumi.Input[
|
1179
|
-
monitor: Optional[pulumi.Input[
|
1180
|
-
mysql: Optional[pulumi.Input[
|
1181
|
-
mysql_flexible: Optional[pulumi.Input[
|
1182
|
-
postgresql: Optional[pulumi.Input[
|
1183
|
-
postgresql_flexible: Optional[pulumi.Input[
|
1184
|
-
power_bi_dedicated: Optional[pulumi.Input[
|
1185
|
-
redis_cache: Optional[pulumi.Input[
|
1186
|
-
service_bus: Optional[pulumi.Input[
|
1187
|
-
sql: Optional[pulumi.Input[
|
1188
|
-
sql_managed: Optional[pulumi.Input[
|
1189
|
-
storage: Optional[pulumi.Input[
|
1190
|
-
virtual_machine: Optional[pulumi.Input[
|
1191
|
-
virtual_networks: Optional[pulumi.Input[
|
1192
|
-
vms: Optional[pulumi.Input[
|
1193
|
-
vpn_gateway: Optional[pulumi.Input[
|
1175
|
+
load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
|
1176
|
+
logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
|
1177
|
+
machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
|
1178
|
+
maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
|
1179
|
+
monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
|
1180
|
+
mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
|
1181
|
+
mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
|
1182
|
+
postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
|
1183
|
+
postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
|
1184
|
+
power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
|
1185
|
+
redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
|
1186
|
+
service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
|
1187
|
+
sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
|
1188
|
+
sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
|
1189
|
+
storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
|
1190
|
+
virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
|
1191
|
+
virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
|
1192
|
+
vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
|
1193
|
+
vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None,
|
1194
1194
|
__props__=None):
|
1195
1195
|
"""
|
1196
1196
|
Use this resource to integrate Azure services with New Relic.
|
@@ -1221,141 +1221,141 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1221
1221
|
foo_azure_integrations = newrelic.cloud.AzureIntegrations("foo",
|
1222
1222
|
linked_account_id=foo.id,
|
1223
1223
|
account_id="The New Relic account ID",
|
1224
|
-
api_management=
|
1225
|
-
metrics_polling_interval
|
1226
|
-
resource_groups
|
1227
|
-
|
1228
|
-
app_gateway=
|
1229
|
-
metrics_polling_interval
|
1230
|
-
resource_groups
|
1231
|
-
|
1232
|
-
app_service=
|
1233
|
-
metrics_polling_interval
|
1234
|
-
resource_groups
|
1235
|
-
|
1236
|
-
containers=
|
1237
|
-
metrics_polling_interval
|
1238
|
-
resource_groups
|
1239
|
-
|
1240
|
-
cosmos_db=
|
1241
|
-
metrics_polling_interval
|
1242
|
-
resource_groups
|
1243
|
-
|
1244
|
-
cost_management=
|
1245
|
-
metrics_polling_interval
|
1246
|
-
tag_keys
|
1247
|
-
|
1248
|
-
data_factory=
|
1249
|
-
metrics_polling_interval
|
1250
|
-
resource_groups
|
1251
|
-
|
1252
|
-
event_hub=
|
1253
|
-
metrics_polling_interval
|
1254
|
-
resource_groups
|
1255
|
-
|
1256
|
-
express_route=
|
1257
|
-
metrics_polling_interval
|
1258
|
-
resource_groups
|
1259
|
-
|
1260
|
-
firewalls=
|
1261
|
-
metrics_polling_interval
|
1262
|
-
resource_groups
|
1263
|
-
|
1264
|
-
front_door=
|
1265
|
-
metrics_polling_interval
|
1266
|
-
resource_groups
|
1267
|
-
|
1268
|
-
functions=
|
1269
|
-
metrics_polling_interval
|
1270
|
-
resource_groups
|
1271
|
-
|
1272
|
-
key_vault=
|
1273
|
-
metrics_polling_interval
|
1274
|
-
resource_groups
|
1275
|
-
|
1276
|
-
load_balancer=
|
1277
|
-
metrics_polling_interval
|
1278
|
-
resource_groups
|
1279
|
-
|
1280
|
-
logic_apps=
|
1281
|
-
metrics_polling_interval
|
1282
|
-
resource_groups
|
1283
|
-
|
1284
|
-
machine_learning=
|
1285
|
-
metrics_polling_interval
|
1286
|
-
resource_groups
|
1287
|
-
|
1288
|
-
maria_db=
|
1289
|
-
metrics_polling_interval
|
1290
|
-
resource_groups
|
1291
|
-
|
1292
|
-
monitor=
|
1293
|
-
metrics_polling_interval
|
1294
|
-
resource_groups
|
1295
|
-
include_tags
|
1296
|
-
exclude_tags
|
1224
|
+
api_management={
|
1225
|
+
"metrics_polling_interval": 300,
|
1226
|
+
"resource_groups": ["resource_groups"],
|
1227
|
+
},
|
1228
|
+
app_gateway={
|
1229
|
+
"metrics_polling_interval": 300,
|
1230
|
+
"resource_groups": ["resource_groups"],
|
1231
|
+
},
|
1232
|
+
app_service={
|
1233
|
+
"metrics_polling_interval": 300,
|
1234
|
+
"resource_groups": ["resource_groups"],
|
1235
|
+
},
|
1236
|
+
containers={
|
1237
|
+
"metrics_polling_interval": 300,
|
1238
|
+
"resource_groups": ["resource_groups"],
|
1239
|
+
},
|
1240
|
+
cosmos_db={
|
1241
|
+
"metrics_polling_interval": 300,
|
1242
|
+
"resource_groups": ["resource_groups"],
|
1243
|
+
},
|
1244
|
+
cost_management={
|
1245
|
+
"metrics_polling_interval": 3600,
|
1246
|
+
"tag_keys": ["tag_keys"],
|
1247
|
+
},
|
1248
|
+
data_factory={
|
1249
|
+
"metrics_polling_interval": 300,
|
1250
|
+
"resource_groups": ["resource_groups"],
|
1251
|
+
},
|
1252
|
+
event_hub={
|
1253
|
+
"metrics_polling_interval": 300,
|
1254
|
+
"resource_groups": ["resource_groups"],
|
1255
|
+
},
|
1256
|
+
express_route={
|
1257
|
+
"metrics_polling_interval": 300,
|
1258
|
+
"resource_groups": ["resource_groups"],
|
1259
|
+
},
|
1260
|
+
firewalls={
|
1261
|
+
"metrics_polling_interval": 300,
|
1262
|
+
"resource_groups": ["resource_groups"],
|
1263
|
+
},
|
1264
|
+
front_door={
|
1265
|
+
"metrics_polling_interval": 300,
|
1266
|
+
"resource_groups": ["resource_groups"],
|
1267
|
+
},
|
1268
|
+
functions={
|
1269
|
+
"metrics_polling_interval": 300,
|
1270
|
+
"resource_groups": ["resource_groups"],
|
1271
|
+
},
|
1272
|
+
key_vault={
|
1273
|
+
"metrics_polling_interval": 300,
|
1274
|
+
"resource_groups": ["resource_groups"],
|
1275
|
+
},
|
1276
|
+
load_balancer={
|
1277
|
+
"metrics_polling_interval": 300,
|
1278
|
+
"resource_groups": ["resource_groups"],
|
1279
|
+
},
|
1280
|
+
logic_apps={
|
1281
|
+
"metrics_polling_interval": 300,
|
1282
|
+
"resource_groups": ["resource_groups"],
|
1283
|
+
},
|
1284
|
+
machine_learning={
|
1285
|
+
"metrics_polling_interval": 300,
|
1286
|
+
"resource_groups": ["resource_groups"],
|
1287
|
+
},
|
1288
|
+
maria_db={
|
1289
|
+
"metrics_polling_interval": 3600,
|
1290
|
+
"resource_groups": ["resource_groups"],
|
1291
|
+
},
|
1292
|
+
monitor={
|
1293
|
+
"metrics_polling_interval": 60,
|
1294
|
+
"resource_groups": ["resource_groups"],
|
1295
|
+
"include_tags": ["env:production"],
|
1296
|
+
"exclude_tags": [
|
1297
1297
|
"env:staging",
|
1298
1298
|
"env:testing",
|
1299
1299
|
],
|
1300
|
-
enabled
|
1301
|
-
resource_types
|
1302
|
-
|
1303
|
-
mysql=
|
1304
|
-
metrics_polling_interval
|
1305
|
-
resource_groups
|
1306
|
-
|
1307
|
-
mysql_flexible=
|
1308
|
-
metrics_polling_interval
|
1309
|
-
resource_groups
|
1310
|
-
|
1311
|
-
postgresql=
|
1312
|
-
metrics_polling_interval
|
1313
|
-
resource_groups
|
1314
|
-
|
1315
|
-
postgresql_flexible=
|
1316
|
-
metrics_polling_interval
|
1317
|
-
resource_groups
|
1318
|
-
|
1319
|
-
power_bi_dedicated=
|
1320
|
-
metrics_polling_interval
|
1321
|
-
resource_groups
|
1322
|
-
|
1323
|
-
redis_cache=
|
1324
|
-
metrics_polling_interval
|
1325
|
-
resource_groups
|
1326
|
-
|
1327
|
-
service_bus=
|
1328
|
-
metrics_polling_interval
|
1329
|
-
resource_groups
|
1330
|
-
|
1331
|
-
sql=
|
1332
|
-
metrics_polling_interval
|
1333
|
-
resource_groups
|
1334
|
-
|
1335
|
-
sql_managed=
|
1336
|
-
metrics_polling_interval
|
1337
|
-
resource_groups
|
1338
|
-
|
1339
|
-
storage=
|
1340
|
-
metrics_polling_interval
|
1341
|
-
resource_groups
|
1342
|
-
|
1343
|
-
virtual_machine=
|
1344
|
-
metrics_polling_interval
|
1345
|
-
resource_groups
|
1346
|
-
|
1347
|
-
virtual_networks=
|
1348
|
-
metrics_polling_interval
|
1349
|
-
resource_groups
|
1350
|
-
|
1351
|
-
vms=
|
1352
|
-
metrics_polling_interval
|
1353
|
-
resource_groups
|
1354
|
-
|
1355
|
-
vpn_gateway=
|
1356
|
-
metrics_polling_interval
|
1357
|
-
resource_groups
|
1358
|
-
)
|
1300
|
+
"enabled": True,
|
1301
|
+
"resource_types": ["microsoft.datashare/accounts"],
|
1302
|
+
},
|
1303
|
+
mysql={
|
1304
|
+
"metrics_polling_interval": 3600,
|
1305
|
+
"resource_groups": ["resource_groups"],
|
1306
|
+
},
|
1307
|
+
mysql_flexible={
|
1308
|
+
"metrics_polling_interval": 3600,
|
1309
|
+
"resource_groups": ["resource_groups"],
|
1310
|
+
},
|
1311
|
+
postgresql={
|
1312
|
+
"metrics_polling_interval": 3600,
|
1313
|
+
"resource_groups": ["resource_groups"],
|
1314
|
+
},
|
1315
|
+
postgresql_flexible={
|
1316
|
+
"metrics_polling_interval": 3600,
|
1317
|
+
"resource_groups": ["resource_groups"],
|
1318
|
+
},
|
1319
|
+
power_bi_dedicated={
|
1320
|
+
"metrics_polling_interval": 300,
|
1321
|
+
"resource_groups": ["resource_groups"],
|
1322
|
+
},
|
1323
|
+
redis_cache={
|
1324
|
+
"metrics_polling_interval": 300,
|
1325
|
+
"resource_groups": ["resource_groups"],
|
1326
|
+
},
|
1327
|
+
service_bus={
|
1328
|
+
"metrics_polling_interval": 300,
|
1329
|
+
"resource_groups": ["resource_groups"],
|
1330
|
+
},
|
1331
|
+
sql={
|
1332
|
+
"metrics_polling_interval": 300,
|
1333
|
+
"resource_groups": ["resource_groups"],
|
1334
|
+
},
|
1335
|
+
sql_managed={
|
1336
|
+
"metrics_polling_interval": 300,
|
1337
|
+
"resource_groups": ["resource_groups"],
|
1338
|
+
},
|
1339
|
+
storage={
|
1340
|
+
"metrics_polling_interval": 1800,
|
1341
|
+
"resource_groups": ["resource_groups"],
|
1342
|
+
},
|
1343
|
+
virtual_machine={
|
1344
|
+
"metrics_polling_interval": 300,
|
1345
|
+
"resource_groups": ["resource_groups"],
|
1346
|
+
},
|
1347
|
+
virtual_networks={
|
1348
|
+
"metrics_polling_interval": 300,
|
1349
|
+
"resource_groups": ["resource_groups"],
|
1350
|
+
},
|
1351
|
+
vms={
|
1352
|
+
"metrics_polling_interval": 300,
|
1353
|
+
"resource_groups": ["resource_groups"],
|
1354
|
+
},
|
1355
|
+
vpn_gateway={
|
1356
|
+
"metrics_polling_interval": 300,
|
1357
|
+
"resource_groups": ["resource_groups"],
|
1358
|
+
})
|
1359
1359
|
```
|
1360
1360
|
|
1361
1361
|
## Import
|
@@ -1371,46 +1371,46 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1371
1371
|
:param str resource_name: The name of the resource.
|
1372
1372
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1373
1373
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
1374
|
-
:param pulumi.Input[
|
1375
|
-
:param pulumi.Input[
|
1376
|
-
:param pulumi.Input[
|
1377
|
-
:param pulumi.Input[
|
1378
|
-
:param pulumi.Input[
|
1379
|
-
:param pulumi.Input[
|
1380
|
-
:param pulumi.Input[
|
1381
|
-
:param pulumi.Input[
|
1382
|
-
:param pulumi.Input[
|
1383
|
-
:param pulumi.Input[
|
1384
|
-
:param pulumi.Input[
|
1385
|
-
:param pulumi.Input[
|
1386
|
-
:param pulumi.Input[
|
1374
|
+
:param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
|
1375
|
+
:param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
1376
|
+
:param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
|
1377
|
+
:param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
|
1378
|
+
:param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
1379
|
+
:param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
|
1380
|
+
:param pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']] data_factory: Azure Data Factory. See Integration blocks below for details.
|
1381
|
+
:param pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']] event_hub: Azure Event Hub. See Integration blocks below for details.
|
1382
|
+
:param pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']] express_route: Azure Express Route. See Integration blocks below for details.
|
1383
|
+
:param pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']] firewalls: Azure Firewalls. See Integration blocks below for details.
|
1384
|
+
:param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
|
1385
|
+
:param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
|
1386
|
+
:param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
|
1387
1387
|
:param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
|
1388
1388
|
|
1389
1389
|
|
1390
1390
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
|
1391
|
-
:param pulumi.Input[
|
1392
|
-
:param pulumi.Input[
|
1393
|
-
:param pulumi.Input[
|
1394
|
-
:param pulumi.Input[
|
1395
|
-
:param pulumi.Input[
|
1391
|
+
:param pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
|
1392
|
+
:param pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
|
1393
|
+
:param pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
|
1394
|
+
:param pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']] maria_db: Azure MariaDB. See Integration blocks below for details.
|
1395
|
+
:param pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']] monitor: Azure Monitor. See Integration blocks below for details.
|
1396
1396
|
|
1397
1397
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
1398
|
-
:param pulumi.Input[
|
1399
|
-
:param pulumi.Input[
|
1400
|
-
:param pulumi.Input[
|
1401
|
-
:param pulumi.Input[
|
1402
|
-
:param pulumi.Input[
|
1403
|
-
:param pulumi.Input[
|
1404
|
-
:param pulumi.Input[
|
1405
|
-
:param pulumi.Input[
|
1406
|
-
:param pulumi.Input[
|
1407
|
-
:param pulumi.Input[
|
1398
|
+
:param pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']] mysql: Azure MySQL. See Integration blocks below for details.
|
1399
|
+
:param pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
|
1400
|
+
:param pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
|
1401
|
+
:param pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
|
1402
|
+
:param pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
|
1403
|
+
:param pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
|
1404
|
+
:param pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']] service_bus: Azure Service Bus. See Integration blocks below for details.
|
1405
|
+
:param pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']] sql: Azure SQL. See Integration blocks below for details.
|
1406
|
+
:param pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
|
1407
|
+
:param pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']] storage: for Azure Storage. See Integration blocks below for details.
|
1408
1408
|
|
1409
1409
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
|
1410
|
-
:param pulumi.Input[
|
1411
|
-
:param pulumi.Input[
|
1412
|
-
:param pulumi.Input[
|
1413
|
-
:param pulumi.Input[
|
1410
|
+
:param pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
|
1411
|
+
:param pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
|
1412
|
+
:param pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']] vms: Azure VMs. See Integration blocks below for details.
|
1413
|
+
:param pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
|
1414
1414
|
|
1415
1415
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
|
1416
1416
|
"""
|
@@ -1449,141 +1449,141 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1449
1449
|
foo_azure_integrations = newrelic.cloud.AzureIntegrations("foo",
|
1450
1450
|
linked_account_id=foo.id,
|
1451
1451
|
account_id="The New Relic account ID",
|
1452
|
-
api_management=
|
1453
|
-
metrics_polling_interval
|
1454
|
-
resource_groups
|
1455
|
-
|
1456
|
-
app_gateway=
|
1457
|
-
metrics_polling_interval
|
1458
|
-
resource_groups
|
1459
|
-
|
1460
|
-
app_service=
|
1461
|
-
metrics_polling_interval
|
1462
|
-
resource_groups
|
1463
|
-
|
1464
|
-
containers=
|
1465
|
-
metrics_polling_interval
|
1466
|
-
resource_groups
|
1467
|
-
|
1468
|
-
cosmos_db=
|
1469
|
-
metrics_polling_interval
|
1470
|
-
resource_groups
|
1471
|
-
|
1472
|
-
cost_management=
|
1473
|
-
metrics_polling_interval
|
1474
|
-
tag_keys
|
1475
|
-
|
1476
|
-
data_factory=
|
1477
|
-
metrics_polling_interval
|
1478
|
-
resource_groups
|
1479
|
-
|
1480
|
-
event_hub=
|
1481
|
-
metrics_polling_interval
|
1482
|
-
resource_groups
|
1483
|
-
|
1484
|
-
express_route=
|
1485
|
-
metrics_polling_interval
|
1486
|
-
resource_groups
|
1487
|
-
|
1488
|
-
firewalls=
|
1489
|
-
metrics_polling_interval
|
1490
|
-
resource_groups
|
1491
|
-
|
1492
|
-
front_door=
|
1493
|
-
metrics_polling_interval
|
1494
|
-
resource_groups
|
1495
|
-
|
1496
|
-
functions=
|
1497
|
-
metrics_polling_interval
|
1498
|
-
resource_groups
|
1499
|
-
|
1500
|
-
key_vault=
|
1501
|
-
metrics_polling_interval
|
1502
|
-
resource_groups
|
1503
|
-
|
1504
|
-
load_balancer=
|
1505
|
-
metrics_polling_interval
|
1506
|
-
resource_groups
|
1507
|
-
|
1508
|
-
logic_apps=
|
1509
|
-
metrics_polling_interval
|
1510
|
-
resource_groups
|
1511
|
-
|
1512
|
-
machine_learning=
|
1513
|
-
metrics_polling_interval
|
1514
|
-
resource_groups
|
1515
|
-
|
1516
|
-
maria_db=
|
1517
|
-
metrics_polling_interval
|
1518
|
-
resource_groups
|
1519
|
-
|
1520
|
-
monitor=
|
1521
|
-
metrics_polling_interval
|
1522
|
-
resource_groups
|
1523
|
-
include_tags
|
1524
|
-
exclude_tags
|
1452
|
+
api_management={
|
1453
|
+
"metrics_polling_interval": 300,
|
1454
|
+
"resource_groups": ["resource_groups"],
|
1455
|
+
},
|
1456
|
+
app_gateway={
|
1457
|
+
"metrics_polling_interval": 300,
|
1458
|
+
"resource_groups": ["resource_groups"],
|
1459
|
+
},
|
1460
|
+
app_service={
|
1461
|
+
"metrics_polling_interval": 300,
|
1462
|
+
"resource_groups": ["resource_groups"],
|
1463
|
+
},
|
1464
|
+
containers={
|
1465
|
+
"metrics_polling_interval": 300,
|
1466
|
+
"resource_groups": ["resource_groups"],
|
1467
|
+
},
|
1468
|
+
cosmos_db={
|
1469
|
+
"metrics_polling_interval": 300,
|
1470
|
+
"resource_groups": ["resource_groups"],
|
1471
|
+
},
|
1472
|
+
cost_management={
|
1473
|
+
"metrics_polling_interval": 3600,
|
1474
|
+
"tag_keys": ["tag_keys"],
|
1475
|
+
},
|
1476
|
+
data_factory={
|
1477
|
+
"metrics_polling_interval": 300,
|
1478
|
+
"resource_groups": ["resource_groups"],
|
1479
|
+
},
|
1480
|
+
event_hub={
|
1481
|
+
"metrics_polling_interval": 300,
|
1482
|
+
"resource_groups": ["resource_groups"],
|
1483
|
+
},
|
1484
|
+
express_route={
|
1485
|
+
"metrics_polling_interval": 300,
|
1486
|
+
"resource_groups": ["resource_groups"],
|
1487
|
+
},
|
1488
|
+
firewalls={
|
1489
|
+
"metrics_polling_interval": 300,
|
1490
|
+
"resource_groups": ["resource_groups"],
|
1491
|
+
},
|
1492
|
+
front_door={
|
1493
|
+
"metrics_polling_interval": 300,
|
1494
|
+
"resource_groups": ["resource_groups"],
|
1495
|
+
},
|
1496
|
+
functions={
|
1497
|
+
"metrics_polling_interval": 300,
|
1498
|
+
"resource_groups": ["resource_groups"],
|
1499
|
+
},
|
1500
|
+
key_vault={
|
1501
|
+
"metrics_polling_interval": 300,
|
1502
|
+
"resource_groups": ["resource_groups"],
|
1503
|
+
},
|
1504
|
+
load_balancer={
|
1505
|
+
"metrics_polling_interval": 300,
|
1506
|
+
"resource_groups": ["resource_groups"],
|
1507
|
+
},
|
1508
|
+
logic_apps={
|
1509
|
+
"metrics_polling_interval": 300,
|
1510
|
+
"resource_groups": ["resource_groups"],
|
1511
|
+
},
|
1512
|
+
machine_learning={
|
1513
|
+
"metrics_polling_interval": 300,
|
1514
|
+
"resource_groups": ["resource_groups"],
|
1515
|
+
},
|
1516
|
+
maria_db={
|
1517
|
+
"metrics_polling_interval": 3600,
|
1518
|
+
"resource_groups": ["resource_groups"],
|
1519
|
+
},
|
1520
|
+
monitor={
|
1521
|
+
"metrics_polling_interval": 60,
|
1522
|
+
"resource_groups": ["resource_groups"],
|
1523
|
+
"include_tags": ["env:production"],
|
1524
|
+
"exclude_tags": [
|
1525
1525
|
"env:staging",
|
1526
1526
|
"env:testing",
|
1527
1527
|
],
|
1528
|
-
enabled
|
1529
|
-
resource_types
|
1530
|
-
|
1531
|
-
mysql=
|
1532
|
-
metrics_polling_interval
|
1533
|
-
resource_groups
|
1534
|
-
|
1535
|
-
mysql_flexible=
|
1536
|
-
metrics_polling_interval
|
1537
|
-
resource_groups
|
1538
|
-
|
1539
|
-
postgresql=
|
1540
|
-
metrics_polling_interval
|
1541
|
-
resource_groups
|
1542
|
-
|
1543
|
-
postgresql_flexible=
|
1544
|
-
metrics_polling_interval
|
1545
|
-
resource_groups
|
1546
|
-
|
1547
|
-
power_bi_dedicated=
|
1548
|
-
metrics_polling_interval
|
1549
|
-
resource_groups
|
1550
|
-
|
1551
|
-
redis_cache=
|
1552
|
-
metrics_polling_interval
|
1553
|
-
resource_groups
|
1554
|
-
|
1555
|
-
service_bus=
|
1556
|
-
metrics_polling_interval
|
1557
|
-
resource_groups
|
1558
|
-
|
1559
|
-
sql=
|
1560
|
-
metrics_polling_interval
|
1561
|
-
resource_groups
|
1562
|
-
|
1563
|
-
sql_managed=
|
1564
|
-
metrics_polling_interval
|
1565
|
-
resource_groups
|
1566
|
-
|
1567
|
-
storage=
|
1568
|
-
metrics_polling_interval
|
1569
|
-
resource_groups
|
1570
|
-
|
1571
|
-
virtual_machine=
|
1572
|
-
metrics_polling_interval
|
1573
|
-
resource_groups
|
1574
|
-
|
1575
|
-
virtual_networks=
|
1576
|
-
metrics_polling_interval
|
1577
|
-
resource_groups
|
1578
|
-
|
1579
|
-
vms=
|
1580
|
-
metrics_polling_interval
|
1581
|
-
resource_groups
|
1582
|
-
|
1583
|
-
vpn_gateway=
|
1584
|
-
metrics_polling_interval
|
1585
|
-
resource_groups
|
1586
|
-
)
|
1528
|
+
"enabled": True,
|
1529
|
+
"resource_types": ["microsoft.datashare/accounts"],
|
1530
|
+
},
|
1531
|
+
mysql={
|
1532
|
+
"metrics_polling_interval": 3600,
|
1533
|
+
"resource_groups": ["resource_groups"],
|
1534
|
+
},
|
1535
|
+
mysql_flexible={
|
1536
|
+
"metrics_polling_interval": 3600,
|
1537
|
+
"resource_groups": ["resource_groups"],
|
1538
|
+
},
|
1539
|
+
postgresql={
|
1540
|
+
"metrics_polling_interval": 3600,
|
1541
|
+
"resource_groups": ["resource_groups"],
|
1542
|
+
},
|
1543
|
+
postgresql_flexible={
|
1544
|
+
"metrics_polling_interval": 3600,
|
1545
|
+
"resource_groups": ["resource_groups"],
|
1546
|
+
},
|
1547
|
+
power_bi_dedicated={
|
1548
|
+
"metrics_polling_interval": 300,
|
1549
|
+
"resource_groups": ["resource_groups"],
|
1550
|
+
},
|
1551
|
+
redis_cache={
|
1552
|
+
"metrics_polling_interval": 300,
|
1553
|
+
"resource_groups": ["resource_groups"],
|
1554
|
+
},
|
1555
|
+
service_bus={
|
1556
|
+
"metrics_polling_interval": 300,
|
1557
|
+
"resource_groups": ["resource_groups"],
|
1558
|
+
},
|
1559
|
+
sql={
|
1560
|
+
"metrics_polling_interval": 300,
|
1561
|
+
"resource_groups": ["resource_groups"],
|
1562
|
+
},
|
1563
|
+
sql_managed={
|
1564
|
+
"metrics_polling_interval": 300,
|
1565
|
+
"resource_groups": ["resource_groups"],
|
1566
|
+
},
|
1567
|
+
storage={
|
1568
|
+
"metrics_polling_interval": 1800,
|
1569
|
+
"resource_groups": ["resource_groups"],
|
1570
|
+
},
|
1571
|
+
virtual_machine={
|
1572
|
+
"metrics_polling_interval": 300,
|
1573
|
+
"resource_groups": ["resource_groups"],
|
1574
|
+
},
|
1575
|
+
virtual_networks={
|
1576
|
+
"metrics_polling_interval": 300,
|
1577
|
+
"resource_groups": ["resource_groups"],
|
1578
|
+
},
|
1579
|
+
vms={
|
1580
|
+
"metrics_polling_interval": 300,
|
1581
|
+
"resource_groups": ["resource_groups"],
|
1582
|
+
},
|
1583
|
+
vpn_gateway={
|
1584
|
+
"metrics_polling_interval": 300,
|
1585
|
+
"resource_groups": ["resource_groups"],
|
1586
|
+
})
|
1587
1587
|
```
|
1588
1588
|
|
1589
1589
|
## Import
|
@@ -1612,39 +1612,39 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1612
1612
|
resource_name: str,
|
1613
1613
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1614
1614
|
account_id: Optional[pulumi.Input[str]] = None,
|
1615
|
-
api_management: Optional[pulumi.Input[
|
1616
|
-
app_gateway: Optional[pulumi.Input[
|
1617
|
-
app_service: Optional[pulumi.Input[
|
1618
|
-
containers: Optional[pulumi.Input[
|
1619
|
-
cosmos_db: Optional[pulumi.Input[
|
1620
|
-
cost_management: Optional[pulumi.Input[
|
1621
|
-
data_factory: Optional[pulumi.Input[
|
1622
|
-
event_hub: Optional[pulumi.Input[
|
1623
|
-
express_route: Optional[pulumi.Input[
|
1624
|
-
firewalls: Optional[pulumi.Input[
|
1625
|
-
front_door: Optional[pulumi.Input[
|
1626
|
-
functions: Optional[pulumi.Input[
|
1627
|
-
key_vault: Optional[pulumi.Input[
|
1615
|
+
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
1616
|
+
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
1617
|
+
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
1618
|
+
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
1619
|
+
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
1620
|
+
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
1621
|
+
data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
|
1622
|
+
event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
|
1623
|
+
express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
|
1624
|
+
firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
|
1625
|
+
front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
|
1626
|
+
functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
|
1627
|
+
key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
|
1628
1628
|
linked_account_id: Optional[pulumi.Input[str]] = None,
|
1629
|
-
load_balancer: Optional[pulumi.Input[
|
1630
|
-
logic_apps: Optional[pulumi.Input[
|
1631
|
-
machine_learning: Optional[pulumi.Input[
|
1632
|
-
maria_db: Optional[pulumi.Input[
|
1633
|
-
monitor: Optional[pulumi.Input[
|
1634
|
-
mysql: Optional[pulumi.Input[
|
1635
|
-
mysql_flexible: Optional[pulumi.Input[
|
1636
|
-
postgresql: Optional[pulumi.Input[
|
1637
|
-
postgresql_flexible: Optional[pulumi.Input[
|
1638
|
-
power_bi_dedicated: Optional[pulumi.Input[
|
1639
|
-
redis_cache: Optional[pulumi.Input[
|
1640
|
-
service_bus: Optional[pulumi.Input[
|
1641
|
-
sql: Optional[pulumi.Input[
|
1642
|
-
sql_managed: Optional[pulumi.Input[
|
1643
|
-
storage: Optional[pulumi.Input[
|
1644
|
-
virtual_machine: Optional[pulumi.Input[
|
1645
|
-
virtual_networks: Optional[pulumi.Input[
|
1646
|
-
vms: Optional[pulumi.Input[
|
1647
|
-
vpn_gateway: Optional[pulumi.Input[
|
1629
|
+
load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
|
1630
|
+
logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
|
1631
|
+
machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
|
1632
|
+
maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
|
1633
|
+
monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
|
1634
|
+
mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
|
1635
|
+
mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
|
1636
|
+
postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
|
1637
|
+
postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
|
1638
|
+
power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
|
1639
|
+
redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
|
1640
|
+
service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
|
1641
|
+
sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
|
1642
|
+
sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
|
1643
|
+
storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
|
1644
|
+
virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
|
1645
|
+
virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
|
1646
|
+
vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
|
1647
|
+
vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None,
|
1648
1648
|
__props__=None):
|
1649
1649
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
1650
1650
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -1701,39 +1701,39 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1701
1701
|
id: pulumi.Input[str],
|
1702
1702
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1703
1703
|
account_id: Optional[pulumi.Input[str]] = None,
|
1704
|
-
api_management: Optional[pulumi.Input[
|
1705
|
-
app_gateway: Optional[pulumi.Input[
|
1706
|
-
app_service: Optional[pulumi.Input[
|
1707
|
-
containers: Optional[pulumi.Input[
|
1708
|
-
cosmos_db: Optional[pulumi.Input[
|
1709
|
-
cost_management: Optional[pulumi.Input[
|
1710
|
-
data_factory: Optional[pulumi.Input[
|
1711
|
-
event_hub: Optional[pulumi.Input[
|
1712
|
-
express_route: Optional[pulumi.Input[
|
1713
|
-
firewalls: Optional[pulumi.Input[
|
1714
|
-
front_door: Optional[pulumi.Input[
|
1715
|
-
functions: Optional[pulumi.Input[
|
1716
|
-
key_vault: Optional[pulumi.Input[
|
1704
|
+
api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
|
1705
|
+
app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
|
1706
|
+
app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
|
1707
|
+
containers: Optional[pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']]] = None,
|
1708
|
+
cosmos_db: Optional[pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']]] = None,
|
1709
|
+
cost_management: Optional[pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']]] = None,
|
1710
|
+
data_factory: Optional[pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']]] = None,
|
1711
|
+
event_hub: Optional[pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']]] = None,
|
1712
|
+
express_route: Optional[pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']]] = None,
|
1713
|
+
firewalls: Optional[pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']]] = None,
|
1714
|
+
front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
|
1715
|
+
functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
|
1716
|
+
key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
|
1717
1717
|
linked_account_id: Optional[pulumi.Input[str]] = None,
|
1718
|
-
load_balancer: Optional[pulumi.Input[
|
1719
|
-
logic_apps: Optional[pulumi.Input[
|
1720
|
-
machine_learning: Optional[pulumi.Input[
|
1721
|
-
maria_db: Optional[pulumi.Input[
|
1722
|
-
monitor: Optional[pulumi.Input[
|
1723
|
-
mysql: Optional[pulumi.Input[
|
1724
|
-
mysql_flexible: Optional[pulumi.Input[
|
1725
|
-
postgresql: Optional[pulumi.Input[
|
1726
|
-
postgresql_flexible: Optional[pulumi.Input[
|
1727
|
-
power_bi_dedicated: Optional[pulumi.Input[
|
1728
|
-
redis_cache: Optional[pulumi.Input[
|
1729
|
-
service_bus: Optional[pulumi.Input[
|
1730
|
-
sql: Optional[pulumi.Input[
|
1731
|
-
sql_managed: Optional[pulumi.Input[
|
1732
|
-
storage: Optional[pulumi.Input[
|
1733
|
-
virtual_machine: Optional[pulumi.Input[
|
1734
|
-
virtual_networks: Optional[pulumi.Input[
|
1735
|
-
vms: Optional[pulumi.Input[
|
1736
|
-
vpn_gateway: Optional[pulumi.Input[
|
1718
|
+
load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
|
1719
|
+
logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
|
1720
|
+
machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
|
1721
|
+
maria_db: Optional[pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']]] = None,
|
1722
|
+
monitor: Optional[pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']]] = None,
|
1723
|
+
mysql: Optional[pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']]] = None,
|
1724
|
+
mysql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']]] = None,
|
1725
|
+
postgresql: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']]] = None,
|
1726
|
+
postgresql_flexible: Optional[pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']]] = None,
|
1727
|
+
power_bi_dedicated: Optional[pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']]] = None,
|
1728
|
+
redis_cache: Optional[pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']]] = None,
|
1729
|
+
service_bus: Optional[pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']]] = None,
|
1730
|
+
sql: Optional[pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']]] = None,
|
1731
|
+
sql_managed: Optional[pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']]] = None,
|
1732
|
+
storage: Optional[pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']]] = None,
|
1733
|
+
virtual_machine: Optional[pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']]] = None,
|
1734
|
+
virtual_networks: Optional[pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']]] = None,
|
1735
|
+
vms: Optional[pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']]] = None,
|
1736
|
+
vpn_gateway: Optional[pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']]] = None) -> 'AzureIntegrations':
|
1737
1737
|
"""
|
1738
1738
|
Get an existing AzureIntegrations resource's state with the given name, id, and optional extra
|
1739
1739
|
properties used to qualify the lookup.
|
@@ -1742,46 +1742,46 @@ class AzureIntegrations(pulumi.CustomResource):
|
|
1742
1742
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1743
1743
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1744
1744
|
:param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
|
1745
|
-
:param pulumi.Input[
|
1746
|
-
:param pulumi.Input[
|
1747
|
-
:param pulumi.Input[
|
1748
|
-
:param pulumi.Input[
|
1749
|
-
:param pulumi.Input[
|
1750
|
-
:param pulumi.Input[
|
1751
|
-
:param pulumi.Input[
|
1752
|
-
:param pulumi.Input[
|
1753
|
-
:param pulumi.Input[
|
1754
|
-
:param pulumi.Input[
|
1755
|
-
:param pulumi.Input[
|
1756
|
-
:param pulumi.Input[
|
1757
|
-
:param pulumi.Input[
|
1745
|
+
:param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
|
1746
|
+
:param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
|
1747
|
+
:param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
|
1748
|
+
:param pulumi.Input[Union['AzureIntegrationsContainersArgs', 'AzureIntegrationsContainersArgsDict']] containers: Azure Containers. See Integration blocks below for details.
|
1749
|
+
:param pulumi.Input[Union['AzureIntegrationsCosmosDbArgs', 'AzureIntegrationsCosmosDbArgsDict']] cosmos_db: Azure CosmosDB. See Integration blocks below for details.
|
1750
|
+
:param pulumi.Input[Union['AzureIntegrationsCostManagementArgs', 'AzureIntegrationsCostManagementArgsDict']] cost_management: Azure Cost Management. See Integration blocks below for details.
|
1751
|
+
:param pulumi.Input[Union['AzureIntegrationsDataFactoryArgs', 'AzureIntegrationsDataFactoryArgsDict']] data_factory: Azure Data Factory. See Integration blocks below for details.
|
1752
|
+
:param pulumi.Input[Union['AzureIntegrationsEventHubArgs', 'AzureIntegrationsEventHubArgsDict']] event_hub: Azure Event Hub. See Integration blocks below for details.
|
1753
|
+
:param pulumi.Input[Union['AzureIntegrationsExpressRouteArgs', 'AzureIntegrationsExpressRouteArgsDict']] express_route: Azure Express Route. See Integration blocks below for details.
|
1754
|
+
:param pulumi.Input[Union['AzureIntegrationsFirewallsArgs', 'AzureIntegrationsFirewallsArgsDict']] firewalls: Azure Firewalls. See Integration blocks below for details.
|
1755
|
+
:param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
|
1756
|
+
:param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
|
1757
|
+
:param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
|
1758
1758
|
:param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
|
1759
1759
|
|
1760
1760
|
|
1761
1761
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
|
1762
|
-
:param pulumi.Input[
|
1763
|
-
:param pulumi.Input[
|
1764
|
-
:param pulumi.Input[
|
1765
|
-
:param pulumi.Input[
|
1766
|
-
:param pulumi.Input[
|
1762
|
+
:param pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']] load_balancer: Azure Load Balancer. See Integration blocks below for details.
|
1763
|
+
:param pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']] logic_apps: Azure Logic Apps. See Integration blocks below for details.
|
1764
|
+
:param pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']] machine_learning: Azure Machine Learning. See Integration blocks below for details.
|
1765
|
+
:param pulumi.Input[Union['AzureIntegrationsMariaDbArgs', 'AzureIntegrationsMariaDbArgsDict']] maria_db: Azure MariaDB. See Integration blocks below for details.
|
1766
|
+
:param pulumi.Input[Union['AzureIntegrationsMonitorArgs', 'AzureIntegrationsMonitorArgsDict']] monitor: Azure Monitor. See Integration blocks below for details.
|
1767
1767
|
|
1768
1768
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
1769
|
-
:param pulumi.Input[
|
1770
|
-
:param pulumi.Input[
|
1771
|
-
:param pulumi.Input[
|
1772
|
-
:param pulumi.Input[
|
1773
|
-
:param pulumi.Input[
|
1774
|
-
:param pulumi.Input[
|
1775
|
-
:param pulumi.Input[
|
1776
|
-
:param pulumi.Input[
|
1777
|
-
:param pulumi.Input[
|
1778
|
-
:param pulumi.Input[
|
1769
|
+
:param pulumi.Input[Union['AzureIntegrationsMysqlArgs', 'AzureIntegrationsMysqlArgsDict']] mysql: Azure MySQL. See Integration blocks below for details.
|
1770
|
+
:param pulumi.Input[Union['AzureIntegrationsMysqlFlexibleArgs', 'AzureIntegrationsMysqlFlexibleArgsDict']] mysql_flexible: Azure MySQL Flexible Server. See Integration blocks below for details.
|
1771
|
+
:param pulumi.Input[Union['AzureIntegrationsPostgresqlArgs', 'AzureIntegrationsPostgresqlArgsDict']] postgresql: Azure PostgreSQL. See Integration blocks below for details.
|
1772
|
+
:param pulumi.Input[Union['AzureIntegrationsPostgresqlFlexibleArgs', 'AzureIntegrationsPostgresqlFlexibleArgsDict']] postgresql_flexible: Azure PostgreSQL Flexible Server. See Integration blocks below for details.
|
1773
|
+
:param pulumi.Input[Union['AzureIntegrationsPowerBiDedicatedArgs', 'AzureIntegrationsPowerBiDedicatedArgsDict']] power_bi_dedicated: Azure Power BI Dedicated. See Integration blocks below for details.
|
1774
|
+
:param pulumi.Input[Union['AzureIntegrationsRedisCacheArgs', 'AzureIntegrationsRedisCacheArgsDict']] redis_cache: Azure Redis Cache. See Integration blocks below for details.
|
1775
|
+
:param pulumi.Input[Union['AzureIntegrationsServiceBusArgs', 'AzureIntegrationsServiceBusArgsDict']] service_bus: Azure Service Bus. See Integration blocks below for details.
|
1776
|
+
:param pulumi.Input[Union['AzureIntegrationsSqlArgs', 'AzureIntegrationsSqlArgsDict']] sql: Azure SQL. See Integration blocks below for details.
|
1777
|
+
:param pulumi.Input[Union['AzureIntegrationsSqlManagedArgs', 'AzureIntegrationsSqlManagedArgsDict']] sql_managed: Azure SQL Managed. See Integration blocks below for details.
|
1778
|
+
:param pulumi.Input[Union['AzureIntegrationsStorageArgs', 'AzureIntegrationsStorageArgsDict']] storage: for Azure Storage. See Integration blocks below for details.
|
1779
1779
|
|
1780
1780
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 3600 seconds.
|
1781
|
-
:param pulumi.Input[
|
1782
|
-
:param pulumi.Input[
|
1783
|
-
:param pulumi.Input[
|
1784
|
-
:param pulumi.Input[
|
1781
|
+
:param pulumi.Input[Union['AzureIntegrationsVirtualMachineArgs', 'AzureIntegrationsVirtualMachineArgsDict']] virtual_machine: Azure Virtual machine. See Integration blocks below for details.
|
1782
|
+
:param pulumi.Input[Union['AzureIntegrationsVirtualNetworksArgs', 'AzureIntegrationsVirtualNetworksArgsDict']] virtual_networks: for Azure Virtual networks. See Integration blocks below for details.
|
1783
|
+
:param pulumi.Input[Union['AzureIntegrationsVmsArgs', 'AzureIntegrationsVmsArgsDict']] vms: Azure VMs. See Integration blocks below for details.
|
1784
|
+
:param pulumi.Input[Union['AzureIntegrationsVpnGatewayArgs', 'AzureIntegrationsVpnGatewayArgsDict']] vpn_gateway: Azure VPN Gateway. See Integration blocks below for details.
|
1785
1785
|
|
1786
1786
|
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 1800 seconds.
|
1787
1787
|
"""
|