pulumi-newrelic 5.24.0__py3-none-any.whl → 5.24.0a1714147731__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/alert_policy.py +27 -0
- pulumi_newrelic/cloud/aws_integrations.py +864 -635
- pulumi_newrelic/cloud/azure_integrations.py +83 -118
- pulumi_newrelic/cloud/gcp_integrations.py +50 -64
- {pulumi_newrelic-5.24.0.dist-info → pulumi_newrelic-5.24.0a1714147731.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.24.0.dist-info → pulumi_newrelic-5.24.0a1714147731.dist-info}/RECORD +8 -8
- {pulumi_newrelic-5.24.0.dist-info → pulumi_newrelic-5.24.0a1714147731.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.24.0.dist-info → pulumi_newrelic-5.24.0a1714147731.dist-info}/top_level.txt +0 -0
@@ -47,8 +47,6 @@ class GcpIntegrationsArgs:
|
|
47
47
|
"""
|
48
48
|
The set of arguments for constructing a GcpIntegrations resource.
|
49
49
|
:param pulumi.Input[int] linked_account_id: The ID of the linked GCP account in New Relic.
|
50
|
-
|
51
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
52
50
|
:param pulumi.Input[int] 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`.
|
53
51
|
:param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
|
54
52
|
:param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
|
@@ -138,8 +136,6 @@ class GcpIntegrationsArgs:
|
|
138
136
|
def linked_account_id(self) -> pulumi.Input[int]:
|
139
137
|
"""
|
140
138
|
The ID of the linked GCP account in New Relic.
|
141
|
-
|
142
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
143
139
|
"""
|
144
140
|
return pulumi.get(self, "linked_account_id")
|
145
141
|
|
@@ -522,8 +518,6 @@ class _GcpIntegrationsState:
|
|
522
518
|
:param pulumi.Input['GcpIntegrationsInterconnectArgs'] interconnect: Interconnect integration. See Integration blocks below for details.
|
523
519
|
:param pulumi.Input['GcpIntegrationsKubernetesArgs'] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
524
520
|
:param pulumi.Input[int] linked_account_id: The ID of the linked GCP account in New Relic.
|
525
|
-
|
526
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
527
521
|
:param pulumi.Input['GcpIntegrationsLoadBalancingArgs'] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
528
522
|
:param pulumi.Input['GcpIntegrationsMemCacheArgs'] mem_cache: Mem cache integration. See Integration blocks below for details.
|
529
523
|
:param pulumi.Input['GcpIntegrationsPubSubArgs'] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
@@ -790,8 +784,6 @@ class _GcpIntegrationsState:
|
|
790
784
|
def linked_account_id(self) -> Optional[pulumi.Input[int]]:
|
791
785
|
"""
|
792
786
|
The ID of the linked GCP account in New Relic.
|
793
|
-
|
794
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
795
787
|
"""
|
796
788
|
return pulumi.get(self, "linked_account_id")
|
797
789
|
|
@@ -989,83 +981,83 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
989
981
|
foo1 = newrelic.cloud.GcpIntegrations("foo1",
|
990
982
|
linked_account_id=foo.id,
|
991
983
|
app_engine=newrelic.cloud.GcpIntegrationsAppEngineArgs(
|
992
|
-
metrics_polling_interval=
|
984
|
+
metrics_polling_interval=400,
|
993
985
|
),
|
994
986
|
big_query=newrelic.cloud.GcpIntegrationsBigQueryArgs(
|
995
|
-
metrics_polling_interval=
|
987
|
+
metrics_polling_interval=400,
|
996
988
|
fetch_tags=True,
|
997
989
|
),
|
998
990
|
big_table=newrelic.cloud.GcpIntegrationsBigTableArgs(
|
999
|
-
metrics_polling_interval=
|
991
|
+
metrics_polling_interval=400,
|
1000
992
|
),
|
1001
993
|
composer=newrelic.cloud.GcpIntegrationsComposerArgs(
|
1002
|
-
metrics_polling_interval=
|
994
|
+
metrics_polling_interval=400,
|
1003
995
|
),
|
1004
996
|
data_flow=newrelic.cloud.GcpIntegrationsDataFlowArgs(
|
1005
|
-
metrics_polling_interval=
|
997
|
+
metrics_polling_interval=400,
|
1006
998
|
),
|
1007
999
|
data_proc=newrelic.cloud.GcpIntegrationsDataProcArgs(
|
1008
|
-
metrics_polling_interval=
|
1000
|
+
metrics_polling_interval=400,
|
1009
1001
|
),
|
1010
1002
|
data_store=newrelic.cloud.GcpIntegrationsDataStoreArgs(
|
1011
|
-
metrics_polling_interval=
|
1003
|
+
metrics_polling_interval=400,
|
1012
1004
|
),
|
1013
1005
|
fire_base_database=newrelic.cloud.GcpIntegrationsFireBaseDatabaseArgs(
|
1014
|
-
metrics_polling_interval=
|
1006
|
+
metrics_polling_interval=400,
|
1015
1007
|
),
|
1016
1008
|
fire_base_hosting=newrelic.cloud.GcpIntegrationsFireBaseHostingArgs(
|
1017
|
-
metrics_polling_interval=
|
1009
|
+
metrics_polling_interval=400,
|
1018
1010
|
),
|
1019
1011
|
fire_base_storage=newrelic.cloud.GcpIntegrationsFireBaseStorageArgs(
|
1020
|
-
metrics_polling_interval=
|
1012
|
+
metrics_polling_interval=400,
|
1021
1013
|
),
|
1022
1014
|
fire_store=newrelic.cloud.GcpIntegrationsFireStoreArgs(
|
1023
|
-
metrics_polling_interval=
|
1015
|
+
metrics_polling_interval=400,
|
1024
1016
|
),
|
1025
1017
|
functions=newrelic.cloud.GcpIntegrationsFunctionsArgs(
|
1026
|
-
metrics_polling_interval=
|
1018
|
+
metrics_polling_interval=400,
|
1027
1019
|
),
|
1028
1020
|
interconnect=newrelic.cloud.GcpIntegrationsInterconnectArgs(
|
1029
|
-
metrics_polling_interval=
|
1021
|
+
metrics_polling_interval=400,
|
1030
1022
|
),
|
1031
1023
|
kubernetes=newrelic.cloud.GcpIntegrationsKubernetesArgs(
|
1032
|
-
metrics_polling_interval=
|
1024
|
+
metrics_polling_interval=400,
|
1033
1025
|
),
|
1034
1026
|
load_balancing=newrelic.cloud.GcpIntegrationsLoadBalancingArgs(
|
1035
|
-
metrics_polling_interval=
|
1027
|
+
metrics_polling_interval=400,
|
1036
1028
|
),
|
1037
1029
|
mem_cache=newrelic.cloud.GcpIntegrationsMemCacheArgs(
|
1038
|
-
metrics_polling_interval=
|
1030
|
+
metrics_polling_interval=400,
|
1039
1031
|
),
|
1040
1032
|
pub_sub=newrelic.cloud.GcpIntegrationsPubSubArgs(
|
1041
|
-
metrics_polling_interval=
|
1033
|
+
metrics_polling_interval=400,
|
1042
1034
|
fetch_tags=True,
|
1043
1035
|
),
|
1044
1036
|
redis=newrelic.cloud.GcpIntegrationsRedisArgs(
|
1045
|
-
metrics_polling_interval=
|
1037
|
+
metrics_polling_interval=400,
|
1046
1038
|
),
|
1047
1039
|
router=newrelic.cloud.GcpIntegrationsRouterArgs(
|
1048
|
-
metrics_polling_interval=
|
1040
|
+
metrics_polling_interval=400,
|
1049
1041
|
),
|
1050
1042
|
run=newrelic.cloud.GcpIntegrationsRunArgs(
|
1051
|
-
metrics_polling_interval=
|
1043
|
+
metrics_polling_interval=400,
|
1052
1044
|
),
|
1053
1045
|
spanner=newrelic.cloud.GcpIntegrationsSpannerArgs(
|
1054
|
-
metrics_polling_interval=
|
1046
|
+
metrics_polling_interval=400,
|
1055
1047
|
fetch_tags=True,
|
1056
1048
|
),
|
1057
1049
|
sql=newrelic.cloud.GcpIntegrationsSqlArgs(
|
1058
|
-
metrics_polling_interval=
|
1050
|
+
metrics_polling_interval=400,
|
1059
1051
|
),
|
1060
1052
|
storage=newrelic.cloud.GcpIntegrationsStorageArgs(
|
1061
|
-
metrics_polling_interval=
|
1053
|
+
metrics_polling_interval=400,
|
1062
1054
|
fetch_tags=True,
|
1063
1055
|
),
|
1064
1056
|
virtual_machines=newrelic.cloud.GcpIntegrationsVirtualMachinesArgs(
|
1065
|
-
metrics_polling_interval=
|
1057
|
+
metrics_polling_interval=400,
|
1066
1058
|
),
|
1067
1059
|
vpc_access=newrelic.cloud.GcpIntegrationsVpcAccessArgs(
|
1068
|
-
metrics_polling_interval=
|
1060
|
+
metrics_polling_interval=400,
|
1069
1061
|
))
|
1070
1062
|
```
|
1071
1063
|
|
@@ -1098,8 +1090,6 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
1098
1090
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsInterconnectArgs']] interconnect: Interconnect integration. See Integration blocks below for details.
|
1099
1091
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsKubernetesArgs']] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
1100
1092
|
:param pulumi.Input[int] linked_account_id: The ID of the linked GCP account in New Relic.
|
1101
|
-
|
1102
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
1103
1093
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsLoadBalancingArgs']] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
1104
1094
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsMemCacheArgs']] mem_cache: Mem cache integration. See Integration blocks below for details.
|
1105
1095
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsPubSubArgs']] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
@@ -1141,83 +1131,83 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
1141
1131
|
foo1 = newrelic.cloud.GcpIntegrations("foo1",
|
1142
1132
|
linked_account_id=foo.id,
|
1143
1133
|
app_engine=newrelic.cloud.GcpIntegrationsAppEngineArgs(
|
1144
|
-
metrics_polling_interval=
|
1134
|
+
metrics_polling_interval=400,
|
1145
1135
|
),
|
1146
1136
|
big_query=newrelic.cloud.GcpIntegrationsBigQueryArgs(
|
1147
|
-
metrics_polling_interval=
|
1137
|
+
metrics_polling_interval=400,
|
1148
1138
|
fetch_tags=True,
|
1149
1139
|
),
|
1150
1140
|
big_table=newrelic.cloud.GcpIntegrationsBigTableArgs(
|
1151
|
-
metrics_polling_interval=
|
1141
|
+
metrics_polling_interval=400,
|
1152
1142
|
),
|
1153
1143
|
composer=newrelic.cloud.GcpIntegrationsComposerArgs(
|
1154
|
-
metrics_polling_interval=
|
1144
|
+
metrics_polling_interval=400,
|
1155
1145
|
),
|
1156
1146
|
data_flow=newrelic.cloud.GcpIntegrationsDataFlowArgs(
|
1157
|
-
metrics_polling_interval=
|
1147
|
+
metrics_polling_interval=400,
|
1158
1148
|
),
|
1159
1149
|
data_proc=newrelic.cloud.GcpIntegrationsDataProcArgs(
|
1160
|
-
metrics_polling_interval=
|
1150
|
+
metrics_polling_interval=400,
|
1161
1151
|
),
|
1162
1152
|
data_store=newrelic.cloud.GcpIntegrationsDataStoreArgs(
|
1163
|
-
metrics_polling_interval=
|
1153
|
+
metrics_polling_interval=400,
|
1164
1154
|
),
|
1165
1155
|
fire_base_database=newrelic.cloud.GcpIntegrationsFireBaseDatabaseArgs(
|
1166
|
-
metrics_polling_interval=
|
1156
|
+
metrics_polling_interval=400,
|
1167
1157
|
),
|
1168
1158
|
fire_base_hosting=newrelic.cloud.GcpIntegrationsFireBaseHostingArgs(
|
1169
|
-
metrics_polling_interval=
|
1159
|
+
metrics_polling_interval=400,
|
1170
1160
|
),
|
1171
1161
|
fire_base_storage=newrelic.cloud.GcpIntegrationsFireBaseStorageArgs(
|
1172
|
-
metrics_polling_interval=
|
1162
|
+
metrics_polling_interval=400,
|
1173
1163
|
),
|
1174
1164
|
fire_store=newrelic.cloud.GcpIntegrationsFireStoreArgs(
|
1175
|
-
metrics_polling_interval=
|
1165
|
+
metrics_polling_interval=400,
|
1176
1166
|
),
|
1177
1167
|
functions=newrelic.cloud.GcpIntegrationsFunctionsArgs(
|
1178
|
-
metrics_polling_interval=
|
1168
|
+
metrics_polling_interval=400,
|
1179
1169
|
),
|
1180
1170
|
interconnect=newrelic.cloud.GcpIntegrationsInterconnectArgs(
|
1181
|
-
metrics_polling_interval=
|
1171
|
+
metrics_polling_interval=400,
|
1182
1172
|
),
|
1183
1173
|
kubernetes=newrelic.cloud.GcpIntegrationsKubernetesArgs(
|
1184
|
-
metrics_polling_interval=
|
1174
|
+
metrics_polling_interval=400,
|
1185
1175
|
),
|
1186
1176
|
load_balancing=newrelic.cloud.GcpIntegrationsLoadBalancingArgs(
|
1187
|
-
metrics_polling_interval=
|
1177
|
+
metrics_polling_interval=400,
|
1188
1178
|
),
|
1189
1179
|
mem_cache=newrelic.cloud.GcpIntegrationsMemCacheArgs(
|
1190
|
-
metrics_polling_interval=
|
1180
|
+
metrics_polling_interval=400,
|
1191
1181
|
),
|
1192
1182
|
pub_sub=newrelic.cloud.GcpIntegrationsPubSubArgs(
|
1193
|
-
metrics_polling_interval=
|
1183
|
+
metrics_polling_interval=400,
|
1194
1184
|
fetch_tags=True,
|
1195
1185
|
),
|
1196
1186
|
redis=newrelic.cloud.GcpIntegrationsRedisArgs(
|
1197
|
-
metrics_polling_interval=
|
1187
|
+
metrics_polling_interval=400,
|
1198
1188
|
),
|
1199
1189
|
router=newrelic.cloud.GcpIntegrationsRouterArgs(
|
1200
|
-
metrics_polling_interval=
|
1190
|
+
metrics_polling_interval=400,
|
1201
1191
|
),
|
1202
1192
|
run=newrelic.cloud.GcpIntegrationsRunArgs(
|
1203
|
-
metrics_polling_interval=
|
1193
|
+
metrics_polling_interval=400,
|
1204
1194
|
),
|
1205
1195
|
spanner=newrelic.cloud.GcpIntegrationsSpannerArgs(
|
1206
|
-
metrics_polling_interval=
|
1196
|
+
metrics_polling_interval=400,
|
1207
1197
|
fetch_tags=True,
|
1208
1198
|
),
|
1209
1199
|
sql=newrelic.cloud.GcpIntegrationsSqlArgs(
|
1210
|
-
metrics_polling_interval=
|
1200
|
+
metrics_polling_interval=400,
|
1211
1201
|
),
|
1212
1202
|
storage=newrelic.cloud.GcpIntegrationsStorageArgs(
|
1213
|
-
metrics_polling_interval=
|
1203
|
+
metrics_polling_interval=400,
|
1214
1204
|
fetch_tags=True,
|
1215
1205
|
),
|
1216
1206
|
virtual_machines=newrelic.cloud.GcpIntegrationsVirtualMachinesArgs(
|
1217
|
-
metrics_polling_interval=
|
1207
|
+
metrics_polling_interval=400,
|
1218
1208
|
),
|
1219
1209
|
vpc_access=newrelic.cloud.GcpIntegrationsVpcAccessArgs(
|
1220
|
-
metrics_polling_interval=
|
1210
|
+
metrics_polling_interval=400,
|
1221
1211
|
))
|
1222
1212
|
```
|
1223
1213
|
|
@@ -1375,8 +1365,6 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
1375
1365
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsInterconnectArgs']] interconnect: Interconnect integration. See Integration blocks below for details.
|
1376
1366
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsKubernetesArgs']] kubernetes: Kubernetes integration. See Integration blocks below for details.
|
1377
1367
|
:param pulumi.Input[int] linked_account_id: The ID of the linked GCP account in New Relic.
|
1378
|
-
|
1379
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
1380
1368
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsLoadBalancingArgs']] load_balancing: Load Balancing integration. See Integration blocks below for details.
|
1381
1369
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsMemCacheArgs']] mem_cache: Mem cache integration. See Integration blocks below for details.
|
1382
1370
|
:param pulumi.Input[pulumi.InputType['GcpIntegrationsPubSubArgs']] pub_sub: Pub/Sub integration. See Integration blocks below for details.
|
@@ -1556,8 +1544,6 @@ class GcpIntegrations(pulumi.CustomResource):
|
|
1556
1544
|
def linked_account_id(self) -> pulumi.Output[int]:
|
1557
1545
|
"""
|
1558
1546
|
The ID of the linked GCP account in New Relic.
|
1559
|
-
|
1560
|
-
The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
|
1561
1547
|
"""
|
1562
1548
|
return pulumi.get(self, "linked_account_id")
|
1563
1549
|
|
@@ -5,7 +5,7 @@ pulumi_newrelic/account_management.py,sha256=8mWtlTu8uP0x-4CVfAVL5kjuElnyNUeLHBq
|
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=4sodQakUyfi7kCLMkyN6mqCJbGjwPalyScDfEvLenlw,20130
|
6
6
|
pulumi_newrelic/alert_condition.py,sha256=uVd-DZSxGW1BLS9jaCWobzCeQVWrX_tpkxJd1H2bDak,41574
|
7
7
|
pulumi_newrelic/alert_muting_rule.py,sha256=i4Ax9ybThjqOutwkHnTDCBT6FZcRNDCiQRAbRA7c7l8,18756
|
8
|
-
pulumi_newrelic/alert_policy.py,sha256=
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=nAxaV_q0qfKiF1zOsxIxCRAMrE_xZhAErXTo8LXsIfI,26057
|
9
9
|
pulumi_newrelic/alert_policy_channel.py,sha256=xAiVGoYn-4W0P-84V0O24DebBJ5WnEZsB7Fcynod9G0,15477
|
10
10
|
pulumi_newrelic/api_access_key.py,sha256=ImnIbxvvPDRb4Lhf8uaANZYYkeKDhVet_AmUwPJyaW8,21435
|
11
11
|
pulumi_newrelic/browser_application.py,sha256=qV2660Zxy_hcI6qzL63WdxjU86QvPcsnBLjIu6jXsCg,21042
|
@@ -50,11 +50,11 @@ pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8o
|
|
50
50
|
pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
|
51
51
|
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=hLMpWgL21NsNGm5EfMi4cmNwskBkmpmfdITRaYGyJGA,62204
|
52
52
|
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=9qnBNpfeY5g-1omrIV4cf80iQK3bYzVze552CcC9d-g,20827
|
53
|
-
pulumi_newrelic/cloud/aws_integrations.py,sha256=
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=BXXnrRzkaWJBl_QUoRjhtQNFfTv4vHC3f0w6Y-wubT0,178549
|
54
54
|
pulumi_newrelic/cloud/aws_link_account.py,sha256=AW3QatCvWuJngSH90XNq0F-5-3KdEJhqR7ApRwSTWTY,15495
|
55
|
-
pulumi_newrelic/cloud/azure_integrations.py,sha256=
|
55
|
+
pulumi_newrelic/cloud/azure_integrations.py,sha256=9Wzkx5TjdXiZKiMDlEok628lTOIYFZnMAX_uajpUcy4,109298
|
56
56
|
pulumi_newrelic/cloud/azure_link_account.py,sha256=mMOVLFsyXt1JF7LC7Iv7RmDHqOMntE6jTyhlLIjoV0Y,18559
|
57
|
-
pulumi_newrelic/cloud/gcp_integrations.py,sha256=
|
57
|
+
pulumi_newrelic/cloud/gcp_integrations.py,sha256=SJ4_Wqrz5ZSn6DLNLcpVdiwSfgnqLDg4GKUJPIwMGss,83502
|
58
58
|
pulumi_newrelic/cloud/gcp_link_account.py,sha256=MLYxn_IyYZm5eaA6R1V4LsyES1h-rte68X4QvCfDMjI,12431
|
59
59
|
pulumi_newrelic/cloud/outputs.py,sha256=Ow4BSp_VDxtvyYGpChi54fvOeBSUoyQ_kEBn1t1F-eQ,316241
|
60
60
|
pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
@@ -83,7 +83,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=BluQDtDlZIB_cS8bElkn80Szd_
|
|
83
83
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=r6x4DkgvJhlpKqwuenbPQymM0UUMIq_3V2ceHg8176c,53043
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=ZRn9HLFuwBPIS-kCoe-HvqogKnlhgBzZ4hAy3J0mpaY,15238
|
85
85
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=O6E8TWO-Fgy9OE0B2bN1mTvudq2hfk6h9HRpSHv0hjU,44357
|
86
|
-
pulumi_newrelic-5.24.
|
87
|
-
pulumi_newrelic-5.24.
|
88
|
-
pulumi_newrelic-5.24.
|
89
|
-
pulumi_newrelic-5.24.
|
86
|
+
pulumi_newrelic-5.24.0a1714147731.dist-info/METADATA,sha256=06JkKxVcKptARIsFwNQl6C6bH--4fG7AoYrY6xOKLLQ,3900
|
87
|
+
pulumi_newrelic-5.24.0a1714147731.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.24.0a1714147731.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.24.0a1714147731.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.24.0.dist-info → pulumi_newrelic-5.24.0a1714147731.dist-info}/top_level.txt
RENAMED
File without changes
|