@pulumi/datadog 4.2.0 → 4.3.0-alpha.1635517906
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.
- package/dashboard.d.ts +6 -6
- package/dashboard.js +4 -7
- package/dashboard.js.map +1 -1
- package/dashboardJson.d.ts +2 -2
- package/dashboardJson.js +2 -2
- package/getMonitor.d.ts +8 -0
- package/getRoles.d.ts +43 -0
- package/getRoles.js +34 -0
- package/getRoles.js.map +1 -0
- package/index.d.ts +4 -0
- package/index.js +16 -0
- package/index.js.map +1 -1
- package/logsCustomPipeline.d.ts +1 -1
- package/logsCustomPipeline.js +1 -1
- package/logsIntegrationPipeline.d.ts +2 -0
- package/logsIntegrationPipeline.js +2 -0
- package/logsIntegrationPipeline.js.map +1 -1
- package/monitor.d.ts +24 -0
- package/monitor.js +4 -0
- package/monitor.js.map +1 -1
- package/monitorJson.d.ts +101 -0
- package/monitorJson.js +96 -0
- package/monitorJson.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/securityMonitoringDefaultRule.d.ts +1 -2
- package/securityMonitoringDefaultRule.js +1 -2
- package/securityMonitoringDefaultRule.js.map +1 -1
- package/securityMonitoringRule.d.ts +12 -2
- package/securityMonitoringRule.js +2 -2
- package/securityMonitoringRule.js.map +1 -1
- package/syntheticsTest.d.ts +6 -6
- package/types/input.d.ts +279 -56
- package/types/output.d.ts +293 -77
- package/webhook.d.ts +125 -0
- package/webhook.js +93 -0
- package/webhook.js.map +1 -0
- package/webhookCustomVariable.d.ts +94 -0
- package/webhookCustomVariable.js +85 -0
- package/webhookCustomVariable.js.map +1 -0
package/types/output.d.ts
CHANGED
|
@@ -627,10 +627,36 @@ export interface DashboardWidgetGeomapDefinitionRequestLogQueryMultiCompute {
|
|
|
627
627
|
interval?: number;
|
|
628
628
|
}
|
|
629
629
|
export interface DashboardWidgetGeomapDefinitionRequestQuery {
|
|
630
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery;
|
|
631
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery;
|
|
630
632
|
eventQuery?: outputs.DashboardWidgetGeomapDefinitionRequestQueryEventQuery;
|
|
631
633
|
metricQuery?: outputs.DashboardWidgetGeomapDefinitionRequestQueryMetricQuery;
|
|
632
634
|
processQuery?: outputs.DashboardWidgetGeomapDefinitionRequestQueryProcessQuery;
|
|
633
635
|
}
|
|
636
|
+
export interface DashboardWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery {
|
|
637
|
+
dataSource: string;
|
|
638
|
+
env: string;
|
|
639
|
+
isUpstream?: boolean;
|
|
640
|
+
name: string;
|
|
641
|
+
operationName: string;
|
|
642
|
+
primaryTagName?: string;
|
|
643
|
+
primaryTagValue?: string;
|
|
644
|
+
resourceName: string;
|
|
645
|
+
service: string;
|
|
646
|
+
stat: string;
|
|
647
|
+
}
|
|
648
|
+
export interface DashboardWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery {
|
|
649
|
+
dataSource: string;
|
|
650
|
+
env: string;
|
|
651
|
+
groupBies?: string[];
|
|
652
|
+
name: string;
|
|
653
|
+
operationName?: string;
|
|
654
|
+
primaryTagName?: string;
|
|
655
|
+
primaryTagValue?: string;
|
|
656
|
+
resourceName?: string;
|
|
657
|
+
service: string;
|
|
658
|
+
stat: string;
|
|
659
|
+
}
|
|
634
660
|
export interface DashboardWidgetGeomapDefinitionRequestQueryEventQuery {
|
|
635
661
|
computes: outputs.DashboardWidgetGeomapDefinitionRequestQueryEventQueryCompute[];
|
|
636
662
|
dataSource: string;
|
|
@@ -1256,10 +1282,36 @@ export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestLogQ
|
|
|
1256
1282
|
interval?: number;
|
|
1257
1283
|
}
|
|
1258
1284
|
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQuery {
|
|
1285
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery;
|
|
1286
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery;
|
|
1259
1287
|
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery;
|
|
1260
1288
|
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryMetricQuery;
|
|
1261
1289
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryProcessQuery;
|
|
1262
1290
|
}
|
|
1291
|
+
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmDependencyStatsQuery {
|
|
1292
|
+
dataSource: string;
|
|
1293
|
+
env: string;
|
|
1294
|
+
isUpstream?: boolean;
|
|
1295
|
+
name: string;
|
|
1296
|
+
operationName: string;
|
|
1297
|
+
primaryTagName?: string;
|
|
1298
|
+
primaryTagValue?: string;
|
|
1299
|
+
resourceName: string;
|
|
1300
|
+
service: string;
|
|
1301
|
+
stat: string;
|
|
1302
|
+
}
|
|
1303
|
+
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryApmResourceStatsQuery {
|
|
1304
|
+
dataSource: string;
|
|
1305
|
+
env: string;
|
|
1306
|
+
groupBies?: string[];
|
|
1307
|
+
name: string;
|
|
1308
|
+
operationName?: string;
|
|
1309
|
+
primaryTagName?: string;
|
|
1310
|
+
primaryTagValue?: string;
|
|
1311
|
+
resourceName?: string;
|
|
1312
|
+
service: string;
|
|
1313
|
+
stat: string;
|
|
1314
|
+
}
|
|
1263
1315
|
export interface DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQuery {
|
|
1264
1316
|
computes: outputs.DashboardWidgetGroupDefinitionWidgetGeomapDefinitionRequestQueryEventQueryCompute[];
|
|
1265
1317
|
dataSource: string;
|
|
@@ -1980,10 +2032,36 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequest
|
|
|
1980
2032
|
searchBy?: string;
|
|
1981
2033
|
}
|
|
1982
2034
|
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQuery {
|
|
2035
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery;
|
|
2036
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery;
|
|
1983
2037
|
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery;
|
|
1984
2038
|
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryMetricQuery;
|
|
1985
2039
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryProcessQuery;
|
|
1986
2040
|
}
|
|
2041
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery {
|
|
2042
|
+
dataSource: string;
|
|
2043
|
+
env: string;
|
|
2044
|
+
isUpstream?: boolean;
|
|
2045
|
+
name: string;
|
|
2046
|
+
operationName: string;
|
|
2047
|
+
primaryTagName?: string;
|
|
2048
|
+
primaryTagValue?: string;
|
|
2049
|
+
resourceName: string;
|
|
2050
|
+
service: string;
|
|
2051
|
+
stat: string;
|
|
2052
|
+
}
|
|
2053
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery {
|
|
2054
|
+
dataSource: string;
|
|
2055
|
+
env: string;
|
|
2056
|
+
groupBies?: string[];
|
|
2057
|
+
name: string;
|
|
2058
|
+
operationName?: string;
|
|
2059
|
+
primaryTagName?: string;
|
|
2060
|
+
primaryTagValue?: string;
|
|
2061
|
+
resourceName?: string;
|
|
2062
|
+
service: string;
|
|
2063
|
+
stat: string;
|
|
2064
|
+
}
|
|
1987
2065
|
export interface DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQuery {
|
|
1988
2066
|
computes: outputs.DashboardWidgetGroupDefinitionWidgetQueryTableDefinitionRequestQueryEventQueryCompute[];
|
|
1989
2067
|
dataSource: string;
|
|
@@ -2236,10 +2314,36 @@ export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequest
|
|
|
2236
2314
|
searchBy?: string;
|
|
2237
2315
|
}
|
|
2238
2316
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQuery {
|
|
2317
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery;
|
|
2318
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery;
|
|
2239
2319
|
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery;
|
|
2240
2320
|
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryMetricQuery;
|
|
2241
2321
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryProcessQuery;
|
|
2242
2322
|
}
|
|
2323
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery {
|
|
2324
|
+
dataSource: string;
|
|
2325
|
+
env: string;
|
|
2326
|
+
isUpstream?: boolean;
|
|
2327
|
+
name: string;
|
|
2328
|
+
operationName: string;
|
|
2329
|
+
primaryTagName?: string;
|
|
2330
|
+
primaryTagValue?: string;
|
|
2331
|
+
resourceName: string;
|
|
2332
|
+
service: string;
|
|
2333
|
+
stat: string;
|
|
2334
|
+
}
|
|
2335
|
+
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery {
|
|
2336
|
+
dataSource: string;
|
|
2337
|
+
env: string;
|
|
2338
|
+
groupBies?: string[];
|
|
2339
|
+
name: string;
|
|
2340
|
+
operationName?: string;
|
|
2341
|
+
primaryTagName?: string;
|
|
2342
|
+
primaryTagValue?: string;
|
|
2343
|
+
resourceName?: string;
|
|
2344
|
+
service: string;
|
|
2345
|
+
stat: string;
|
|
2346
|
+
}
|
|
2243
2347
|
export interface DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQuery {
|
|
2244
2348
|
computes: outputs.DashboardWidgetGroupDefinitionWidgetQueryValueDefinitionRequestQueryEventQueryCompute[];
|
|
2245
2349
|
dataSource: string;
|
|
@@ -2843,10 +2947,36 @@ export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequest
|
|
|
2843
2947
|
searchBy?: string;
|
|
2844
2948
|
}
|
|
2845
2949
|
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQuery {
|
|
2950
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryApmDependencyStatsQuery;
|
|
2951
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryApmResourceStatsQuery;
|
|
2846
2952
|
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryEventQuery;
|
|
2847
2953
|
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryMetricQuery;
|
|
2848
2954
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryProcessQuery;
|
|
2849
2955
|
}
|
|
2956
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryApmDependencyStatsQuery {
|
|
2957
|
+
dataSource: string;
|
|
2958
|
+
env: string;
|
|
2959
|
+
isUpstream?: boolean;
|
|
2960
|
+
name: string;
|
|
2961
|
+
operationName: string;
|
|
2962
|
+
primaryTagName?: string;
|
|
2963
|
+
primaryTagValue?: string;
|
|
2964
|
+
resourceName: string;
|
|
2965
|
+
service: string;
|
|
2966
|
+
stat: string;
|
|
2967
|
+
}
|
|
2968
|
+
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryApmResourceStatsQuery {
|
|
2969
|
+
dataSource: string;
|
|
2970
|
+
env: string;
|
|
2971
|
+
groupBies?: string[];
|
|
2972
|
+
name: string;
|
|
2973
|
+
operationName?: string;
|
|
2974
|
+
primaryTagName?: string;
|
|
2975
|
+
primaryTagValue?: string;
|
|
2976
|
+
resourceName?: string;
|
|
2977
|
+
service: string;
|
|
2978
|
+
stat: string;
|
|
2979
|
+
}
|
|
2850
2980
|
export interface DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryEventQuery {
|
|
2851
2981
|
computes: outputs.DashboardWidgetGroupDefinitionWidgetTimeseriesDefinitionRequestQueryEventQueryCompute[];
|
|
2852
2982
|
dataSource: string;
|
|
@@ -3114,10 +3244,36 @@ export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestPro
|
|
|
3114
3244
|
searchBy?: string;
|
|
3115
3245
|
}
|
|
3116
3246
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQuery {
|
|
3247
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryApmDependencyStatsQuery;
|
|
3248
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryApmResourceStatsQuery;
|
|
3117
3249
|
eventQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryEventQuery;
|
|
3118
3250
|
metricQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryMetricQuery;
|
|
3119
3251
|
processQuery?: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryProcessQuery;
|
|
3120
3252
|
}
|
|
3253
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryApmDependencyStatsQuery {
|
|
3254
|
+
dataSource: string;
|
|
3255
|
+
env: string;
|
|
3256
|
+
isUpstream?: boolean;
|
|
3257
|
+
name: string;
|
|
3258
|
+
operationName: string;
|
|
3259
|
+
primaryTagName?: string;
|
|
3260
|
+
primaryTagValue?: string;
|
|
3261
|
+
resourceName: string;
|
|
3262
|
+
service: string;
|
|
3263
|
+
stat: string;
|
|
3264
|
+
}
|
|
3265
|
+
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryApmResourceStatsQuery {
|
|
3266
|
+
dataSource: string;
|
|
3267
|
+
env: string;
|
|
3268
|
+
groupBies?: string[];
|
|
3269
|
+
name: string;
|
|
3270
|
+
operationName?: string;
|
|
3271
|
+
primaryTagName?: string;
|
|
3272
|
+
primaryTagValue?: string;
|
|
3273
|
+
resourceName?: string;
|
|
3274
|
+
service: string;
|
|
3275
|
+
stat: string;
|
|
3276
|
+
}
|
|
3121
3277
|
export interface DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryEventQuery {
|
|
3122
3278
|
computes: outputs.DashboardWidgetGroupDefinitionWidgetToplistDefinitionRequestQueryEventQueryCompute[];
|
|
3123
3279
|
dataSource: string;
|
|
@@ -3888,10 +4044,36 @@ export interface DashboardWidgetQueryTableDefinitionRequestProcessQuery {
|
|
|
3888
4044
|
searchBy?: string;
|
|
3889
4045
|
}
|
|
3890
4046
|
export interface DashboardWidgetQueryTableDefinitionRequestQuery {
|
|
4047
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery;
|
|
4048
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery;
|
|
3891
4049
|
eventQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQuery;
|
|
3892
4050
|
metricQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryMetricQuery;
|
|
3893
4051
|
processQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestQueryProcessQuery;
|
|
3894
4052
|
}
|
|
4053
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryApmDependencyStatsQuery {
|
|
4054
|
+
dataSource: string;
|
|
4055
|
+
env: string;
|
|
4056
|
+
isUpstream?: boolean;
|
|
4057
|
+
name: string;
|
|
4058
|
+
operationName: string;
|
|
4059
|
+
primaryTagName?: string;
|
|
4060
|
+
primaryTagValue?: string;
|
|
4061
|
+
resourceName: string;
|
|
4062
|
+
service: string;
|
|
4063
|
+
stat: string;
|
|
4064
|
+
}
|
|
4065
|
+
export interface DashboardWidgetQueryTableDefinitionRequestQueryApmResourceStatsQuery {
|
|
4066
|
+
dataSource: string;
|
|
4067
|
+
env: string;
|
|
4068
|
+
groupBies?: string[];
|
|
4069
|
+
name: string;
|
|
4070
|
+
operationName?: string;
|
|
4071
|
+
primaryTagName?: string;
|
|
4072
|
+
primaryTagValue?: string;
|
|
4073
|
+
resourceName?: string;
|
|
4074
|
+
service: string;
|
|
4075
|
+
stat: string;
|
|
4076
|
+
}
|
|
3895
4077
|
export interface DashboardWidgetQueryTableDefinitionRequestQueryEventQuery {
|
|
3896
4078
|
computes: outputs.DashboardWidgetQueryTableDefinitionRequestQueryEventQueryCompute[];
|
|
3897
4079
|
dataSource: string;
|
|
@@ -4144,10 +4326,36 @@ export interface DashboardWidgetQueryValueDefinitionRequestProcessQuery {
|
|
|
4144
4326
|
searchBy?: string;
|
|
4145
4327
|
}
|
|
4146
4328
|
export interface DashboardWidgetQueryValueDefinitionRequestQuery {
|
|
4329
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery;
|
|
4330
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery;
|
|
4147
4331
|
eventQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestQueryEventQuery;
|
|
4148
4332
|
metricQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestQueryMetricQuery;
|
|
4149
4333
|
processQuery?: outputs.DashboardWidgetQueryValueDefinitionRequestQueryProcessQuery;
|
|
4150
4334
|
}
|
|
4335
|
+
export interface DashboardWidgetQueryValueDefinitionRequestQueryApmDependencyStatsQuery {
|
|
4336
|
+
dataSource: string;
|
|
4337
|
+
env: string;
|
|
4338
|
+
isUpstream?: boolean;
|
|
4339
|
+
name: string;
|
|
4340
|
+
operationName: string;
|
|
4341
|
+
primaryTagName?: string;
|
|
4342
|
+
primaryTagValue?: string;
|
|
4343
|
+
resourceName: string;
|
|
4344
|
+
service: string;
|
|
4345
|
+
stat: string;
|
|
4346
|
+
}
|
|
4347
|
+
export interface DashboardWidgetQueryValueDefinitionRequestQueryApmResourceStatsQuery {
|
|
4348
|
+
dataSource: string;
|
|
4349
|
+
env: string;
|
|
4350
|
+
groupBies?: string[];
|
|
4351
|
+
name: string;
|
|
4352
|
+
operationName?: string;
|
|
4353
|
+
primaryTagName?: string;
|
|
4354
|
+
primaryTagValue?: string;
|
|
4355
|
+
resourceName?: string;
|
|
4356
|
+
service: string;
|
|
4357
|
+
stat: string;
|
|
4358
|
+
}
|
|
4151
4359
|
export interface DashboardWidgetQueryValueDefinitionRequestQueryEventQuery {
|
|
4152
4360
|
computes: outputs.DashboardWidgetQueryValueDefinitionRequestQueryEventQueryCompute[];
|
|
4153
4361
|
dataSource: string;
|
|
@@ -4751,10 +4959,36 @@ export interface DashboardWidgetTimeseriesDefinitionRequestProcessQuery {
|
|
|
4751
4959
|
searchBy?: string;
|
|
4752
4960
|
}
|
|
4753
4961
|
export interface DashboardWidgetTimeseriesDefinitionRequestQuery {
|
|
4962
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryApmDependencyStatsQuery;
|
|
4963
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryApmResourceStatsQuery;
|
|
4754
4964
|
eventQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryEventQuery;
|
|
4755
4965
|
metricQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryMetricQuery;
|
|
4756
4966
|
processQuery?: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryProcessQuery;
|
|
4757
4967
|
}
|
|
4968
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestQueryApmDependencyStatsQuery {
|
|
4969
|
+
dataSource: string;
|
|
4970
|
+
env: string;
|
|
4971
|
+
isUpstream?: boolean;
|
|
4972
|
+
name: string;
|
|
4973
|
+
operationName: string;
|
|
4974
|
+
primaryTagName?: string;
|
|
4975
|
+
primaryTagValue?: string;
|
|
4976
|
+
resourceName: string;
|
|
4977
|
+
service: string;
|
|
4978
|
+
stat: string;
|
|
4979
|
+
}
|
|
4980
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestQueryApmResourceStatsQuery {
|
|
4981
|
+
dataSource: string;
|
|
4982
|
+
env: string;
|
|
4983
|
+
groupBies?: string[];
|
|
4984
|
+
name: string;
|
|
4985
|
+
operationName?: string;
|
|
4986
|
+
primaryTagName?: string;
|
|
4987
|
+
primaryTagValue?: string;
|
|
4988
|
+
resourceName?: string;
|
|
4989
|
+
service: string;
|
|
4990
|
+
stat: string;
|
|
4991
|
+
}
|
|
4758
4992
|
export interface DashboardWidgetTimeseriesDefinitionRequestQueryEventQuery {
|
|
4759
4993
|
computes: outputs.DashboardWidgetTimeseriesDefinitionRequestQueryEventQueryCompute[];
|
|
4760
4994
|
dataSource: string;
|
|
@@ -5022,10 +5256,36 @@ export interface DashboardWidgetToplistDefinitionRequestProcessQuery {
|
|
|
5022
5256
|
searchBy?: string;
|
|
5023
5257
|
}
|
|
5024
5258
|
export interface DashboardWidgetToplistDefinitionRequestQuery {
|
|
5259
|
+
apmDependencyStatsQuery?: outputs.DashboardWidgetToplistDefinitionRequestQueryApmDependencyStatsQuery;
|
|
5260
|
+
apmResourceStatsQuery?: outputs.DashboardWidgetToplistDefinitionRequestQueryApmResourceStatsQuery;
|
|
5025
5261
|
eventQuery?: outputs.DashboardWidgetToplistDefinitionRequestQueryEventQuery;
|
|
5026
5262
|
metricQuery?: outputs.DashboardWidgetToplistDefinitionRequestQueryMetricQuery;
|
|
5027
5263
|
processQuery?: outputs.DashboardWidgetToplistDefinitionRequestQueryProcessQuery;
|
|
5028
5264
|
}
|
|
5265
|
+
export interface DashboardWidgetToplistDefinitionRequestQueryApmDependencyStatsQuery {
|
|
5266
|
+
dataSource: string;
|
|
5267
|
+
env: string;
|
|
5268
|
+
isUpstream?: boolean;
|
|
5269
|
+
name: string;
|
|
5270
|
+
operationName: string;
|
|
5271
|
+
primaryTagName?: string;
|
|
5272
|
+
primaryTagValue?: string;
|
|
5273
|
+
resourceName: string;
|
|
5274
|
+
service: string;
|
|
5275
|
+
stat: string;
|
|
5276
|
+
}
|
|
5277
|
+
export interface DashboardWidgetToplistDefinitionRequestQueryApmResourceStatsQuery {
|
|
5278
|
+
dataSource: string;
|
|
5279
|
+
env: string;
|
|
5280
|
+
groupBies?: string[];
|
|
5281
|
+
name: string;
|
|
5282
|
+
operationName?: string;
|
|
5283
|
+
primaryTagName?: string;
|
|
5284
|
+
primaryTagValue?: string;
|
|
5285
|
+
resourceName?: string;
|
|
5286
|
+
service: string;
|
|
5287
|
+
stat: string;
|
|
5288
|
+
}
|
|
5029
5289
|
export interface DashboardWidgetToplistDefinitionRequestQueryEventQuery {
|
|
5030
5290
|
computes: outputs.DashboardWidgetToplistDefinitionRequestQueryEventQueryCompute[];
|
|
5031
5291
|
dataSource: string;
|
|
@@ -5199,6 +5459,14 @@ export interface GetMonitorsMonitor {
|
|
|
5199
5459
|
name: string;
|
|
5200
5460
|
type: string;
|
|
5201
5461
|
}
|
|
5462
|
+
export interface GetRolesRole {
|
|
5463
|
+
/**
|
|
5464
|
+
* The ID of this resource.
|
|
5465
|
+
*/
|
|
5466
|
+
id: string;
|
|
5467
|
+
name: string;
|
|
5468
|
+
userCount: number;
|
|
5469
|
+
}
|
|
5202
5470
|
export interface GetSecurityMonitoringFiltersFilter {
|
|
5203
5471
|
exclusionFilters?: outputs.GetSecurityMonitoringFiltersFilterExclusionFilter[];
|
|
5204
5472
|
filteredDataType?: string;
|
|
@@ -5212,36 +5480,16 @@ export interface GetSecurityMonitoringFiltersFilterExclusionFilter {
|
|
|
5212
5480
|
query: string;
|
|
5213
5481
|
}
|
|
5214
5482
|
export interface GetSecurityMonitoringRulesRule {
|
|
5215
|
-
/**
|
|
5216
|
-
* Cases for generating signals.
|
|
5217
|
-
*/
|
|
5218
5483
|
cases: outputs.GetSecurityMonitoringRulesRuleCase[];
|
|
5219
|
-
/**
|
|
5220
|
-
* Whether the rule is enabled.
|
|
5221
|
-
*/
|
|
5222
5484
|
enabled?: boolean;
|
|
5223
5485
|
filters?: outputs.GetSecurityMonitoringRulesRuleFilter[];
|
|
5224
5486
|
hasExtendedTitle?: boolean;
|
|
5225
|
-
/**
|
|
5226
|
-
* Message for generated signals.
|
|
5227
|
-
*/
|
|
5228
5487
|
message: string;
|
|
5229
|
-
/**
|
|
5230
|
-
* The name of the rule.
|
|
5231
|
-
*/
|
|
5232
5488
|
name: string;
|
|
5233
|
-
/**
|
|
5234
|
-
* Options on rules.
|
|
5235
|
-
*/
|
|
5236
5489
|
options?: outputs.GetSecurityMonitoringRulesRuleOptions;
|
|
5237
|
-
/**
|
|
5238
|
-
* Queries for selecting logs which are part of the rule.
|
|
5239
|
-
*/
|
|
5240
5490
|
queries: outputs.GetSecurityMonitoringRulesRuleQuery[];
|
|
5241
|
-
/**
|
|
5242
|
-
* Tags for generated signals.
|
|
5243
|
-
*/
|
|
5244
5491
|
tags?: string[];
|
|
5492
|
+
type?: string;
|
|
5245
5493
|
}
|
|
5246
5494
|
export interface GetSecurityMonitoringRulesRuleCase {
|
|
5247
5495
|
condition?: string;
|
|
@@ -5265,6 +5513,7 @@ export interface GetSecurityMonitoringRulesRuleOptionsNewValueOptions {
|
|
|
5265
5513
|
learningDuration: number;
|
|
5266
5514
|
}
|
|
5267
5515
|
export interface GetSecurityMonitoringRulesRuleQuery {
|
|
5516
|
+
agentRules?: outputs.GetSecurityMonitoringRulesRuleQueryAgentRule[];
|
|
5268
5517
|
aggregation?: string;
|
|
5269
5518
|
distinctFields?: string[];
|
|
5270
5519
|
groupByFields?: string[];
|
|
@@ -5272,6 +5521,10 @@ export interface GetSecurityMonitoringRulesRuleQuery {
|
|
|
5272
5521
|
name?: string;
|
|
5273
5522
|
query: string;
|
|
5274
5523
|
}
|
|
5524
|
+
export interface GetSecurityMonitoringRulesRuleQueryAgentRule {
|
|
5525
|
+
agentRuleId: string;
|
|
5526
|
+
expression: string;
|
|
5527
|
+
}
|
|
5275
5528
|
export interface GetServiceLevelObjectivesSlo {
|
|
5276
5529
|
/**
|
|
5277
5530
|
* The ID of this resource.
|
|
@@ -5838,13 +6091,7 @@ export interface RolePermission {
|
|
|
5838
6091
|
name: string;
|
|
5839
6092
|
}
|
|
5840
6093
|
export interface SecurityMonitoringDefaultRuleCase {
|
|
5841
|
-
/**
|
|
5842
|
-
* Notification targets for each rule case.
|
|
5843
|
-
*/
|
|
5844
6094
|
notifications: string[];
|
|
5845
|
-
/**
|
|
5846
|
-
* Status of the rule case to match.
|
|
5847
|
-
*/
|
|
5848
6095
|
status: string;
|
|
5849
6096
|
}
|
|
5850
6097
|
export interface SecurityMonitoringDefaultRuleFilter {
|
|
@@ -5862,91 +6109,51 @@ export interface SecurityMonitoringFilterExclusionFilter {
|
|
|
5862
6109
|
query: string;
|
|
5863
6110
|
}
|
|
5864
6111
|
export interface SecurityMonitoringRuleCase {
|
|
5865
|
-
/**
|
|
5866
|
-
* A rule case contains logical operations (`>`,`>=`, `&&`, `||`) to determine if a signal should be generated based on the event counts in the previously defined queries.
|
|
5867
|
-
*/
|
|
5868
6112
|
condition?: string;
|
|
5869
6113
|
/**
|
|
5870
|
-
*
|
|
6114
|
+
* The name of the rule.
|
|
5871
6115
|
*/
|
|
5872
6116
|
name?: string;
|
|
5873
|
-
/**
|
|
5874
|
-
* Notification targets for each rule case.
|
|
5875
|
-
*/
|
|
5876
6117
|
notifications?: string[];
|
|
5877
|
-
/**
|
|
5878
|
-
* Severity of the Security Signal.
|
|
5879
|
-
*/
|
|
5880
6118
|
status: string;
|
|
5881
6119
|
}
|
|
5882
6120
|
export interface SecurityMonitoringRuleFilter {
|
|
5883
|
-
/**
|
|
5884
|
-
* The type of filtering action (require or suppress).
|
|
5885
|
-
*/
|
|
5886
6121
|
action: string;
|
|
5887
6122
|
/**
|
|
5888
|
-
*
|
|
6123
|
+
* Queries for selecting logs which are part of the rule.
|
|
5889
6124
|
*/
|
|
5890
6125
|
query: string;
|
|
5891
6126
|
}
|
|
5892
6127
|
export interface SecurityMonitoringRuleOptions {
|
|
5893
|
-
/**
|
|
5894
|
-
* The detection method. Default to `threshold`.
|
|
5895
|
-
*/
|
|
5896
6128
|
detectionMethod?: string;
|
|
5897
|
-
/**
|
|
5898
|
-
* A time window is specified to match when at least one of the cases matches true. This is a sliding window and evaluates in real time.
|
|
5899
|
-
*/
|
|
5900
6129
|
evaluationWindow: number;
|
|
5901
|
-
/**
|
|
5902
|
-
* Once a signal is generated, the signal will remain “open” if a case is matched at least once within this keep alive window.
|
|
5903
|
-
*/
|
|
5904
6130
|
keepAlive: number;
|
|
5905
|
-
/**
|
|
5906
|
-
* A signal will “close” regardless of the query being matched once the time exceeds the maximum duration. This time is calculated from the first seen timestamp.
|
|
5907
|
-
*/
|
|
5908
6131
|
maxSignalDuration: number;
|
|
5909
|
-
/**
|
|
5910
|
-
* Specific options for `newValue` detection method.
|
|
5911
|
-
*/
|
|
5912
6132
|
newValueOptions?: outputs.SecurityMonitoringRuleOptionsNewValueOptions;
|
|
5913
6133
|
}
|
|
5914
6134
|
export interface SecurityMonitoringRuleOptionsNewValueOptions {
|
|
5915
|
-
/**
|
|
5916
|
-
* The duration in days after which a learned value is forgotten.
|
|
5917
|
-
*/
|
|
5918
6135
|
forgetAfter: number;
|
|
5919
|
-
/**
|
|
5920
|
-
* The duration in days during which values are learned, and after which signals will be generated for values that weren't learned. If set to 0, a signal will be generated for all new values after the first value is learned.
|
|
5921
|
-
*/
|
|
5922
6136
|
learningDuration: number;
|
|
5923
6137
|
}
|
|
5924
6138
|
export interface SecurityMonitoringRuleQuery {
|
|
5925
|
-
|
|
5926
|
-
* The aggregation type.
|
|
5927
|
-
*/
|
|
6139
|
+
agentRules?: outputs.SecurityMonitoringRuleQueryAgentRule[];
|
|
5928
6140
|
aggregation?: string;
|
|
5929
|
-
/**
|
|
5930
|
-
* Field for which the cardinality is measured. Sent as an array.
|
|
5931
|
-
*/
|
|
5932
6141
|
distinctFields?: string[];
|
|
5933
|
-
/**
|
|
5934
|
-
* Fields to group by.
|
|
5935
|
-
*/
|
|
5936
6142
|
groupByFields?: string[];
|
|
5937
|
-
/**
|
|
5938
|
-
* The target field to aggregate over when using the sum or max aggregations.
|
|
5939
|
-
*/
|
|
5940
6143
|
metric?: string;
|
|
5941
6144
|
/**
|
|
5942
|
-
*
|
|
6145
|
+
* The name of the rule.
|
|
5943
6146
|
*/
|
|
5944
6147
|
name?: string;
|
|
5945
6148
|
/**
|
|
5946
|
-
*
|
|
6149
|
+
* Queries for selecting logs which are part of the rule.
|
|
5947
6150
|
*/
|
|
5948
6151
|
query: string;
|
|
5949
6152
|
}
|
|
6153
|
+
export interface SecurityMonitoringRuleQueryAgentRule {
|
|
6154
|
+
agentRuleId: string;
|
|
6155
|
+
expression: string;
|
|
6156
|
+
}
|
|
5950
6157
|
export interface ServiceLevelObjectiveQuery {
|
|
5951
6158
|
/**
|
|
5952
6159
|
* The sum of the `total` events.
|
|
@@ -6129,6 +6336,7 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
6129
6336
|
* DNS server port to use for DNS tests.
|
|
6130
6337
|
*/
|
|
6131
6338
|
dnsServerPort?: number;
|
|
6339
|
+
followRedirects?: boolean;
|
|
6132
6340
|
/**
|
|
6133
6341
|
* Host name to perform the test with.
|
|
6134
6342
|
*/
|
|
@@ -6149,6 +6357,10 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
6149
6357
|
* Port to use when performing the test.
|
|
6150
6358
|
*/
|
|
6151
6359
|
port?: number;
|
|
6360
|
+
/**
|
|
6361
|
+
* For SSL tests, it specifies on which server you want to initiate the TLS handshake, allowing the server to present one of multiple possible certificates on the same IP address and TCP port number.
|
|
6362
|
+
*/
|
|
6363
|
+
servername?: string;
|
|
6152
6364
|
/**
|
|
6153
6365
|
* This will turn on a traceroute probe to discover all gateways along the path to the host destination. For ICMP tests (`subtype = "icmp"`).
|
|
6154
6366
|
*/
|
|
@@ -6296,7 +6508,7 @@ export interface SyntheticsTestOptionsList {
|
|
|
6296
6508
|
*/
|
|
6297
6509
|
allowInsecure?: boolean;
|
|
6298
6510
|
/**
|
|
6299
|
-
*
|
|
6511
|
+
* Determines whether or not the API HTTP test should follow redirects.
|
|
6300
6512
|
*/
|
|
6301
6513
|
followRedirects?: boolean;
|
|
6302
6514
|
/**
|
|
@@ -6385,6 +6597,10 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
6385
6597
|
* Port to use when performing the test.
|
|
6386
6598
|
*/
|
|
6387
6599
|
port?: number;
|
|
6600
|
+
/**
|
|
6601
|
+
* For SSL tests, it specifies on which server you want to initiate the TLS handshake, allowing the server to present one of multiple possible certificates on the same IP address and TCP port number.
|
|
6602
|
+
*/
|
|
6603
|
+
servername?: string;
|
|
6388
6604
|
/**
|
|
6389
6605
|
* This will turn on a traceroute probe to discover all gateways along the path to the host destination. For ICMP tests (`subtype = "icmp"`).
|
|
6390
6606
|
*/
|