@pulumi/datadog 4.58.0-alpha.1760375617 → 4.58.0-alpha.1760585632
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/applicationKey.d.ts +13 -2
- package/applicationKey.js +13 -2
- package/applicationKey.js.map +1 -1
- package/aws/getIntegrationIamPermissionsStandard.d.ts +22 -0
- package/aws/getIntegrationIamPermissionsStandard.js +24 -0
- package/aws/getIntegrationIamPermissionsStandard.js.map +1 -0
- package/aws/index.d.ts +3 -0
- package/aws/index.js +4 -1
- package/aws/index.js.map +1 -1
- package/awsCurConfig.d.ts +40 -0
- package/awsCurConfig.js +10 -0
- package/awsCurConfig.js.map +1 -1
- package/azureUcConfig.d.ts +151 -0
- package/azureUcConfig.js +89 -0
- package/azureUcConfig.js.map +1 -0
- package/customAllocationRule.d.ts +141 -0
- package/customAllocationRule.js +91 -0
- package/customAllocationRule.js.map +1 -0
- package/customAllocationRules.d.ts +61 -0
- package/customAllocationRules.js +65 -0
- package/customAllocationRules.js.map +1 -0
- package/gcpUcConfig.d.ts +192 -0
- package/gcpUcConfig.js +116 -0
- package/gcpUcConfig.js.map +1 -0
- package/getAzureUcConfig.d.ts +98 -0
- package/getAzureUcConfig.js +32 -0
- package/getAzureUcConfig.js.map +1 -0
- package/getCustomAllocationRule.d.ts +88 -0
- package/getCustomAllocationRule.js +34 -0
- package/getCustomAllocationRule.js.map +1 -0
- package/getGcpUcConfig.d.ts +88 -0
- package/getGcpUcConfig.js +28 -0
- package/getGcpUcConfig.js.map +1 -0
- package/getPermissions.d.ts +26 -2
- package/getPermissions.js +26 -2
- package/getPermissions.js.map +1 -1
- package/getRole.d.ts +4 -4
- package/getRole.js +4 -4
- package/getRoleUsers.d.ts +32 -0
- package/getRoleUsers.js +32 -0
- package/getRoleUsers.js.map +1 -1
- package/getRoles.d.ts +4 -4
- package/getRoles.js +4 -4
- package/getTagPipelineRuleset.d.ts +66 -0
- package/getTagPipelineRuleset.js +30 -0
- package/getTagPipelineRuleset.js.map +1 -0
- package/index.d.ts +30 -0
- package/index.js +47 -5
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/role.d.ts +6 -6
- package/role.js +6 -6
- package/serviceAccountApplicationKey.d.ts +15 -3
- package/serviceAccountApplicationKey.js +15 -3
- package/serviceAccountApplicationKey.js.map +1 -1
- package/syntheticsPrivateLocation.d.ts +8 -0
- package/syntheticsPrivateLocation.js +2 -0
- package/syntheticsPrivateLocation.js.map +1 -1
- package/tagPipelineRuleset.d.ts +103 -0
- package/tagPipelineRuleset.js +73 -0
- package/tagPipelineRuleset.js.map +1 -0
- package/tagPipelineRulesets.d.ts +73 -0
- package/tagPipelineRulesets.js +77 -0
- package/tagPipelineRulesets.js.map +1 -0
- package/types/input.d.ts +798 -0
- package/types/output.d.ts +588 -0
- package/userRole.d.ts +16 -8
- package/userRole.js +16 -8
- package/userRole.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -216,6 +216,42 @@ export interface AwsCurConfigAccountFilters {
|
|
|
216
216
|
*/
|
|
217
217
|
includedAccounts?: string[];
|
|
218
218
|
}
|
|
219
|
+
export interface AzureUcConfigActualBillConfig {
|
|
220
|
+
/**
|
|
221
|
+
* The name of the configured Azure Export.
|
|
222
|
+
*/
|
|
223
|
+
exportName: string;
|
|
224
|
+
/**
|
|
225
|
+
* The path where the Azure Export is saved.
|
|
226
|
+
*/
|
|
227
|
+
exportPath: string;
|
|
228
|
+
/**
|
|
229
|
+
* The name of the storage account where the Azure Export is saved.
|
|
230
|
+
*/
|
|
231
|
+
storageAccount: string;
|
|
232
|
+
/**
|
|
233
|
+
* The name of the storage container where the Azure Export is saved.
|
|
234
|
+
*/
|
|
235
|
+
storageContainer: string;
|
|
236
|
+
}
|
|
237
|
+
export interface AzureUcConfigAmortizedBillConfig {
|
|
238
|
+
/**
|
|
239
|
+
* The name of the configured Azure Export.
|
|
240
|
+
*/
|
|
241
|
+
exportName: string;
|
|
242
|
+
/**
|
|
243
|
+
* The path where the Azure Export is saved.
|
|
244
|
+
*/
|
|
245
|
+
exportPath: string;
|
|
246
|
+
/**
|
|
247
|
+
* The name of the storage account where the Azure Export is saved.
|
|
248
|
+
*/
|
|
249
|
+
storageAccount: string;
|
|
250
|
+
/**
|
|
251
|
+
* The name of the storage container where the Azure Export is saved.
|
|
252
|
+
*/
|
|
253
|
+
storageContainer: string;
|
|
254
|
+
}
|
|
219
255
|
export interface ChildOrganizationApiKey {
|
|
220
256
|
/**
|
|
221
257
|
* API key.
|
|
@@ -405,6 +441,120 @@ export interface CsmThreatsAgentRuleActionSet {
|
|
|
405
441
|
*/
|
|
406
442
|
value: string;
|
|
407
443
|
}
|
|
444
|
+
export interface CustomAllocationRuleCostsToAllocate {
|
|
445
|
+
/**
|
|
446
|
+
* The condition to match. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
447
|
+
*/
|
|
448
|
+
condition?: string;
|
|
449
|
+
/**
|
|
450
|
+
* The tag key to filter on (e.g., `awsProduct`, `team`, `environment`).
|
|
451
|
+
*/
|
|
452
|
+
tag?: string;
|
|
453
|
+
/**
|
|
454
|
+
* The single tag value to match. Use this field for conditions like `=`, `!=`, `is`, `is not`, `like`. Do not use with `in` or `not in` conditions.
|
|
455
|
+
*/
|
|
456
|
+
value?: string;
|
|
457
|
+
/**
|
|
458
|
+
* A list of tag values to match. Use this field for `in` or `not in` conditions only. Do not use with single-value conditions.
|
|
459
|
+
*/
|
|
460
|
+
values?: string[];
|
|
461
|
+
}
|
|
462
|
+
export interface CustomAllocationRuleStrategy {
|
|
463
|
+
allocatedBies?: outputs.CustomAllocationRuleStrategyAllocatedBy[];
|
|
464
|
+
allocatedByFilters?: outputs.CustomAllocationRuleStrategyAllocatedByFilter[];
|
|
465
|
+
/**
|
|
466
|
+
* List of tag keys used to allocate costs (e.g., `["team", "project"]`). Costs will be distributed across unique values of these tags.
|
|
467
|
+
*/
|
|
468
|
+
allocatedByTagKeys?: string[];
|
|
469
|
+
basedOnCosts?: outputs.CustomAllocationRuleStrategyBasedOnCost[];
|
|
470
|
+
basedOnTimeseries?: outputs.CustomAllocationRuleStrategyBasedOnTimeseries;
|
|
471
|
+
evaluateGroupedByFilters?: outputs.CustomAllocationRuleStrategyEvaluateGroupedByFilter[];
|
|
472
|
+
/**
|
|
473
|
+
* List of tag keys used to group costs before allocation. Costs are grouped by these tag values before applying the allocation strategy.
|
|
474
|
+
*/
|
|
475
|
+
evaluateGroupedByTagKeys?: string[];
|
|
476
|
+
/**
|
|
477
|
+
* The granularity level for cost allocation. Valid values are `daily` or `monthly`.
|
|
478
|
+
*/
|
|
479
|
+
granularity?: string;
|
|
480
|
+
/**
|
|
481
|
+
* The allocation method. Valid values are `even`, `proportional`, `proportionalTimeseries`, or `percent`.
|
|
482
|
+
*/
|
|
483
|
+
method?: string;
|
|
484
|
+
}
|
|
485
|
+
export interface CustomAllocationRuleStrategyAllocatedBy {
|
|
486
|
+
allocatedTags?: outputs.CustomAllocationRuleStrategyAllocatedByAllocatedTag[];
|
|
487
|
+
/**
|
|
488
|
+
* The percentage of costs to allocate to this target as a decimal (e.g., 0.33 for 33%). Used when `method` is `percent`.
|
|
489
|
+
*/
|
|
490
|
+
percentage?: number;
|
|
491
|
+
}
|
|
492
|
+
export interface CustomAllocationRuleStrategyAllocatedByAllocatedTag {
|
|
493
|
+
/**
|
|
494
|
+
* The tag key to allocate costs to (e.g., `team`, `environment`).
|
|
495
|
+
*/
|
|
496
|
+
key?: string;
|
|
497
|
+
/**
|
|
498
|
+
* The tag value to allocate costs to (e.g., `backend`, `production`).
|
|
499
|
+
*/
|
|
500
|
+
value?: string;
|
|
501
|
+
}
|
|
502
|
+
export interface CustomAllocationRuleStrategyAllocatedByFilter {
|
|
503
|
+
/**
|
|
504
|
+
* The condition to match. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
505
|
+
*/
|
|
506
|
+
condition?: string;
|
|
507
|
+
/**
|
|
508
|
+
* The tag key to filter on for allocation targets.
|
|
509
|
+
*/
|
|
510
|
+
tag?: string;
|
|
511
|
+
/**
|
|
512
|
+
* The single tag value to match for allocation. Use with conditions like `=`, `!=`, `is`, `is not`, `like`.
|
|
513
|
+
*/
|
|
514
|
+
value?: string;
|
|
515
|
+
/**
|
|
516
|
+
* A list of tag values to match for allocation. Use with `in` or `not in` conditions.
|
|
517
|
+
*/
|
|
518
|
+
values?: string[];
|
|
519
|
+
}
|
|
520
|
+
export interface CustomAllocationRuleStrategyBasedOnCost {
|
|
521
|
+
/**
|
|
522
|
+
* The condition to match. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
523
|
+
*/
|
|
524
|
+
condition?: string;
|
|
525
|
+
/**
|
|
526
|
+
* The tag key to use as the basis for cost allocation calculations.
|
|
527
|
+
*/
|
|
528
|
+
tag?: string;
|
|
529
|
+
/**
|
|
530
|
+
* The single tag value to use for cost calculations. Use with conditions like `=`, `!=`, `is`, `is not`, `like`.
|
|
531
|
+
*/
|
|
532
|
+
value?: string;
|
|
533
|
+
/**
|
|
534
|
+
* A list of tag values to use for cost calculations. Use with `in` or `not in` conditions.
|
|
535
|
+
*/
|
|
536
|
+
values?: string[];
|
|
537
|
+
}
|
|
538
|
+
export interface CustomAllocationRuleStrategyBasedOnTimeseries {
|
|
539
|
+
}
|
|
540
|
+
export interface CustomAllocationRuleStrategyEvaluateGroupedByFilter {
|
|
541
|
+
/**
|
|
542
|
+
* The condition to match. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
543
|
+
*/
|
|
544
|
+
condition?: string;
|
|
545
|
+
/**
|
|
546
|
+
* The tag key to filter on when grouping costs for evaluation.
|
|
547
|
+
*/
|
|
548
|
+
tag?: string;
|
|
549
|
+
/**
|
|
550
|
+
* The single tag value to match when grouping. Use with conditions like `=`, `!=`, `is`, `is not`, `like`.
|
|
551
|
+
*/
|
|
552
|
+
value?: string;
|
|
553
|
+
/**
|
|
554
|
+
* A list of tag values to match when grouping. Use with `in` or `not in` conditions.
|
|
555
|
+
*/
|
|
556
|
+
values?: string[];
|
|
557
|
+
}
|
|
408
558
|
export interface DashboardListDashItem {
|
|
409
559
|
/**
|
|
410
560
|
* The ID of the dashboard to add
|
|
@@ -9065,6 +9215,42 @@ export interface GetAwsCurConfigAccountFilters {
|
|
|
9065
9215
|
*/
|
|
9066
9216
|
includedAccounts: string[];
|
|
9067
9217
|
}
|
|
9218
|
+
export interface GetAzureUcConfigActualBillConfig {
|
|
9219
|
+
/**
|
|
9220
|
+
* The name of the configured Azure Export.
|
|
9221
|
+
*/
|
|
9222
|
+
exportName: string;
|
|
9223
|
+
/**
|
|
9224
|
+
* The path where the Azure Export is saved.
|
|
9225
|
+
*/
|
|
9226
|
+
exportPath: string;
|
|
9227
|
+
/**
|
|
9228
|
+
* The name of the storage account where the Azure Export is saved.
|
|
9229
|
+
*/
|
|
9230
|
+
storageAccount: string;
|
|
9231
|
+
/**
|
|
9232
|
+
* The name of the storage container where the Azure Export is saved.
|
|
9233
|
+
*/
|
|
9234
|
+
storageContainer: string;
|
|
9235
|
+
}
|
|
9236
|
+
export interface GetAzureUcConfigAmortizedBillConfig {
|
|
9237
|
+
/**
|
|
9238
|
+
* The name of the configured Azure Export.
|
|
9239
|
+
*/
|
|
9240
|
+
exportName: string;
|
|
9241
|
+
/**
|
|
9242
|
+
* The path where the Azure Export is saved.
|
|
9243
|
+
*/
|
|
9244
|
+
exportPath: string;
|
|
9245
|
+
/**
|
|
9246
|
+
* The name of the storage account where the Azure Export is saved.
|
|
9247
|
+
*/
|
|
9248
|
+
storageAccount: string;
|
|
9249
|
+
/**
|
|
9250
|
+
* The name of the storage container where the Azure Export is saved.
|
|
9251
|
+
*/
|
|
9252
|
+
storageContainer: string;
|
|
9253
|
+
}
|
|
9068
9254
|
export interface GetCloudWorkloadSecurityAgentRulesAgentRule {
|
|
9069
9255
|
/**
|
|
9070
9256
|
* The description of the Agent rule.
|
|
@@ -9128,6 +9314,120 @@ export interface GetCsmThreatsPoliciesPolicy {
|
|
|
9128
9314
|
name: string;
|
|
9129
9315
|
tags: string[];
|
|
9130
9316
|
}
|
|
9317
|
+
export interface GetCustomAllocationRuleCostsToAllocate {
|
|
9318
|
+
/**
|
|
9319
|
+
* The condition used to match tags. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
9320
|
+
*/
|
|
9321
|
+
condition: string;
|
|
9322
|
+
/**
|
|
9323
|
+
* The tag key used in the filter.
|
|
9324
|
+
*/
|
|
9325
|
+
tag: string;
|
|
9326
|
+
/**
|
|
9327
|
+
* The tag value used in the filter (for single-value conditions).
|
|
9328
|
+
*/
|
|
9329
|
+
value: string;
|
|
9330
|
+
/**
|
|
9331
|
+
* The list of tag values used in the filter (for multi-value conditions like `in` or `notIn`).
|
|
9332
|
+
*/
|
|
9333
|
+
values: string[];
|
|
9334
|
+
}
|
|
9335
|
+
export interface GetCustomAllocationRuleStrategy {
|
|
9336
|
+
allocatedBies?: outputs.GetCustomAllocationRuleStrategyAllocatedBy[];
|
|
9337
|
+
allocatedByFilters?: outputs.GetCustomAllocationRuleStrategyAllocatedByFilter[];
|
|
9338
|
+
/**
|
|
9339
|
+
* List of tag keys used to allocate costs.
|
|
9340
|
+
*/
|
|
9341
|
+
allocatedByTagKeys: string[];
|
|
9342
|
+
basedOnCosts?: outputs.GetCustomAllocationRuleStrategyBasedOnCost[];
|
|
9343
|
+
basedOnTimeseries?: outputs.GetCustomAllocationRuleStrategyBasedOnTimeseries;
|
|
9344
|
+
evaluateGroupedByFilters?: outputs.GetCustomAllocationRuleStrategyEvaluateGroupedByFilter[];
|
|
9345
|
+
/**
|
|
9346
|
+
* List of tag keys used to group costs before allocation.
|
|
9347
|
+
*/
|
|
9348
|
+
evaluateGroupedByTagKeys: string[];
|
|
9349
|
+
/**
|
|
9350
|
+
* The granularity level for cost allocation (`daily` or `monthly`).
|
|
9351
|
+
*/
|
|
9352
|
+
granularity: string;
|
|
9353
|
+
/**
|
|
9354
|
+
* The allocation method. Valid values are `even`, `proportional`, `proportionalTimeseries`, or `percent`.
|
|
9355
|
+
*/
|
|
9356
|
+
method: string;
|
|
9357
|
+
}
|
|
9358
|
+
export interface GetCustomAllocationRuleStrategyAllocatedBy {
|
|
9359
|
+
allocatedTags?: outputs.GetCustomAllocationRuleStrategyAllocatedByAllocatedTag[];
|
|
9360
|
+
/**
|
|
9361
|
+
* The percentage of costs allocated to this target as a decimal (e.g., 0.33 for 33%).
|
|
9362
|
+
*/
|
|
9363
|
+
percentage: number;
|
|
9364
|
+
}
|
|
9365
|
+
export interface GetCustomAllocationRuleStrategyAllocatedByAllocatedTag {
|
|
9366
|
+
/**
|
|
9367
|
+
* The tag key for cost allocation.
|
|
9368
|
+
*/
|
|
9369
|
+
key: string;
|
|
9370
|
+
/**
|
|
9371
|
+
* The tag value used in the filter (for single-value conditions).
|
|
9372
|
+
*/
|
|
9373
|
+
value: string;
|
|
9374
|
+
}
|
|
9375
|
+
export interface GetCustomAllocationRuleStrategyAllocatedByFilter {
|
|
9376
|
+
/**
|
|
9377
|
+
* The condition used to match tags. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
9378
|
+
*/
|
|
9379
|
+
condition: string;
|
|
9380
|
+
/**
|
|
9381
|
+
* The tag key used in the filter.
|
|
9382
|
+
*/
|
|
9383
|
+
tag: string;
|
|
9384
|
+
/**
|
|
9385
|
+
* The tag value used in the filter (for single-value conditions).
|
|
9386
|
+
*/
|
|
9387
|
+
value: string;
|
|
9388
|
+
/**
|
|
9389
|
+
* The list of tag values used in the filter (for multi-value conditions like `in` or `notIn`).
|
|
9390
|
+
*/
|
|
9391
|
+
values: string[];
|
|
9392
|
+
}
|
|
9393
|
+
export interface GetCustomAllocationRuleStrategyBasedOnCost {
|
|
9394
|
+
/**
|
|
9395
|
+
* The condition used to match tags. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
9396
|
+
*/
|
|
9397
|
+
condition: string;
|
|
9398
|
+
/**
|
|
9399
|
+
* The tag key used in the filter.
|
|
9400
|
+
*/
|
|
9401
|
+
tag: string;
|
|
9402
|
+
/**
|
|
9403
|
+
* The tag value used in the filter (for single-value conditions).
|
|
9404
|
+
*/
|
|
9405
|
+
value: string;
|
|
9406
|
+
/**
|
|
9407
|
+
* The list of tag values used in the filter (for multi-value conditions like `in` or `notIn`).
|
|
9408
|
+
*/
|
|
9409
|
+
values: string[];
|
|
9410
|
+
}
|
|
9411
|
+
export interface GetCustomAllocationRuleStrategyBasedOnTimeseries {
|
|
9412
|
+
}
|
|
9413
|
+
export interface GetCustomAllocationRuleStrategyEvaluateGroupedByFilter {
|
|
9414
|
+
/**
|
|
9415
|
+
* The condition used to match tags. Valid values are `=`, `!=`, `is`, `is not`, `like`, `in`, `not in`.
|
|
9416
|
+
*/
|
|
9417
|
+
condition: string;
|
|
9418
|
+
/**
|
|
9419
|
+
* The tag key used in the filter.
|
|
9420
|
+
*/
|
|
9421
|
+
tag: string;
|
|
9422
|
+
/**
|
|
9423
|
+
* The tag value used in the filter (for single-value conditions).
|
|
9424
|
+
*/
|
|
9425
|
+
value: string;
|
|
9426
|
+
/**
|
|
9427
|
+
* The list of tag values used in the filter (for multi-value conditions like `in` or `notIn`).
|
|
9428
|
+
*/
|
|
9429
|
+
values: string[];
|
|
9430
|
+
}
|
|
9131
9431
|
export interface GetHostsHostList {
|
|
9132
9432
|
aliases: string[];
|
|
9133
9433
|
apps: string[];
|
|
@@ -9600,6 +9900,10 @@ export interface GetSecurityMonitoringRulesRuleOptions {
|
|
|
9600
9900
|
* New value rules specific options.
|
|
9601
9901
|
*/
|
|
9602
9902
|
newValueOptions?: outputs.GetSecurityMonitoringRulesRuleOptionsNewValueOptions;
|
|
9903
|
+
/**
|
|
9904
|
+
* Options for rules using the sequence detection method.
|
|
9905
|
+
*/
|
|
9906
|
+
sequenceDetectionOptions?: outputs.GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptions;
|
|
9603
9907
|
/**
|
|
9604
9908
|
* Options for rules using the third-party detection method.
|
|
9605
9909
|
*/
|
|
@@ -9629,6 +9933,44 @@ export interface GetSecurityMonitoringRulesRuleOptionsNewValueOptions {
|
|
|
9629
9933
|
*/
|
|
9630
9934
|
learningThreshold?: number;
|
|
9631
9935
|
}
|
|
9936
|
+
export interface GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptions {
|
|
9937
|
+
/**
|
|
9938
|
+
* Edges of the step graph.
|
|
9939
|
+
*/
|
|
9940
|
+
stepTransitions?: outputs.GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptionsStepTransition[];
|
|
9941
|
+
/**
|
|
9942
|
+
* Sequence steps.
|
|
9943
|
+
*/
|
|
9944
|
+
steps?: outputs.GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptionsStep[];
|
|
9945
|
+
}
|
|
9946
|
+
export interface GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptionsStep {
|
|
9947
|
+
/**
|
|
9948
|
+
* Condition for the step to match.
|
|
9949
|
+
*/
|
|
9950
|
+
condition: string;
|
|
9951
|
+
/**
|
|
9952
|
+
* Evaluation window for the step.
|
|
9953
|
+
*/
|
|
9954
|
+
evaluationWindow?: number;
|
|
9955
|
+
/**
|
|
9956
|
+
* Unique name of the step.
|
|
9957
|
+
*/
|
|
9958
|
+
name: string;
|
|
9959
|
+
}
|
|
9960
|
+
export interface GetSecurityMonitoringRulesRuleOptionsSequenceDetectionOptionsStepTransition {
|
|
9961
|
+
/**
|
|
9962
|
+
* Child step name.
|
|
9963
|
+
*/
|
|
9964
|
+
child: string;
|
|
9965
|
+
/**
|
|
9966
|
+
* Maximum time allowed to transition from parent to child.
|
|
9967
|
+
*/
|
|
9968
|
+
evaluationWindow?: number;
|
|
9969
|
+
/**
|
|
9970
|
+
* Parent step name.
|
|
9971
|
+
*/
|
|
9972
|
+
parent: string;
|
|
9973
|
+
}
|
|
9632
9974
|
export interface GetSecurityMonitoringRulesRuleOptionsThirdPartyRuleOptions {
|
|
9633
9975
|
/**
|
|
9634
9976
|
* Notification targets for the default rule case, when none of the third-party cases match.
|
|
@@ -9841,6 +10183,108 @@ export interface GetSoftwareCatalogEntity {
|
|
|
9841
10183
|
owner: string;
|
|
9842
10184
|
tags: string[];
|
|
9843
10185
|
}
|
|
10186
|
+
export interface GetTagPipelineRulesetRule {
|
|
10187
|
+
/**
|
|
10188
|
+
* Whether the rule is enabled.
|
|
10189
|
+
*/
|
|
10190
|
+
enabled: boolean;
|
|
10191
|
+
/**
|
|
10192
|
+
* The mapping configuration for the rule.
|
|
10193
|
+
*/
|
|
10194
|
+
mapping?: outputs.GetTagPipelineRulesetRuleMapping;
|
|
10195
|
+
/**
|
|
10196
|
+
* Rule metadata key-value pairs.
|
|
10197
|
+
*/
|
|
10198
|
+
metadata: {
|
|
10199
|
+
[key: string]: string;
|
|
10200
|
+
};
|
|
10201
|
+
/**
|
|
10202
|
+
* The name of the rule.
|
|
10203
|
+
*/
|
|
10204
|
+
name: string;
|
|
10205
|
+
/**
|
|
10206
|
+
* The query configuration for the rule.
|
|
10207
|
+
*/
|
|
10208
|
+
query?: outputs.GetTagPipelineRulesetRuleQuery;
|
|
10209
|
+
/**
|
|
10210
|
+
* The reference table configuration for the rule.
|
|
10211
|
+
*/
|
|
10212
|
+
referenceTable?: outputs.GetTagPipelineRulesetRuleReferenceTable;
|
|
10213
|
+
}
|
|
10214
|
+
export interface GetTagPipelineRulesetRuleMapping {
|
|
10215
|
+
/**
|
|
10216
|
+
* The destination key for the mapping.
|
|
10217
|
+
*/
|
|
10218
|
+
destinationKey: string;
|
|
10219
|
+
/**
|
|
10220
|
+
* Whether to apply the mapping only if the destination key doesn't exist.
|
|
10221
|
+
*/
|
|
10222
|
+
ifNotExists: boolean;
|
|
10223
|
+
/**
|
|
10224
|
+
* The source keys for the mapping.
|
|
10225
|
+
*/
|
|
10226
|
+
sourceKeys: string[];
|
|
10227
|
+
}
|
|
10228
|
+
export interface GetTagPipelineRulesetRuleQuery {
|
|
10229
|
+
/**
|
|
10230
|
+
* The addition configuration for the query.
|
|
10231
|
+
*/
|
|
10232
|
+
addition?: outputs.GetTagPipelineRulesetRuleQueryAddition;
|
|
10233
|
+
/**
|
|
10234
|
+
* Whether the query matching is case insensitive.
|
|
10235
|
+
*/
|
|
10236
|
+
caseInsensitivity: boolean;
|
|
10237
|
+
/**
|
|
10238
|
+
* Whether to apply the query only if the key doesn't exist.
|
|
10239
|
+
*/
|
|
10240
|
+
ifNotExists: boolean;
|
|
10241
|
+
/**
|
|
10242
|
+
* The query string.
|
|
10243
|
+
*/
|
|
10244
|
+
query: string;
|
|
10245
|
+
}
|
|
10246
|
+
export interface GetTagPipelineRulesetRuleQueryAddition {
|
|
10247
|
+
/**
|
|
10248
|
+
* The key to add.
|
|
10249
|
+
*/
|
|
10250
|
+
key: string;
|
|
10251
|
+
/**
|
|
10252
|
+
* The value to add.
|
|
10253
|
+
*/
|
|
10254
|
+
value: string;
|
|
10255
|
+
}
|
|
10256
|
+
export interface GetTagPipelineRulesetRuleReferenceTable {
|
|
10257
|
+
/**
|
|
10258
|
+
* Whether the reference table lookup is case insensitive.
|
|
10259
|
+
*/
|
|
10260
|
+
caseInsensitivity: boolean;
|
|
10261
|
+
/**
|
|
10262
|
+
* The field pairs for the reference table.
|
|
10263
|
+
*/
|
|
10264
|
+
fieldPairs?: outputs.GetTagPipelineRulesetRuleReferenceTableFieldPair[];
|
|
10265
|
+
/**
|
|
10266
|
+
* Whether to apply the reference table only if the key doesn't exist.
|
|
10267
|
+
*/
|
|
10268
|
+
ifNotExists: boolean;
|
|
10269
|
+
/**
|
|
10270
|
+
* The source keys for the reference table lookup.
|
|
10271
|
+
*/
|
|
10272
|
+
sourceKeys: string[];
|
|
10273
|
+
/**
|
|
10274
|
+
* The name of the reference table.
|
|
10275
|
+
*/
|
|
10276
|
+
tableName: string;
|
|
10277
|
+
}
|
|
10278
|
+
export interface GetTagPipelineRulesetRuleReferenceTableFieldPair {
|
|
10279
|
+
/**
|
|
10280
|
+
* The input column name.
|
|
10281
|
+
*/
|
|
10282
|
+
inputColumn: string;
|
|
10283
|
+
/**
|
|
10284
|
+
* The output key name.
|
|
10285
|
+
*/
|
|
10286
|
+
outputKey: string;
|
|
10287
|
+
}
|
|
9844
10288
|
export interface GetTeamMembershipsTeamMembership {
|
|
9845
10289
|
id: string;
|
|
9846
10290
|
role: string;
|
|
@@ -25624,6 +26068,10 @@ export interface SecurityMonitoringRuleOptions {
|
|
|
25624
26068
|
* New value rules specific options.
|
|
25625
26069
|
*/
|
|
25626
26070
|
newValueOptions?: outputs.SecurityMonitoringRuleOptionsNewValueOptions;
|
|
26071
|
+
/**
|
|
26072
|
+
* Options for rules using the sequence detection method.
|
|
26073
|
+
*/
|
|
26074
|
+
sequenceDetectionOptions?: outputs.SecurityMonitoringRuleOptionsSequenceDetectionOptions;
|
|
25627
26075
|
/**
|
|
25628
26076
|
* Options for rules using the third-party detection method.
|
|
25629
26077
|
*/
|
|
@@ -25653,6 +26101,44 @@ export interface SecurityMonitoringRuleOptionsNewValueOptions {
|
|
|
25653
26101
|
*/
|
|
25654
26102
|
learningThreshold?: number;
|
|
25655
26103
|
}
|
|
26104
|
+
export interface SecurityMonitoringRuleOptionsSequenceDetectionOptions {
|
|
26105
|
+
/**
|
|
26106
|
+
* Edges of the step graph.
|
|
26107
|
+
*/
|
|
26108
|
+
stepTransitions?: outputs.SecurityMonitoringRuleOptionsSequenceDetectionOptionsStepTransition[];
|
|
26109
|
+
/**
|
|
26110
|
+
* Sequence steps.
|
|
26111
|
+
*/
|
|
26112
|
+
steps?: outputs.SecurityMonitoringRuleOptionsSequenceDetectionOptionsStep[];
|
|
26113
|
+
}
|
|
26114
|
+
export interface SecurityMonitoringRuleOptionsSequenceDetectionOptionsStep {
|
|
26115
|
+
/**
|
|
26116
|
+
* Condition for the step to match.
|
|
26117
|
+
*/
|
|
26118
|
+
condition: string;
|
|
26119
|
+
/**
|
|
26120
|
+
* Evaluation window for the step. Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`, `10800`, `21600`, `43200`, `86400`.
|
|
26121
|
+
*/
|
|
26122
|
+
evaluationWindow?: number;
|
|
26123
|
+
/**
|
|
26124
|
+
* Unique name of the step.
|
|
26125
|
+
*/
|
|
26126
|
+
name: string;
|
|
26127
|
+
}
|
|
26128
|
+
export interface SecurityMonitoringRuleOptionsSequenceDetectionOptionsStepTransition {
|
|
26129
|
+
/**
|
|
26130
|
+
* Child step name.
|
|
26131
|
+
*/
|
|
26132
|
+
child: string;
|
|
26133
|
+
/**
|
|
26134
|
+
* Maximum time allowed to transition from parent to child. Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`, `10800`, `21600`, `43200`, `86400`.
|
|
26135
|
+
*/
|
|
26136
|
+
evaluationWindow?: number;
|
|
26137
|
+
/**
|
|
26138
|
+
* Parent step name.
|
|
26139
|
+
*/
|
|
26140
|
+
parent: string;
|
|
26141
|
+
}
|
|
25656
26142
|
export interface SecurityMonitoringRuleOptionsThirdPartyRuleOptions {
|
|
25657
26143
|
/**
|
|
25658
26144
|
* Notification targets for the default rule case, when none of the third-party cases match.
|
|
@@ -27438,6 +27924,108 @@ export interface SyntheticsTestRequestProxy {
|
|
|
27438
27924
|
*/
|
|
27439
27925
|
url: string;
|
|
27440
27926
|
}
|
|
27927
|
+
export interface TagPipelineRulesetRule {
|
|
27928
|
+
/**
|
|
27929
|
+
* Whether the rule is enabled.
|
|
27930
|
+
*/
|
|
27931
|
+
enabled: boolean;
|
|
27932
|
+
/**
|
|
27933
|
+
* The mapping configuration for the rule.
|
|
27934
|
+
*/
|
|
27935
|
+
mapping?: outputs.TagPipelineRulesetRuleMapping;
|
|
27936
|
+
/**
|
|
27937
|
+
* Rule metadata key-value pairs.
|
|
27938
|
+
*/
|
|
27939
|
+
metadata: {
|
|
27940
|
+
[key: string]: string;
|
|
27941
|
+
};
|
|
27942
|
+
/**
|
|
27943
|
+
* The name of the rule.
|
|
27944
|
+
*/
|
|
27945
|
+
name: string;
|
|
27946
|
+
/**
|
|
27947
|
+
* The query configuration for the rule.
|
|
27948
|
+
*/
|
|
27949
|
+
query?: outputs.TagPipelineRulesetRuleQuery;
|
|
27950
|
+
/**
|
|
27951
|
+
* The reference table configuration for the rule.
|
|
27952
|
+
*/
|
|
27953
|
+
referenceTable?: outputs.TagPipelineRulesetRuleReferenceTable;
|
|
27954
|
+
}
|
|
27955
|
+
export interface TagPipelineRulesetRuleMapping {
|
|
27956
|
+
/**
|
|
27957
|
+
* The destination key for the mapping.
|
|
27958
|
+
*/
|
|
27959
|
+
destinationKey?: string;
|
|
27960
|
+
/**
|
|
27961
|
+
* Whether to apply the mapping only if the destination key doesn't exist.
|
|
27962
|
+
*/
|
|
27963
|
+
ifNotExists: boolean;
|
|
27964
|
+
/**
|
|
27965
|
+
* The source keys for the mapping.
|
|
27966
|
+
*/
|
|
27967
|
+
sourceKeys?: string[];
|
|
27968
|
+
}
|
|
27969
|
+
export interface TagPipelineRulesetRuleQuery {
|
|
27970
|
+
/**
|
|
27971
|
+
* The addition configuration for the query.
|
|
27972
|
+
*/
|
|
27973
|
+
addition?: outputs.TagPipelineRulesetRuleQueryAddition;
|
|
27974
|
+
/**
|
|
27975
|
+
* Whether the query matching is case insensitive.
|
|
27976
|
+
*/
|
|
27977
|
+
caseInsensitivity: boolean;
|
|
27978
|
+
/**
|
|
27979
|
+
* Whether to apply the query only if the key doesn't exist.
|
|
27980
|
+
*/
|
|
27981
|
+
ifNotExists: boolean;
|
|
27982
|
+
/**
|
|
27983
|
+
* The query string.
|
|
27984
|
+
*/
|
|
27985
|
+
query?: string;
|
|
27986
|
+
}
|
|
27987
|
+
export interface TagPipelineRulesetRuleQueryAddition {
|
|
27988
|
+
/**
|
|
27989
|
+
* The key to add.
|
|
27990
|
+
*/
|
|
27991
|
+
key?: string;
|
|
27992
|
+
/**
|
|
27993
|
+
* The value to add.
|
|
27994
|
+
*/
|
|
27995
|
+
value?: string;
|
|
27996
|
+
}
|
|
27997
|
+
export interface TagPipelineRulesetRuleReferenceTable {
|
|
27998
|
+
/**
|
|
27999
|
+
* Whether the reference table lookup is case insensitive.
|
|
28000
|
+
*/
|
|
28001
|
+
caseInsensitivity: boolean;
|
|
28002
|
+
/**
|
|
28003
|
+
* The field pairs for the reference table.
|
|
28004
|
+
*/
|
|
28005
|
+
fieldPairs?: outputs.TagPipelineRulesetRuleReferenceTableFieldPair[];
|
|
28006
|
+
/**
|
|
28007
|
+
* Whether to apply the reference table only if the key doesn't exist.
|
|
28008
|
+
*/
|
|
28009
|
+
ifNotExists: boolean;
|
|
28010
|
+
/**
|
|
28011
|
+
* The source keys for the reference table lookup.
|
|
28012
|
+
*/
|
|
28013
|
+
sourceKeys?: string[];
|
|
28014
|
+
/**
|
|
28015
|
+
* The name of the reference table.
|
|
28016
|
+
*/
|
|
28017
|
+
tableName?: string;
|
|
28018
|
+
}
|
|
28019
|
+
export interface TagPipelineRulesetRuleReferenceTableFieldPair {
|
|
28020
|
+
/**
|
|
28021
|
+
* The input column name.
|
|
28022
|
+
*/
|
|
28023
|
+
inputColumn?: string;
|
|
28024
|
+
/**
|
|
28025
|
+
* The output key name.
|
|
28026
|
+
*/
|
|
28027
|
+
outputKey?: string;
|
|
28028
|
+
}
|
|
27441
28029
|
export declare namespace aws {
|
|
27442
28030
|
interface GetIntegrationLogsServicesAwsLogsService {
|
|
27443
28031
|
/**
|
package/userRole.d.ts
CHANGED
|
@@ -8,16 +8,24 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as datadog from "@pulumi/datadog";
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
11
|
+
* // Source the permissions
|
|
12
|
+
* const ddPerms = datadog.getPermissions({});
|
|
13
|
+
* // Create an API Key Manager role
|
|
14
|
+
* const apiKeyManager = new datadog.Role("api_key_manager", {
|
|
15
|
+
* name: "API Key Manager",
|
|
16
|
+
* permissions: [
|
|
17
|
+
* {
|
|
18
|
+
* id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysRead),
|
|
19
|
+
* },
|
|
20
|
+
* {
|
|
21
|
+
* id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysWrite),
|
|
22
|
+
* },
|
|
23
|
+
* ],
|
|
16
24
|
* });
|
|
17
25
|
* const newUser = new datadog.User("new_user", {email: "new@example.com"});
|
|
18
|
-
* //
|
|
19
|
-
* const
|
|
20
|
-
* roleId:
|
|
26
|
+
* // Assign the API Key Manager role to the user
|
|
27
|
+
* const newUserWithApiKeyManagerRole = new datadog.UserRole("new_user_with_api_key_manager_role", {
|
|
28
|
+
* roleId: apiKeyManager.id,
|
|
21
29
|
* userId: newUser.id,
|
|
22
30
|
* });
|
|
23
31
|
* ```
|