@pulumi/datadog 4.53.0-alpha.1755150202 → 4.53.0

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/types/input.d.ts CHANGED
@@ -9392,6 +9392,10 @@ export interface LogsCustomPipelineProcessor {
9392
9392
  * Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
9393
9393
  */
9394
9394
  arithmeticProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorArithmeticProcessor>;
9395
+ /**
9396
+ * Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
9397
+ */
9398
+ arrayProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorArrayProcessor>;
9395
9399
  /**
9396
9400
  * Attribute Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#remapper)
9397
9401
  */
@@ -9404,6 +9408,10 @@ export interface LogsCustomPipelineProcessor {
9404
9408
  * Date Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-date-remapper)
9405
9409
  */
9406
9410
  dateRemapper?: pulumi.Input<inputs.LogsCustomPipelineProcessorDateRemapper>;
9411
+ /**
9412
+ * Decoder Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#decoder-processor)
9413
+ */
9414
+ decoderProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorDecoderProcessor>;
9407
9415
  /**
9408
9416
  * Date GeoIP Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#geoip-parser)
9409
9417
  */
@@ -9476,6 +9484,76 @@ export interface LogsCustomPipelineProcessorArithmeticProcessor {
9476
9484
  */
9477
9485
  target: pulumi.Input<string>;
9478
9486
  }
9487
+ export interface LogsCustomPipelineProcessorArrayProcessor {
9488
+ /**
9489
+ * Boolean value to enable your processor.
9490
+ */
9491
+ isEnabled?: pulumi.Input<boolean>;
9492
+ /**
9493
+ * Your processor name.
9494
+ */
9495
+ name?: pulumi.Input<string>;
9496
+ /**
9497
+ * Operation to perform on the array.
9498
+ */
9499
+ operation: pulumi.Input<inputs.LogsCustomPipelineProcessorArrayProcessorOperation>;
9500
+ }
9501
+ export interface LogsCustomPipelineProcessorArrayProcessorOperation {
9502
+ /**
9503
+ * Operation that appends a value to a target array attribute.
9504
+ */
9505
+ append?: pulumi.Input<inputs.LogsCustomPipelineProcessorArrayProcessorOperationAppend>;
9506
+ /**
9507
+ * Operation that computes the length of a source array and stores the result in a target attribute.
9508
+ */
9509
+ length?: pulumi.Input<inputs.LogsCustomPipelineProcessorArrayProcessorOperationLength>;
9510
+ /**
9511
+ * Operation that finds an object in a source array using a filter, and then extracts a value from that found object and puts that value into the target attribute.
9512
+ */
9513
+ select?: pulumi.Input<inputs.LogsCustomPipelineProcessorArrayProcessorOperationSelect>;
9514
+ }
9515
+ export interface LogsCustomPipelineProcessorArrayProcessorOperationAppend {
9516
+ /**
9517
+ * Remove or preserve the remapped source element. Defaults to `true`.
9518
+ */
9519
+ preserveSource?: pulumi.Input<boolean>;
9520
+ /**
9521
+ * Attribute path containing the value to append.
9522
+ */
9523
+ source: pulumi.Input<string>;
9524
+ /**
9525
+ * Attribute path of the array to append to.
9526
+ */
9527
+ target: pulumi.Input<string>;
9528
+ }
9529
+ export interface LogsCustomPipelineProcessorArrayProcessorOperationLength {
9530
+ /**
9531
+ * Attribute path of the array to compute the length of.
9532
+ */
9533
+ source: pulumi.Input<string>;
9534
+ /**
9535
+ * Attribute that receives the computed length.
9536
+ */
9537
+ target: pulumi.Input<string>;
9538
+ }
9539
+ export interface LogsCustomPipelineProcessorArrayProcessorOperationSelect {
9540
+ /**
9541
+ * Filter expression (e.g. key1:value1 OR key2:value2) used to find the matching element.
9542
+ */
9543
+ filter: pulumi.Input<string>;
9544
+ /**
9545
+ * Attribute path of the array to search into.
9546
+ */
9547
+ source: pulumi.Input<string>;
9548
+ /**
9549
+ * Attribute that receives the extracted value.
9550
+ */
9551
+ target: pulumi.Input<string>;
9552
+ /**
9553
+ * Attribute key from the matching object that should be extracted.
9554
+ */
9555
+ valueToExtract: pulumi.Input<string>;
9556
+ }
9479
9557
  export interface LogsCustomPipelineProcessorAttributeRemapper {
9480
9558
  /**
9481
9559
  * If the processor is enabled or not.
@@ -9556,6 +9634,32 @@ export interface LogsCustomPipelineProcessorDateRemapper {
9556
9634
  */
9557
9635
  sources: pulumi.Input<pulumi.Input<string>[]>;
9558
9636
  }
9637
+ export interface LogsCustomPipelineProcessorDecoderProcessor {
9638
+ /**
9639
+ * Encoding type: base64 or base16
9640
+ */
9641
+ binaryToTextEncoding: pulumi.Input<string>;
9642
+ /**
9643
+ * Input representation: utf-8 or integer
9644
+ */
9645
+ inputRepresentation: pulumi.Input<string>;
9646
+ /**
9647
+ * If the processor is enabled or not.
9648
+ */
9649
+ isEnabled?: pulumi.Input<boolean>;
9650
+ /**
9651
+ * Name of the processor.
9652
+ */
9653
+ name?: pulumi.Input<string>;
9654
+ /**
9655
+ * Encoded message
9656
+ */
9657
+ source: pulumi.Input<string>;
9658
+ /**
9659
+ * Decoded message
9660
+ */
9661
+ target: pulumi.Input<string>;
9662
+ }
9559
9663
  export interface LogsCustomPipelineProcessorGeoIpParser {
9560
9664
  /**
9561
9665
  * If the processor is enabled or not.
@@ -9662,6 +9766,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
9662
9766
  * Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
9663
9767
  */
9664
9768
  arithmeticProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor>;
9769
+ /**
9770
+ * Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
9771
+ */
9772
+ arrayProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessor>;
9665
9773
  /**
9666
9774
  * Attribute Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#remapper)
9667
9775
  */
@@ -9674,6 +9782,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
9674
9782
  * Date Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-date-remapper)
9675
9783
  */
9676
9784
  dateRemapper?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorDateRemapper>;
9785
+ /**
9786
+ * Decoder Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#decoder-processor)
9787
+ */
9788
+ decoderProcessor?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorDecoderProcessor>;
9677
9789
  /**
9678
9790
  * Date GeoIP Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#geoip-parser)
9679
9791
  */
@@ -9745,6 +9857,76 @@ export interface LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor
9745
9857
  */
9746
9858
  target: pulumi.Input<string>;
9747
9859
  }
9860
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessor {
9861
+ /**
9862
+ * Boolean value to enable your processor.
9863
+ */
9864
+ isEnabled?: pulumi.Input<boolean>;
9865
+ /**
9866
+ * Your processor name.
9867
+ */
9868
+ name?: pulumi.Input<string>;
9869
+ /**
9870
+ * Operation to perform on the array.
9871
+ */
9872
+ operation: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperation>;
9873
+ }
9874
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperation {
9875
+ /**
9876
+ * Operation that appends a value to a target array attribute.
9877
+ */
9878
+ append?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationAppend>;
9879
+ /**
9880
+ * Operation that computes the length of a source array and stores the result in a target attribute.
9881
+ */
9882
+ length?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationLength>;
9883
+ /**
9884
+ * Operation that finds an object in a source array using a filter, and then extracts a value from that found object and puts that value into the target attribute.
9885
+ */
9886
+ select?: pulumi.Input<inputs.LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationSelect>;
9887
+ }
9888
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationAppend {
9889
+ /**
9890
+ * Remove or preserve the remapped source element. Defaults to `true`.
9891
+ */
9892
+ preserveSource?: pulumi.Input<boolean>;
9893
+ /**
9894
+ * Attribute path containing the value to append.
9895
+ */
9896
+ source: pulumi.Input<string>;
9897
+ /**
9898
+ * Attribute path of the array to append to.
9899
+ */
9900
+ target: pulumi.Input<string>;
9901
+ }
9902
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationLength {
9903
+ /**
9904
+ * Attribute path of the array to compute the length of.
9905
+ */
9906
+ source: pulumi.Input<string>;
9907
+ /**
9908
+ * Attribute that receives the computed length.
9909
+ */
9910
+ target: pulumi.Input<string>;
9911
+ }
9912
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessorOperationSelect {
9913
+ /**
9914
+ * Filter expression (e.g. key1:value1 OR key2:value2) used to find the matching element.
9915
+ */
9916
+ filter: pulumi.Input<string>;
9917
+ /**
9918
+ * Attribute path of the array to search into.
9919
+ */
9920
+ source: pulumi.Input<string>;
9921
+ /**
9922
+ * Attribute that receives the extracted value.
9923
+ */
9924
+ target: pulumi.Input<string>;
9925
+ /**
9926
+ * Attribute key from the matching object that should be extracted.
9927
+ */
9928
+ valueToExtract: pulumi.Input<string>;
9929
+ }
9748
9930
  export interface LogsCustomPipelineProcessorPipelineProcessorAttributeRemapper {
9749
9931
  /**
9750
9932
  * If the processor is enabled or not.
@@ -9825,6 +10007,32 @@ export interface LogsCustomPipelineProcessorPipelineProcessorDateRemapper {
9825
10007
  */
9826
10008
  sources: pulumi.Input<pulumi.Input<string>[]>;
9827
10009
  }
10010
+ export interface LogsCustomPipelineProcessorPipelineProcessorDecoderProcessor {
10011
+ /**
10012
+ * Encoding type: base64 or base16
10013
+ */
10014
+ binaryToTextEncoding: pulumi.Input<string>;
10015
+ /**
10016
+ * Input representation: utf-8 or integer
10017
+ */
10018
+ inputRepresentation: pulumi.Input<string>;
10019
+ /**
10020
+ * If the processor is enabled or not.
10021
+ */
10022
+ isEnabled?: pulumi.Input<boolean>;
10023
+ /**
10024
+ * Name of the processor.
10025
+ */
10026
+ name?: pulumi.Input<string>;
10027
+ /**
10028
+ * Encoded message
10029
+ */
10030
+ source: pulumi.Input<string>;
10031
+ /**
10032
+ * Decoded message
10033
+ */
10034
+ target: pulumi.Input<string>;
10035
+ }
9828
10036
  export interface LogsCustomPipelineProcessorPipelineProcessorGeoIpParser {
9829
10037
  /**
9830
10038
  * If the processor is enabled or not.
@@ -24179,7 +24387,7 @@ export interface SecurityMonitoringDefaultRuleFilter {
24179
24387
  }
24180
24388
  export interface SecurityMonitoringDefaultRuleOptions {
24181
24389
  /**
24182
- * If true, signals in non-production environments have a lower severity than what is defined by the rule case, which can reduce noise. The decrement is applied when the environment tag of the signal starts with `staging`, `test`, or `dev`. Only available when the rule type is `logDetection`. Defaults to `false`.
24390
+ * If true, signals in non-production environments have a lower severity than what is defined by the rule case, which can reduce noise. The decrement is applied when the environment tag of the signal starts with `staging`, `test`, or `dev`. Only available when the rule type is `logDetection`.
24183
24391
  */
24184
24392
  decreaseCriticalityBasedOnEnv?: pulumi.Input<boolean>;
24185
24393
  }
@@ -24191,7 +24399,7 @@ export interface SecurityMonitoringDefaultRuleQuery {
24191
24399
  */
24192
24400
  agentRules?: pulumi.Input<pulumi.Input<inputs.SecurityMonitoringDefaultRuleQueryAgentRule>[]>;
24193
24401
  /**
24194
- * The aggregation type. For Signal Correlation rules, it must be event_count. Valid values are `count`, `cardinality`, `sum`, `max`, `newValue`, `geoData`, `eventCount`, `none`. Defaults to `"count"`.
24402
+ * The aggregation type. For Signal Correlation rules, it must be event_count. Valid values are `count`, `cardinality`, `sum`, `max`, `newValue`, `geoData`, `eventCount`, `none`.
24195
24403
  */
24196
24404
  aggregation?: pulumi.Input<string>;
24197
24405
  /**
@@ -24199,7 +24407,7 @@ export interface SecurityMonitoringDefaultRuleQuery {
24199
24407
  */
24200
24408
  customQueryExtension?: pulumi.Input<string>;
24201
24409
  /**
24202
- * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`. Defaults to `"logs"`.
24410
+ * Source of events. Valid values are `logs`, `audit`, `appSecSpans`, `spans`, `securityRuntime`, `network`, `events`.
24203
24411
  */
24204
24412
  dataSource?: pulumi.Input<string>;
24205
24413
  /**
@@ -24227,7 +24435,7 @@ export interface SecurityMonitoringDefaultRuleQuery {
24227
24435
  /**
24228
24436
  * Query to run on logs.
24229
24437
  */
24230
- query: pulumi.Input<string>;
24438
+ query?: pulumi.Input<string>;
24231
24439
  }
24232
24440
  export interface SecurityMonitoringDefaultRuleQueryAgentRule {
24233
24441
  /**
@@ -24277,7 +24485,7 @@ export interface SecurityMonitoringRuleCaseAction {
24277
24485
  */
24278
24486
  options?: pulumi.Input<inputs.SecurityMonitoringRuleCaseActionOptions>;
24279
24487
  /**
24280
- * Type of action to perform when the case triggers. Valid values are `blockIp`, `blockUser`, `userBehavior`.
24488
+ * Type of action to perform when the case triggers. Valid values are `blockIp`, `blockUser`, `userBehavior`, `flagIp`.
24281
24489
  */
24282
24490
  type: pulumi.Input<string>;
24283
24491
  }
@@ -24768,7 +24976,7 @@ export interface SyntheticsTestApiStep {
24768
24976
  */
24769
24977
  requestClientCertificate?: pulumi.Input<inputs.SyntheticsTestApiStepRequestClientCertificate>;
24770
24978
  /**
24771
- * The request for the api step.
24979
+ * The request for the API step.
24772
24980
  */
24773
24981
  requestDefinition?: pulumi.Input<inputs.SyntheticsTestApiStepRequestDefinition>;
24774
24982
  /**
@@ -24799,7 +25007,7 @@ export interface SyntheticsTestApiStep {
24799
25007
  }>;
24800
25008
  retry?: pulumi.Input<inputs.SyntheticsTestApiStepRetry>;
24801
25009
  /**
24802
- * The subtype of the Synthetic multi-step API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`. Defaults to `"http"`.
25010
+ * The subtype of the Synthetic multistep API test step. Valid values are `http`, `grpc`, `ssl`, `dns`, `tcp`, `udp`, `icmp`, `websocket`, `wait`. Defaults to `"http"`.
24803
25011
  */
24804
25012
  subtype?: pulumi.Input<string>;
24805
25013
  /**
@@ -25009,7 +25217,7 @@ export interface SyntheticsTestApiStepRequestClientCertificateKey {
25009
25217
  }
25010
25218
  export interface SyntheticsTestApiStepRequestDefinition {
25011
25219
  /**
25012
- * For SSL test, whether or not the test should allow self signed certificates.
25220
+ * For SSL tests, whether or not the test should allow self signed certificates.
25013
25221
  */
25014
25222
  acceptSelfSigned?: pulumi.Input<boolean>;
25015
25223
  /**
@@ -25033,9 +25241,13 @@ export interface SyntheticsTestApiStepRequestDefinition {
25033
25241
  */
25034
25242
  certificateDomains?: pulumi.Input<pulumi.Input<string>[]>;
25035
25243
  /**
25036
- * For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.
25244
+ * For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
25037
25245
  */
25038
25246
  checkCertificateRevocation?: pulumi.Input<boolean>;
25247
+ /**
25248
+ * For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA
25249
+ */
25250
+ disableAiaIntermediateFetching?: pulumi.Input<boolean>;
25039
25251
  /**
25040
25252
  * DNS server to use for DNS tests (`subtype = "dns"`).
25041
25253
  */
@@ -25067,7 +25279,7 @@ export interface SyntheticsTestApiStepRequestDefinition {
25067
25279
  */
25068
25280
  isMessageBase64Encoded?: pulumi.Input<boolean>;
25069
25281
  /**
25070
- * For UDP and websocket tests, message to send with the request.
25282
+ * For gRPC, UDP and websocket tests, message to send with the request.
25071
25283
  */
25072
25284
  message?: pulumi.Input<string>;
25073
25285
  /**
@@ -25721,7 +25933,7 @@ export interface SyntheticsTestMobileStepParamsVariable {
25721
25933
  }
25722
25934
  export interface SyntheticsTestOptionsList {
25723
25935
  /**
25724
- * For SSL test, whether or not the test should allow self signed certificates.
25936
+ * For SSL tests, whether or not the test should allow self signed certificates.
25725
25937
  */
25726
25938
  acceptSelfSigned?: pulumi.Input<boolean>;
25727
25939
  /**
@@ -25729,13 +25941,17 @@ export interface SyntheticsTestOptionsList {
25729
25941
  */
25730
25942
  allowInsecure?: pulumi.Input<boolean>;
25731
25943
  /**
25732
- * For SSL test, whether or not the test should fail on revoked certificate in stapled OCSP.
25944
+ * For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
25733
25945
  */
25734
25946
  checkCertificateRevocation?: pulumi.Input<boolean>;
25735
25947
  /**
25736
25948
  * CI/CD options for a Synthetic test.
25737
25949
  */
25738
25950
  ci?: pulumi.Input<inputs.SyntheticsTestOptionsListCi>;
25951
+ /**
25952
+ * For SSL tests, whether or not the test should disable fetching intermediate certificates from AIA
25953
+ */
25954
+ disableAiaIntermediateFetching?: pulumi.Input<boolean>;
25739
25955
  /**
25740
25956
  * Disable Cross-Origin Resource Sharing for browser tests.
25741
25957
  */
@@ -26010,7 +26226,7 @@ export interface SyntheticsTestRequestDefinition {
26010
26226
  */
26011
26227
  isMessageBase64Encoded?: pulumi.Input<boolean>;
26012
26228
  /**
26013
- * For UDP and websocket tests, message to send with the request.
26229
+ * For gRPC, UDP and websocket tests, message to send with the request.
26014
26230
  */
26015
26231
  message?: pulumi.Input<string>;
26016
26232
  /**